@wandelbots/nova-api 26.6.0-dev.98 → 26.6.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/v2/index.cjs +535 -486
- package/dist/v2/index.d.cts +358 -187
- package/dist/v2/index.d.ts +358 -187
- package/dist/v2/index.js +148 -113
- package/package.json +1 -1
package/dist/v2/index.cjs
CHANGED
|
@@ -70,9 +70,9 @@ const COLLECTION_FORMATS = {
|
|
|
70
70
|
pipes: "|"
|
|
71
71
|
};
|
|
72
72
|
var BaseAPI = class {
|
|
73
|
-
constructor(configuration, basePath = BASE_PATH, axios$
|
|
73
|
+
constructor(configuration, basePath = BASE_PATH, axios$200 = axios.default) {
|
|
74
74
|
this.basePath = basePath;
|
|
75
|
-
this.axios = axios$
|
|
75
|
+
this.axios = axios$200;
|
|
76
76
|
_defineProperty(this, "configuration", void 0);
|
|
77
77
|
if (configuration) {
|
|
78
78
|
this.configuration = configuration;
|
|
@@ -132,6 +132,8 @@ const createRequestFunction = function(axiosArgs, globalAxios, BASE_PATH, config
|
|
|
132
132
|
//#endregion
|
|
133
133
|
//#region v2/api.ts
|
|
134
134
|
const AbbControllerKindEnum = { AbbController: "AbbController" };
|
|
135
|
+
const ActionChunkRequestMessageTypeEnum = { ActionChunkRequest: "ActionChunkRequest" };
|
|
136
|
+
const ActionChunkResponseKindEnum = { ActionChunkReceived: "ACTION_CHUNK_RECEIVED" };
|
|
135
137
|
/**
|
|
136
138
|
* ## BEHAVIOR_AUTOMATIC This is the default behavior. The motion groups of the controller take commanded joint configuration as actual joint state. Configures the compliance of the virtual robot with the normal ControllerState cycle time. If set, the virtual robot will act like a physical one, e.g., with a cycle time of 8ms to respond to a new joint state command. ## BEHAVIOR_AUTOMATIC_NOT_COMPLY_WITH_CYCLETIME Configures the compliance of the virtual robot with the normal ControllerState cycle time. If set, the robot will respond as fast as possible, limited only by software execution speed. Because of that, the execution of a movement requires less time than with BEHAVIOR_AUTOMATIC. ## BEHAVIOR_EXTERNAL_SOURCE The external client is the only source of actual joint state changes. This mode is used to enable third party software indicating the current joint state via [externalJointsStream](#/operations/externalJointsStream).
|
|
137
139
|
*/
|
|
@@ -264,6 +266,8 @@ const IOValueType = {
|
|
|
264
266
|
IoValueAnalogInteger: "IO_VALUE_ANALOG_INTEGER"
|
|
265
267
|
};
|
|
266
268
|
const InconsistentTrajectorySizeErrorKindEnum = { InconsistentTrajectorySizeError: "InconsistentTrajectorySizeError" };
|
|
269
|
+
const InitializeActionChunksRequestMessageTypeEnum = { InitializeActionChunksRequest: "InitializeActionChunksRequest" };
|
|
270
|
+
const InitializeActionChunksResponseKindEnum = { InitializeReceived: "INITIALIZE_RECEIVED" };
|
|
267
271
|
const InitializeJoggingRequestMessageTypeEnum = { InitializeJoggingRequest: "InitializeJoggingRequest" };
|
|
268
272
|
const InitializeJoggingResponseKindEnum = { InitializeReceived: "INITIALIZE_RECEIVED" };
|
|
269
273
|
const InitializeMovementRequestMessageTypeEnum = { InitializeMovementRequest: "InitializeMovementRequest" };
|
|
@@ -284,8 +288,7 @@ const JointTypeEnum = {
|
|
|
284
288
|
};
|
|
285
289
|
const JointVelocityRequestMessageTypeEnum = { JointVelocityRequest: "JointVelocityRequest" };
|
|
286
290
|
const JointVelocityResponseKindEnum = { JointVelocityReceived: "JOINT_VELOCITY_RECEIVED" };
|
|
287
|
-
const
|
|
288
|
-
const JointWaypointsResponseKindEnum = { JointWaypointsReceived: "JOINT_WAYPOINTS_RECEIVED" };
|
|
291
|
+
const JointWaypointKindEnum = { Joints: "JOINTS" };
|
|
289
292
|
const KinematicBranchElbow = {
|
|
290
293
|
Up: "UP",
|
|
291
294
|
Down: "DOWN"
|
|
@@ -313,6 +316,7 @@ const Manufacturer = {
|
|
|
313
316
|
Fanuc: "fanuc",
|
|
314
317
|
Kuka: "kuka",
|
|
315
318
|
Staubli: "staubli",
|
|
319
|
+
Techman: "techman",
|
|
316
320
|
Unitree: "unitree",
|
|
317
321
|
Universalrobots: "universalrobots",
|
|
318
322
|
Yaskawa: "yaskawa"
|
|
@@ -349,12 +353,19 @@ const ModbusIOTypeEnum = {
|
|
|
349
353
|
};
|
|
350
354
|
const MovementErrorResponseKindEnum = { MotionError: "MOTION_ERROR" };
|
|
351
355
|
const NanValueErrorKindEnum = { NanValueError: "NanValueError" };
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
356
|
+
/**
|
|
357
|
+
* Network attachment method used to expose the interface to workloads.
|
|
358
|
+
*/
|
|
359
|
+
const NetworkBackend = {
|
|
360
|
+
Macvlan: "macvlan",
|
|
361
|
+
Sriov: "sriov"
|
|
362
|
+
};
|
|
363
|
+
/**
|
|
364
|
+
* Link state of the physical interface.
|
|
365
|
+
*/
|
|
366
|
+
const NetworkLinkState = {
|
|
367
|
+
Up: "up",
|
|
368
|
+
Down: "down"
|
|
358
369
|
};
|
|
359
370
|
/**
|
|
360
371
|
* The operating state.
|
|
@@ -416,6 +427,8 @@ const PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum = { DirectionCo
|
|
|
416
427
|
const PathDirectionConstrainedJointPTPPathDefinitionNameEnum = { DirectionConstrainedJointPtp: "DirectionConstrainedJointPTP" };
|
|
417
428
|
const PathJointPTPPathDefinitionNameEnum = { PathJointPtp: "PathJointPTP" };
|
|
418
429
|
const PathLinePathDefinitionNameEnum = { PathLine: "PathLine" };
|
|
430
|
+
const PauseActionChunksRequestMessageTypeEnum = { PauseActionChunksRequest: "PauseActionChunksRequest" };
|
|
431
|
+
const PauseActionChunksResponseKindEnum = { PauseReceived: "PAUSE_RECEIVED" };
|
|
419
432
|
const PauseJoggingRequestMessageTypeEnum = { PauseJoggingRequest: "PauseJoggingRequest" };
|
|
420
433
|
const PauseJoggingResponseKindEnum = { PauseReceived: "PAUSE_RECEIVED" };
|
|
421
434
|
const PauseMovementRequestMessageTypeEnum = { PauseMovementRequest: "PauseMovementRequest" };
|
|
@@ -423,8 +436,7 @@ const PauseMovementResponseKindEnum = { PauseReceived: "PAUSE_RECEIVED" };
|
|
|
423
436
|
const PlaneShapeTypeEnum = { Plane: "plane" };
|
|
424
437
|
const PlaybackSpeedRequestMessageTypeEnum = { PlaybackSpeedRequest: "PlaybackSpeedRequest" };
|
|
425
438
|
const PlaybackSpeedResponseKindEnum = { PlaybackSpeedReceived: "PLAYBACK_SPEED_RECEIVED" };
|
|
426
|
-
const
|
|
427
|
-
const PoseWaypointsResponseKindEnum = { PoseWaypointsReceived: "POSE_WAYPOINTS_RECEIVED" };
|
|
439
|
+
const PoseWaypointKindEnum = { Pose: "POSE" };
|
|
428
440
|
/**
|
|
429
441
|
* The direction of the input/output variable, indicating whether it is an input or output for the PROFINET device, e.g., NOVA\'s PROFINET service.
|
|
430
442
|
*/
|
|
@@ -583,10 +595,13 @@ const SphereShapeTypeEnum = { Sphere: "sphere" };
|
|
|
583
595
|
const StartMovementRequestMessageTypeEnum = { StartMovementRequest: "StartMovementRequest" };
|
|
584
596
|
const StartMovementResponseKindEnum = { StartReceived: "START_RECEIVED" };
|
|
585
597
|
const StaubliControllerKindEnum = { StaubliController: "StaubliController" };
|
|
598
|
+
const StopActionChunksRequestMessageTypeEnum = { StopActionChunksRequest: "StopActionChunksRequest" };
|
|
599
|
+
const StopActionChunksResponseKindEnum = { StopReceived: "STOP_RECEIVED" };
|
|
586
600
|
const StorageKeySourceEnum = { Key: "key" };
|
|
587
601
|
const TcpRequiredErrorKindEnum = { TcpRequiredError: "TcpRequiredError" };
|
|
588
602
|
const TcpVelocityRequestMessageTypeEnum = { TcpVelocityRequest: "TcpVelocityRequest" };
|
|
589
603
|
const TcpVelocityResponseKindEnum = { TcpVelocityReceived: "TCP_VELOCITY_RECEIVED" };
|
|
604
|
+
const TechmanControllerKindEnum = { TechmanController: "TechmanController" };
|
|
590
605
|
const ToolValueSourceEnum = { Value: "value" };
|
|
591
606
|
const TorqueExceededErrorKindEnum = { TorqueExceededError: "TorqueExceededError" };
|
|
592
607
|
const TrajectoryDataMessageTypeEnum = { TrajectoryData: "TrajectoryData" };
|
|
@@ -620,10 +635,85 @@ const UnitreeControllerRobotTypeEnum = {
|
|
|
620
635
|
H1: "h1"
|
|
621
636
|
};
|
|
622
637
|
const UniversalrobotsControllerKindEnum = { UniversalrobotsController: "UniversalrobotsController" };
|
|
638
|
+
const UnpauseActionChunksRequestMessageTypeEnum = { UnpauseActionChunksRequest: "UnpauseActionChunksRequest" };
|
|
639
|
+
const UnpauseActionChunksResponseKindEnum = { UnpauseReceived: "UNPAUSE_RECEIVED" };
|
|
623
640
|
const VirtualControllerKindEnum = { VirtualController: "VirtualController" };
|
|
624
641
|
const YaskawaControllerKindEnum = { YaskawaController: "YaskawaController" };
|
|
625
642
|
const ZodValidationErrorErrorCodeEnum = { ValidationError: "validation_error" };
|
|
626
643
|
/**
|
|
644
|
+
* ActionChunkStreamingApi - axios parameter creator
|
|
645
|
+
*/
|
|
646
|
+
const ActionChunkStreamingApiAxiosParamCreator = function(configuration) {
|
|
647
|
+
return { executeActionChunks: async (cell, controller, executeActionChunksRequest, options = {}) => {
|
|
648
|
+
assertParamExists("executeActionChunks", "cell", cell);
|
|
649
|
+
assertParamExists("executeActionChunks", "controller", controller);
|
|
650
|
+
assertParamExists("executeActionChunks", "executeActionChunksRequest", executeActionChunksRequest);
|
|
651
|
+
const localVarPath = `/experimental/cells/{cell}/controllers/{controller}/execution/action-chunk-streaming`.replace(`{cell}`, encodeURIComponent(String(cell))).replace(`{controller}`, encodeURIComponent(String(controller)));
|
|
652
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
653
|
+
let baseOptions;
|
|
654
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
655
|
+
const localVarRequestOptions = {
|
|
656
|
+
method: "GET",
|
|
657
|
+
...baseOptions,
|
|
658
|
+
...options
|
|
659
|
+
};
|
|
660
|
+
const localVarHeaderParameter = {};
|
|
661
|
+
const localVarQueryParameter = {};
|
|
662
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
663
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
664
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
665
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
666
|
+
localVarRequestOptions.headers = {
|
|
667
|
+
...localVarHeaderParameter,
|
|
668
|
+
...headersFromBaseOptions,
|
|
669
|
+
...options.headers
|
|
670
|
+
};
|
|
671
|
+
localVarRequestOptions.data = serializeDataIfNeeded(executeActionChunksRequest, localVarRequestOptions, configuration);
|
|
672
|
+
return {
|
|
673
|
+
url: toPathString(localVarUrlObj),
|
|
674
|
+
options: localVarRequestOptions
|
|
675
|
+
};
|
|
676
|
+
} };
|
|
677
|
+
};
|
|
678
|
+
/**
|
|
679
|
+
* ActionChunkStreamingApi - functional programming interface
|
|
680
|
+
*/
|
|
681
|
+
const ActionChunkStreamingApiFp = function(configuration) {
|
|
682
|
+
const localVarAxiosParamCreator = ActionChunkStreamingApiAxiosParamCreator(configuration);
|
|
683
|
+
return { async executeActionChunks(cell, controller, executeActionChunksRequest, options) {
|
|
684
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.executeActionChunks(cell, controller, executeActionChunksRequest, options);
|
|
685
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
686
|
+
const localVarOperationServerBasePath = operationServerMap["ActionChunkStreamingApi.executeActionChunks"]?.[localVarOperationServerIndex]?.url;
|
|
687
|
+
return (axios$1, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$1, localVarOperationServerBasePath || basePath);
|
|
688
|
+
} };
|
|
689
|
+
};
|
|
690
|
+
/**
|
|
691
|
+
* ActionChunkStreamingApi - factory interface
|
|
692
|
+
*/
|
|
693
|
+
const ActionChunkStreamingApiFactory = function(configuration, basePath, axios$2) {
|
|
694
|
+
const localVarFp = ActionChunkStreamingApiFp(configuration);
|
|
695
|
+
return { executeActionChunks(cell, controller, executeActionChunksRequest, options) {
|
|
696
|
+
return localVarFp.executeActionChunks(cell, controller, executeActionChunksRequest, options).then((request) => request(axios$2, basePath));
|
|
697
|
+
} };
|
|
698
|
+
};
|
|
699
|
+
/**
|
|
700
|
+
* ActionChunkStreamingApi - object-oriented interface
|
|
701
|
+
*/
|
|
702
|
+
var ActionChunkStreamingApi = class extends BaseAPI {
|
|
703
|
+
/**
|
|
704
|
+
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides action chunk control for a motion group. An action chunk is a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeActionChunksRequest` to configure the action chunk. - Sets the robot controller mode to control mode. - Claims the motion group. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `ActionChunk`s to stream waypoints. - The first message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the motion - Send `PauseActionChunksRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeActionChunksResponse` after `InitializeActionChunksRequest` - `ActionChunkResponse` after `ActionChunkRequest` - `PauseActionChunksResponse` after `PauseActionChunksRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during moving. ### Tips and Tricks - Ensure that the websocket connection remains open until the action chunk motion is stopped to avoid unexpected stops. ### Robot States - The robot controller state is reported in the [streamRobotControllerState](#/operations/streamRobotControllerState) as JOGGING. - The meaning of the states is: - `RUNNING`: The robot is moving through the waypoints. The clock (`execute.details.jogger_session_timestamp_ms`) is running. - `PAUSED_BY_USER`: The robot is braking or in standstill due to a user request. The clock IS paused. - `PAUSED_NEAR_JOINT_LIMIT`: The robot is braking due to a joint limit. The clock is NOT paused. - `PAUSED_NEAR_COLLISION`: The robot is braking due to a collision. The clock is NOT paused. - `PAUSED_NEAR_SINGULARITY`: The robot is braking due to a singularity. The clock is NOT paused. - `PAUSED_NEAR_WORKSPACE_BOUNDARY`: The robot is braking due to a workspace boundary. The clock is NOT paused.
|
|
705
|
+
* @summary Execute Action Chunks
|
|
706
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
707
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
708
|
+
* @param {ExecuteActionChunksRequest} executeActionChunksRequest
|
|
709
|
+
* @param {*} [options] Override http request option.
|
|
710
|
+
* @throws {RequiredError}
|
|
711
|
+
*/
|
|
712
|
+
executeActionChunks(cell, controller, executeActionChunksRequest, options) {
|
|
713
|
+
return ActionChunkStreamingApiFp(this.configuration).executeActionChunks(cell, controller, executeActionChunksRequest, options).then((request) => request(this.axios, this.basePath));
|
|
714
|
+
}
|
|
715
|
+
};
|
|
716
|
+
/**
|
|
627
717
|
* ApplicationApi - axios parameter creator
|
|
628
718
|
*/
|
|
629
719
|
const ApplicationApiAxiosParamCreator = function(configuration) {
|
|
@@ -809,63 +899,63 @@ const ApplicationApiFp = function(configuration) {
|
|
|
809
899
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addApp(cell, app, completionTimeout, options);
|
|
810
900
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
811
901
|
const localVarOperationServerBasePath = operationServerMap["ApplicationApi.addApp"]?.[localVarOperationServerIndex]?.url;
|
|
812
|
-
return (axios$
|
|
902
|
+
return (axios$3, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$3, localVarOperationServerBasePath || basePath);
|
|
813
903
|
},
|
|
814
904
|
async clearApps(cell, completionTimeout, options) {
|
|
815
905
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearApps(cell, completionTimeout, options);
|
|
816
906
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
817
907
|
const localVarOperationServerBasePath = operationServerMap["ApplicationApi.clearApps"]?.[localVarOperationServerIndex]?.url;
|
|
818
|
-
return (axios$
|
|
908
|
+
return (axios$4, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$4, localVarOperationServerBasePath || basePath);
|
|
819
909
|
},
|
|
820
910
|
async deleteApp(cell, app, completionTimeout, options) {
|
|
821
911
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteApp(cell, app, completionTimeout, options);
|
|
822
912
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
823
913
|
const localVarOperationServerBasePath = operationServerMap["ApplicationApi.deleteApp"]?.[localVarOperationServerIndex]?.url;
|
|
824
|
-
return (axios$
|
|
914
|
+
return (axios$5, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$5, localVarOperationServerBasePath || basePath);
|
|
825
915
|
},
|
|
826
916
|
async getApp(cell, app, options) {
|
|
827
917
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getApp(cell, app, options);
|
|
828
918
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
829
919
|
const localVarOperationServerBasePath = operationServerMap["ApplicationApi.getApp"]?.[localVarOperationServerIndex]?.url;
|
|
830
|
-
return (axios$
|
|
920
|
+
return (axios$6, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$6, localVarOperationServerBasePath || basePath);
|
|
831
921
|
},
|
|
832
922
|
async listApps(cell, options) {
|
|
833
923
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listApps(cell, options);
|
|
834
924
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
835
925
|
const localVarOperationServerBasePath = operationServerMap["ApplicationApi.listApps"]?.[localVarOperationServerIndex]?.url;
|
|
836
|
-
return (axios$
|
|
926
|
+
return (axios$7, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$7, localVarOperationServerBasePath || basePath);
|
|
837
927
|
},
|
|
838
928
|
async updateApp(cell, app, app2, completionTimeout, options) {
|
|
839
929
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateApp(cell, app, app2, completionTimeout, options);
|
|
840
930
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
841
931
|
const localVarOperationServerBasePath = operationServerMap["ApplicationApi.updateApp"]?.[localVarOperationServerIndex]?.url;
|
|
842
|
-
return (axios$
|
|
932
|
+
return (axios$8, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$8, localVarOperationServerBasePath || basePath);
|
|
843
933
|
}
|
|
844
934
|
};
|
|
845
935
|
};
|
|
846
936
|
/**
|
|
847
937
|
* ApplicationApi - factory interface
|
|
848
938
|
*/
|
|
849
|
-
const ApplicationApiFactory = function(configuration, basePath, axios$
|
|
939
|
+
const ApplicationApiFactory = function(configuration, basePath, axios$9) {
|
|
850
940
|
const localVarFp = ApplicationApiFp(configuration);
|
|
851
941
|
return {
|
|
852
942
|
addApp(cell, app, completionTimeout, options) {
|
|
853
|
-
return localVarFp.addApp(cell, app, completionTimeout, options).then((request) => request(axios$
|
|
943
|
+
return localVarFp.addApp(cell, app, completionTimeout, options).then((request) => request(axios$9, basePath));
|
|
854
944
|
},
|
|
855
945
|
clearApps(cell, completionTimeout, options) {
|
|
856
|
-
return localVarFp.clearApps(cell, completionTimeout, options).then((request) => request(axios$
|
|
946
|
+
return localVarFp.clearApps(cell, completionTimeout, options).then((request) => request(axios$9, basePath));
|
|
857
947
|
},
|
|
858
948
|
deleteApp(cell, app, completionTimeout, options) {
|
|
859
|
-
return localVarFp.deleteApp(cell, app, completionTimeout, options).then((request) => request(axios$
|
|
949
|
+
return localVarFp.deleteApp(cell, app, completionTimeout, options).then((request) => request(axios$9, basePath));
|
|
860
950
|
},
|
|
861
951
|
getApp(cell, app, options) {
|
|
862
|
-
return localVarFp.getApp(cell, app, options).then((request) => request(axios$
|
|
952
|
+
return localVarFp.getApp(cell, app, options).then((request) => request(axios$9, basePath));
|
|
863
953
|
},
|
|
864
954
|
listApps(cell, options) {
|
|
865
|
-
return localVarFp.listApps(cell, options).then((request) => request(axios$
|
|
955
|
+
return localVarFp.listApps(cell, options).then((request) => request(axios$9, basePath));
|
|
866
956
|
},
|
|
867
957
|
updateApp(cell, app, app2, completionTimeout, options) {
|
|
868
|
-
return localVarFp.updateApp(cell, app, app2, completionTimeout, options).then((request) => request(axios$
|
|
958
|
+
return localVarFp.updateApp(cell, app, app2, completionTimeout, options).then((request) => request(axios$9, basePath));
|
|
869
959
|
}
|
|
870
960
|
};
|
|
871
961
|
};
|
|
@@ -1588,216 +1678,216 @@ const BUSInputsOutputsApiFp = function(configuration) {
|
|
|
1588
1678
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addBusIOService(cell, busIOType, completionTimeout, options);
|
|
1589
1679
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1590
1680
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.addBusIOService"]?.[localVarOperationServerIndex]?.url;
|
|
1591
|
-
return (axios$
|
|
1681
|
+
return (axios$10, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$10, localVarOperationServerBasePath || basePath);
|
|
1592
1682
|
},
|
|
1593
1683
|
async addModbusIO(cell, io, modbusIOData, options) {
|
|
1594
1684
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addModbusIO(cell, io, modbusIOData, options);
|
|
1595
1685
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1596
1686
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.addModbusIO"]?.[localVarOperationServerIndex]?.url;
|
|
1597
|
-
return (axios$
|
|
1687
|
+
return (axios$11, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$11, localVarOperationServerBasePath || basePath);
|
|
1598
1688
|
},
|
|
1599
1689
|
async addProfinetIO(cell, io, profinetIOData, options) {
|
|
1600
1690
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addProfinetIO(cell, io, profinetIOData, options);
|
|
1601
1691
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1602
1692
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.addProfinetIO"]?.[localVarOperationServerIndex]?.url;
|
|
1603
|
-
return (axios$
|
|
1693
|
+
return (axios$12, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$12, localVarOperationServerBasePath || basePath);
|
|
1604
1694
|
},
|
|
1605
1695
|
async addSnap7IO(cell, io, snap7IOData, options) {
|
|
1606
1696
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addSnap7IO(cell, io, snap7IOData, options);
|
|
1607
1697
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1608
1698
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.addSnap7IO"]?.[localVarOperationServerIndex]?.url;
|
|
1609
|
-
return (axios$
|
|
1699
|
+
return (axios$13, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$13, localVarOperationServerBasePath || basePath);
|
|
1610
1700
|
},
|
|
1611
1701
|
async clearBusIOService(cell, completionTimeout, options) {
|
|
1612
1702
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearBusIOService(cell, completionTimeout, options);
|
|
1613
1703
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1614
1704
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.clearBusIOService"]?.[localVarOperationServerIndex]?.url;
|
|
1615
|
-
return (axios$
|
|
1705
|
+
return (axios$14, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$14, localVarOperationServerBasePath || basePath);
|
|
1616
1706
|
},
|
|
1617
1707
|
async deleteAllModbusIOs(cell, options) {
|
|
1618
1708
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteAllModbusIOs(cell, options);
|
|
1619
1709
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1620
1710
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.deleteAllModbusIOs"]?.[localVarOperationServerIndex]?.url;
|
|
1621
|
-
return (axios$
|
|
1711
|
+
return (axios$15, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$15, localVarOperationServerBasePath || basePath);
|
|
1622
1712
|
},
|
|
1623
1713
|
async deleteAllProfinetIOs(cell, options) {
|
|
1624
1714
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteAllProfinetIOs(cell, options);
|
|
1625
1715
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1626
1716
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.deleteAllProfinetIOs"]?.[localVarOperationServerIndex]?.url;
|
|
1627
|
-
return (axios$
|
|
1717
|
+
return (axios$16, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$16, localVarOperationServerBasePath || basePath);
|
|
1628
1718
|
},
|
|
1629
1719
|
async deleteAllSnap7IOs(cell, options) {
|
|
1630
1720
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteAllSnap7IOs(cell, options);
|
|
1631
1721
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1632
1722
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.deleteAllSnap7IOs"]?.[localVarOperationServerIndex]?.url;
|
|
1633
|
-
return (axios$
|
|
1723
|
+
return (axios$17, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$17, localVarOperationServerBasePath || basePath);
|
|
1634
1724
|
},
|
|
1635
1725
|
async deleteModbusIO(cell, io, options) {
|
|
1636
1726
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteModbusIO(cell, io, options);
|
|
1637
1727
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1638
1728
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.deleteModbusIO"]?.[localVarOperationServerIndex]?.url;
|
|
1639
|
-
return (axios$
|
|
1729
|
+
return (axios$18, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$18, localVarOperationServerBasePath || basePath);
|
|
1640
1730
|
},
|
|
1641
1731
|
async deleteProfinetIO(cell, io, options) {
|
|
1642
1732
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteProfinetIO(cell, io, options);
|
|
1643
1733
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1644
1734
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.deleteProfinetIO"]?.[localVarOperationServerIndex]?.url;
|
|
1645
|
-
return (axios$
|
|
1735
|
+
return (axios$19, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$19, localVarOperationServerBasePath || basePath);
|
|
1646
1736
|
},
|
|
1647
1737
|
async deleteSnap7IO(cell, io, options) {
|
|
1648
1738
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSnap7IO(cell, io, options);
|
|
1649
1739
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1650
1740
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.deleteSnap7IO"]?.[localVarOperationServerIndex]?.url;
|
|
1651
|
-
return (axios$
|
|
1741
|
+
return (axios$20, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$20, localVarOperationServerBasePath || basePath);
|
|
1652
1742
|
},
|
|
1653
1743
|
async getBusIOService(cell, options) {
|
|
1654
1744
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getBusIOService(cell, options);
|
|
1655
1745
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1656
1746
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.getBusIOService"]?.[localVarOperationServerIndex]?.url;
|
|
1657
|
-
return (axios$
|
|
1747
|
+
return (axios$21, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$21, localVarOperationServerBasePath || basePath);
|
|
1658
1748
|
},
|
|
1659
1749
|
async getBusIOState(cell, options) {
|
|
1660
1750
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getBusIOState(cell, options);
|
|
1661
1751
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1662
1752
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.getBusIOState"]?.[localVarOperationServerIndex]?.url;
|
|
1663
|
-
return (axios$
|
|
1753
|
+
return (axios$22, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$22, localVarOperationServerBasePath || basePath);
|
|
1664
1754
|
},
|
|
1665
1755
|
async getBusIOValues(cell, ios, options) {
|
|
1666
1756
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getBusIOValues(cell, ios, options);
|
|
1667
1757
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1668
1758
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.getBusIOValues"]?.[localVarOperationServerIndex]?.url;
|
|
1669
|
-
return (axios$
|
|
1759
|
+
return (axios$23, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$23, localVarOperationServerBasePath || basePath);
|
|
1670
1760
|
},
|
|
1671
1761
|
async getProfinetDescription(cell, options) {
|
|
1672
1762
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getProfinetDescription(cell, options);
|
|
1673
1763
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1674
1764
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.getProfinetDescription"]?.[localVarOperationServerIndex]?.url;
|
|
1675
|
-
return (axios$
|
|
1765
|
+
return (axios$24, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$24, localVarOperationServerBasePath || basePath);
|
|
1676
1766
|
},
|
|
1677
1767
|
async getProfinetGSDML(cell, options) {
|
|
1678
1768
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getProfinetGSDML(cell, options);
|
|
1679
1769
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1680
1770
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.getProfinetGSDML"]?.[localVarOperationServerIndex]?.url;
|
|
1681
|
-
return (axios$
|
|
1771
|
+
return (axios$25, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$25, localVarOperationServerBasePath || basePath);
|
|
1682
1772
|
},
|
|
1683
1773
|
async getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options) {
|
|
1684
1774
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options);
|
|
1685
1775
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1686
1776
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.getProfinetIOsFromFile"]?.[localVarOperationServerIndex]?.url;
|
|
1687
|
-
return (axios$
|
|
1777
|
+
return (axios$26, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$26, localVarOperationServerBasePath || basePath);
|
|
1688
1778
|
},
|
|
1689
1779
|
async listBusIODescriptions(cell, options) {
|
|
1690
1780
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listBusIODescriptions(cell, options);
|
|
1691
1781
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1692
1782
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.listBusIODescriptions"]?.[localVarOperationServerIndex]?.url;
|
|
1693
|
-
return (axios$
|
|
1783
|
+
return (axios$27, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$27, localVarOperationServerBasePath || basePath);
|
|
1694
1784
|
},
|
|
1695
1785
|
async listModbusIOs(cell, options) {
|
|
1696
1786
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listModbusIOs(cell, options);
|
|
1697
1787
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1698
1788
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.listModbusIOs"]?.[localVarOperationServerIndex]?.url;
|
|
1699
|
-
return (axios$
|
|
1789
|
+
return (axios$28, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$28, localVarOperationServerBasePath || basePath);
|
|
1700
1790
|
},
|
|
1701
1791
|
async listProfinetIOs(cell, options) {
|
|
1702
1792
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listProfinetIOs(cell, options);
|
|
1703
1793
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1704
1794
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.listProfinetIOs"]?.[localVarOperationServerIndex]?.url;
|
|
1705
|
-
return (axios$
|
|
1795
|
+
return (axios$29, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$29, localVarOperationServerBasePath || basePath);
|
|
1706
1796
|
},
|
|
1707
1797
|
async listSnap7IOs(cell, options) {
|
|
1708
1798
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listSnap7IOs(cell, options);
|
|
1709
1799
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1710
1800
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.listSnap7IOs"]?.[localVarOperationServerIndex]?.url;
|
|
1711
|
-
return (axios$
|
|
1801
|
+
return (axios$30, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$30, localVarOperationServerBasePath || basePath);
|
|
1712
1802
|
},
|
|
1713
1803
|
async setBusIOValues(cell, iOValue, options) {
|
|
1714
1804
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setBusIOValues(cell, iOValue, options);
|
|
1715
1805
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1716
1806
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.setBusIOValues"]?.[localVarOperationServerIndex]?.url;
|
|
1717
|
-
return (axios$
|
|
1807
|
+
return (axios$31, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$31, localVarOperationServerBasePath || basePath);
|
|
1718
1808
|
},
|
|
1719
1809
|
async setProfinetIOsFromFile(cell, profinetInputOutputConfig, options) {
|
|
1720
1810
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setProfinetIOsFromFile(cell, profinetInputOutputConfig, options);
|
|
1721
1811
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1722
1812
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.setProfinetIOsFromFile"]?.[localVarOperationServerIndex]?.url;
|
|
1723
|
-
return (axios$
|
|
1813
|
+
return (axios$32, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$32, localVarOperationServerBasePath || basePath);
|
|
1724
1814
|
}
|
|
1725
1815
|
};
|
|
1726
1816
|
};
|
|
1727
1817
|
/**
|
|
1728
1818
|
* BUSInputsOutputsApi - factory interface
|
|
1729
1819
|
*/
|
|
1730
|
-
const BUSInputsOutputsApiFactory = function(configuration, basePath, axios$
|
|
1820
|
+
const BUSInputsOutputsApiFactory = function(configuration, basePath, axios$33) {
|
|
1731
1821
|
const localVarFp = BUSInputsOutputsApiFp(configuration);
|
|
1732
1822
|
return {
|
|
1733
1823
|
addBusIOService(cell, busIOType, completionTimeout, options) {
|
|
1734
|
-
return localVarFp.addBusIOService(cell, busIOType, completionTimeout, options).then((request) => request(axios$
|
|
1824
|
+
return localVarFp.addBusIOService(cell, busIOType, completionTimeout, options).then((request) => request(axios$33, basePath));
|
|
1735
1825
|
},
|
|
1736
1826
|
addModbusIO(cell, io, modbusIOData, options) {
|
|
1737
|
-
return localVarFp.addModbusIO(cell, io, modbusIOData, options).then((request) => request(axios$
|
|
1827
|
+
return localVarFp.addModbusIO(cell, io, modbusIOData, options).then((request) => request(axios$33, basePath));
|
|
1738
1828
|
},
|
|
1739
1829
|
addProfinetIO(cell, io, profinetIOData, options) {
|
|
1740
|
-
return localVarFp.addProfinetIO(cell, io, profinetIOData, options).then((request) => request(axios$
|
|
1830
|
+
return localVarFp.addProfinetIO(cell, io, profinetIOData, options).then((request) => request(axios$33, basePath));
|
|
1741
1831
|
},
|
|
1742
1832
|
addSnap7IO(cell, io, snap7IOData, options) {
|
|
1743
|
-
return localVarFp.addSnap7IO(cell, io, snap7IOData, options).then((request) => request(axios$
|
|
1833
|
+
return localVarFp.addSnap7IO(cell, io, snap7IOData, options).then((request) => request(axios$33, basePath));
|
|
1744
1834
|
},
|
|
1745
1835
|
clearBusIOService(cell, completionTimeout, options) {
|
|
1746
|
-
return localVarFp.clearBusIOService(cell, completionTimeout, options).then((request) => request(axios$
|
|
1836
|
+
return localVarFp.clearBusIOService(cell, completionTimeout, options).then((request) => request(axios$33, basePath));
|
|
1747
1837
|
},
|
|
1748
1838
|
deleteAllModbusIOs(cell, options) {
|
|
1749
|
-
return localVarFp.deleteAllModbusIOs(cell, options).then((request) => request(axios$
|
|
1839
|
+
return localVarFp.deleteAllModbusIOs(cell, options).then((request) => request(axios$33, basePath));
|
|
1750
1840
|
},
|
|
1751
1841
|
deleteAllProfinetIOs(cell, options) {
|
|
1752
|
-
return localVarFp.deleteAllProfinetIOs(cell, options).then((request) => request(axios$
|
|
1842
|
+
return localVarFp.deleteAllProfinetIOs(cell, options).then((request) => request(axios$33, basePath));
|
|
1753
1843
|
},
|
|
1754
1844
|
deleteAllSnap7IOs(cell, options) {
|
|
1755
|
-
return localVarFp.deleteAllSnap7IOs(cell, options).then((request) => request(axios$
|
|
1845
|
+
return localVarFp.deleteAllSnap7IOs(cell, options).then((request) => request(axios$33, basePath));
|
|
1756
1846
|
},
|
|
1757
1847
|
deleteModbusIO(cell, io, options) {
|
|
1758
|
-
return localVarFp.deleteModbusIO(cell, io, options).then((request) => request(axios$
|
|
1848
|
+
return localVarFp.deleteModbusIO(cell, io, options).then((request) => request(axios$33, basePath));
|
|
1759
1849
|
},
|
|
1760
1850
|
deleteProfinetIO(cell, io, options) {
|
|
1761
|
-
return localVarFp.deleteProfinetIO(cell, io, options).then((request) => request(axios$
|
|
1851
|
+
return localVarFp.deleteProfinetIO(cell, io, options).then((request) => request(axios$33, basePath));
|
|
1762
1852
|
},
|
|
1763
1853
|
deleteSnap7IO(cell, io, options) {
|
|
1764
|
-
return localVarFp.deleteSnap7IO(cell, io, options).then((request) => request(axios$
|
|
1854
|
+
return localVarFp.deleteSnap7IO(cell, io, options).then((request) => request(axios$33, basePath));
|
|
1765
1855
|
},
|
|
1766
1856
|
getBusIOService(cell, options) {
|
|
1767
|
-
return localVarFp.getBusIOService(cell, options).then((request) => request(axios$
|
|
1857
|
+
return localVarFp.getBusIOService(cell, options).then((request) => request(axios$33, basePath));
|
|
1768
1858
|
},
|
|
1769
1859
|
getBusIOState(cell, options) {
|
|
1770
|
-
return localVarFp.getBusIOState(cell, options).then((request) => request(axios$
|
|
1860
|
+
return localVarFp.getBusIOState(cell, options).then((request) => request(axios$33, basePath));
|
|
1771
1861
|
},
|
|
1772
1862
|
getBusIOValues(cell, ios, options) {
|
|
1773
|
-
return localVarFp.getBusIOValues(cell, ios, options).then((request) => request(axios$
|
|
1863
|
+
return localVarFp.getBusIOValues(cell, ios, options).then((request) => request(axios$33, basePath));
|
|
1774
1864
|
},
|
|
1775
1865
|
getProfinetDescription(cell, options) {
|
|
1776
|
-
return localVarFp.getProfinetDescription(cell, options).then((request) => request(axios$
|
|
1866
|
+
return localVarFp.getProfinetDescription(cell, options).then((request) => request(axios$33, basePath));
|
|
1777
1867
|
},
|
|
1778
1868
|
getProfinetGSDML(cell, options) {
|
|
1779
|
-
return localVarFp.getProfinetGSDML(cell, options).then((request) => request(axios$
|
|
1869
|
+
return localVarFp.getProfinetGSDML(cell, options).then((request) => request(axios$33, basePath));
|
|
1780
1870
|
},
|
|
1781
1871
|
getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options) {
|
|
1782
|
-
return localVarFp.getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options).then((request) => request(axios$
|
|
1872
|
+
return localVarFp.getProfinetIOsFromFile(cell, offsets, inputOffset, outputOffset, options).then((request) => request(axios$33, basePath));
|
|
1783
1873
|
},
|
|
1784
1874
|
listBusIODescriptions(cell, options) {
|
|
1785
|
-
return localVarFp.listBusIODescriptions(cell, options).then((request) => request(axios$
|
|
1875
|
+
return localVarFp.listBusIODescriptions(cell, options).then((request) => request(axios$33, basePath));
|
|
1786
1876
|
},
|
|
1787
1877
|
listModbusIOs(cell, options) {
|
|
1788
|
-
return localVarFp.listModbusIOs(cell, options).then((request) => request(axios$
|
|
1878
|
+
return localVarFp.listModbusIOs(cell, options).then((request) => request(axios$33, basePath));
|
|
1789
1879
|
},
|
|
1790
1880
|
listProfinetIOs(cell, options) {
|
|
1791
|
-
return localVarFp.listProfinetIOs(cell, options).then((request) => request(axios$
|
|
1881
|
+
return localVarFp.listProfinetIOs(cell, options).then((request) => request(axios$33, basePath));
|
|
1792
1882
|
},
|
|
1793
1883
|
listSnap7IOs(cell, options) {
|
|
1794
|
-
return localVarFp.listSnap7IOs(cell, options).then((request) => request(axios$
|
|
1884
|
+
return localVarFp.listSnap7IOs(cell, options).then((request) => request(axios$33, basePath));
|
|
1795
1885
|
},
|
|
1796
1886
|
setBusIOValues(cell, iOValue, options) {
|
|
1797
|
-
return localVarFp.setBusIOValues(cell, iOValue, options).then((request) => request(axios$
|
|
1887
|
+
return localVarFp.setBusIOValues(cell, iOValue, options).then((request) => request(axios$33, basePath));
|
|
1798
1888
|
},
|
|
1799
1889
|
setProfinetIOsFromFile(cell, profinetInputOutputConfig, options) {
|
|
1800
|
-
return localVarFp.setProfinetIOsFromFile(cell, profinetInputOutputConfig, options).then((request) => request(axios$
|
|
1890
|
+
return localVarFp.setProfinetIOsFromFile(cell, profinetInputOutputConfig, options).then((request) => request(axios$33, basePath));
|
|
1801
1891
|
}
|
|
1802
1892
|
};
|
|
1803
1893
|
};
|
|
@@ -2317,90 +2407,90 @@ const CellApiFp = function(configuration) {
|
|
|
2317
2407
|
const localVarAxiosArgs = await localVarAxiosParamCreator.checkCellVersionUpdate(cell, channel, options);
|
|
2318
2408
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2319
2409
|
const localVarOperationServerBasePath = operationServerMap["CellApi.checkCellVersionUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
2320
|
-
return (axios$
|
|
2410
|
+
return (axios$34, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$34, localVarOperationServerBasePath || basePath);
|
|
2321
2411
|
},
|
|
2322
2412
|
async deleteCell(cell, completionTimeout, options) {
|
|
2323
2413
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteCell(cell, completionTimeout, options);
|
|
2324
2414
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2325
2415
|
const localVarOperationServerBasePath = operationServerMap["CellApi.deleteCell"]?.[localVarOperationServerIndex]?.url;
|
|
2326
|
-
return (axios$
|
|
2416
|
+
return (axios$35, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$35, localVarOperationServerBasePath || basePath);
|
|
2327
2417
|
},
|
|
2328
2418
|
async deployCell(cell, completionTimeout, options) {
|
|
2329
2419
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deployCell(cell, completionTimeout, options);
|
|
2330
2420
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2331
2421
|
const localVarOperationServerBasePath = operationServerMap["CellApi.deployCell"]?.[localVarOperationServerIndex]?.url;
|
|
2332
|
-
return (axios$
|
|
2422
|
+
return (axios$36, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$36, localVarOperationServerBasePath || basePath);
|
|
2333
2423
|
},
|
|
2334
2424
|
async getCell(cell, options) {
|
|
2335
2425
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCell(cell, options);
|
|
2336
2426
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2337
2427
|
const localVarOperationServerBasePath = operationServerMap["CellApi.getCell"]?.[localVarOperationServerIndex]?.url;
|
|
2338
|
-
return (axios$
|
|
2428
|
+
return (axios$37, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$37, localVarOperationServerBasePath || basePath);
|
|
2339
2429
|
},
|
|
2340
2430
|
async getCellStatus(cell, options) {
|
|
2341
2431
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCellStatus(cell, options);
|
|
2342
2432
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2343
2433
|
const localVarOperationServerBasePath = operationServerMap["CellApi.getCellStatus"]?.[localVarOperationServerIndex]?.url;
|
|
2344
|
-
return (axios$
|
|
2434
|
+
return (axios$38, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$38, localVarOperationServerBasePath || basePath);
|
|
2345
2435
|
},
|
|
2346
2436
|
async listCells(options) {
|
|
2347
2437
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCells(options);
|
|
2348
2438
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2349
2439
|
const localVarOperationServerBasePath = operationServerMap["CellApi.listCells"]?.[localVarOperationServerIndex]?.url;
|
|
2350
|
-
return (axios$
|
|
2440
|
+
return (axios$39, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$39, localVarOperationServerBasePath || basePath);
|
|
2351
2441
|
},
|
|
2352
2442
|
async setCellStatus(cell, operatingState, options) {
|
|
2353
2443
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setCellStatus(cell, operatingState, options);
|
|
2354
2444
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2355
2445
|
const localVarOperationServerBasePath = operationServerMap["CellApi.setCellStatus"]?.[localVarOperationServerIndex]?.url;
|
|
2356
|
-
return (axios$
|
|
2446
|
+
return (axios$40, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$40, localVarOperationServerBasePath || basePath);
|
|
2357
2447
|
},
|
|
2358
2448
|
async updateCell(cell, cell2, completionTimeout, options) {
|
|
2359
2449
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateCell(cell, cell2, completionTimeout, options);
|
|
2360
2450
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2361
2451
|
const localVarOperationServerBasePath = operationServerMap["CellApi.updateCell"]?.[localVarOperationServerIndex]?.url;
|
|
2362
|
-
return (axios$
|
|
2452
|
+
return (axios$41, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$41, localVarOperationServerBasePath || basePath);
|
|
2363
2453
|
},
|
|
2364
2454
|
async updateCellVersion(cell, updateCellVersionRequest, options) {
|
|
2365
2455
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateCellVersion(cell, updateCellVersionRequest, options);
|
|
2366
2456
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2367
2457
|
const localVarOperationServerBasePath = operationServerMap["CellApi.updateCellVersion"]?.[localVarOperationServerIndex]?.url;
|
|
2368
|
-
return (axios$
|
|
2458
|
+
return (axios$42, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$42, localVarOperationServerBasePath || basePath);
|
|
2369
2459
|
}
|
|
2370
2460
|
};
|
|
2371
2461
|
};
|
|
2372
2462
|
/**
|
|
2373
2463
|
* CellApi - factory interface
|
|
2374
2464
|
*/
|
|
2375
|
-
const CellApiFactory = function(configuration, basePath, axios$
|
|
2465
|
+
const CellApiFactory = function(configuration, basePath, axios$43) {
|
|
2376
2466
|
const localVarFp = CellApiFp(configuration);
|
|
2377
2467
|
return {
|
|
2378
2468
|
checkCellVersionUpdate(cell, channel, options) {
|
|
2379
|
-
return localVarFp.checkCellVersionUpdate(cell, channel, options).then((request) => request(axios$
|
|
2469
|
+
return localVarFp.checkCellVersionUpdate(cell, channel, options).then((request) => request(axios$43, basePath));
|
|
2380
2470
|
},
|
|
2381
2471
|
deleteCell(cell, completionTimeout, options) {
|
|
2382
|
-
return localVarFp.deleteCell(cell, completionTimeout, options).then((request) => request(axios$
|
|
2472
|
+
return localVarFp.deleteCell(cell, completionTimeout, options).then((request) => request(axios$43, basePath));
|
|
2383
2473
|
},
|
|
2384
2474
|
deployCell(cell, completionTimeout, options) {
|
|
2385
|
-
return localVarFp.deployCell(cell, completionTimeout, options).then((request) => request(axios$
|
|
2475
|
+
return localVarFp.deployCell(cell, completionTimeout, options).then((request) => request(axios$43, basePath));
|
|
2386
2476
|
},
|
|
2387
2477
|
getCell(cell, options) {
|
|
2388
|
-
return localVarFp.getCell(cell, options).then((request) => request(axios$
|
|
2478
|
+
return localVarFp.getCell(cell, options).then((request) => request(axios$43, basePath));
|
|
2389
2479
|
},
|
|
2390
2480
|
getCellStatus(cell, options) {
|
|
2391
|
-
return localVarFp.getCellStatus(cell, options).then((request) => request(axios$
|
|
2481
|
+
return localVarFp.getCellStatus(cell, options).then((request) => request(axios$43, basePath));
|
|
2392
2482
|
},
|
|
2393
2483
|
listCells(options) {
|
|
2394
|
-
return localVarFp.listCells(options).then((request) => request(axios$
|
|
2484
|
+
return localVarFp.listCells(options).then((request) => request(axios$43, basePath));
|
|
2395
2485
|
},
|
|
2396
2486
|
setCellStatus(cell, operatingState, options) {
|
|
2397
|
-
return localVarFp.setCellStatus(cell, operatingState, options).then((request) => request(axios$
|
|
2487
|
+
return localVarFp.setCellStatus(cell, operatingState, options).then((request) => request(axios$43, basePath));
|
|
2398
2488
|
},
|
|
2399
2489
|
updateCell(cell, cell2, completionTimeout, options) {
|
|
2400
|
-
return localVarFp.updateCell(cell, cell2, completionTimeout, options).then((request) => request(axios$
|
|
2490
|
+
return localVarFp.updateCell(cell, cell2, completionTimeout, options).then((request) => request(axios$43, basePath));
|
|
2401
2491
|
},
|
|
2402
2492
|
updateCellVersion(cell, updateCellVersionRequest, options) {
|
|
2403
|
-
return localVarFp.updateCellVersion(cell, updateCellVersionRequest, options).then((request) => request(axios$
|
|
2493
|
+
return localVarFp.updateCellVersion(cell, updateCellVersionRequest, options).then((request) => request(axios$43, basePath));
|
|
2404
2494
|
}
|
|
2405
2495
|
};
|
|
2406
2496
|
};
|
|
@@ -2915,135 +3005,135 @@ const ControllerApiFp = function(configuration) {
|
|
|
2915
3005
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addRobotController(cell, robotController, completionTimeout, options);
|
|
2916
3006
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2917
3007
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.addRobotController"]?.[localVarOperationServerIndex]?.url;
|
|
2918
|
-
return (axios$
|
|
3008
|
+
return (axios$44, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$44, localVarOperationServerBasePath || basePath);
|
|
2919
3009
|
},
|
|
2920
3010
|
async clearRobotControllers(cell, completionTimeout, options) {
|
|
2921
3011
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearRobotControllers(cell, completionTimeout, options);
|
|
2922
3012
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2923
3013
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.clearRobotControllers"]?.[localVarOperationServerIndex]?.url;
|
|
2924
|
-
return (axios$
|
|
3014
|
+
return (axios$45, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$45, localVarOperationServerBasePath || basePath);
|
|
2925
3015
|
},
|
|
2926
3016
|
async deleteRobotController(cell, controller, completionTimeout, options) {
|
|
2927
3017
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteRobotController(cell, controller, completionTimeout, options);
|
|
2928
3018
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2929
3019
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.deleteRobotController"]?.[localVarOperationServerIndex]?.url;
|
|
2930
|
-
return (axios$
|
|
3020
|
+
return (axios$46, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$46, localVarOperationServerBasePath || basePath);
|
|
2931
3021
|
},
|
|
2932
3022
|
async getControllerDescription(cell, controller, options) {
|
|
2933
3023
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getControllerDescription(cell, controller, options);
|
|
2934
3024
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2935
3025
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.getControllerDescription"]?.[localVarOperationServerIndex]?.url;
|
|
2936
|
-
return (axios$
|
|
3026
|
+
return (axios$47, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$47, localVarOperationServerBasePath || basePath);
|
|
2937
3027
|
},
|
|
2938
3028
|
async getCoordinateSystem(cell, controller, coordinateSystem, orientationType, options) {
|
|
2939
3029
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCoordinateSystem(cell, controller, coordinateSystem, orientationType, options);
|
|
2940
3030
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2941
3031
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.getCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
2942
|
-
return (axios$
|
|
3032
|
+
return (axios$48, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$48, localVarOperationServerBasePath || basePath);
|
|
2943
3033
|
},
|
|
2944
3034
|
async getCurrentRobotControllerState(cell, controller, options) {
|
|
2945
3035
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCurrentRobotControllerState(cell, controller, options);
|
|
2946
3036
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2947
3037
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.getCurrentRobotControllerState"]?.[localVarOperationServerIndex]?.url;
|
|
2948
|
-
return (axios$
|
|
3038
|
+
return (axios$49, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$49, localVarOperationServerBasePath || basePath);
|
|
2949
3039
|
},
|
|
2950
3040
|
async getRobotController(cell, controller, options) {
|
|
2951
3041
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getRobotController(cell, controller, options);
|
|
2952
3042
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2953
3043
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.getRobotController"]?.[localVarOperationServerIndex]?.url;
|
|
2954
|
-
return (axios$
|
|
3044
|
+
return (axios$50, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$50, localVarOperationServerBasePath || basePath);
|
|
2955
3045
|
},
|
|
2956
3046
|
async getVirtualControllerConfiguration(cell, controller, options) {
|
|
2957
3047
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerConfiguration(cell, controller, options);
|
|
2958
3048
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2959
3049
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.getVirtualControllerConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
2960
|
-
return (axios$
|
|
3050
|
+
return (axios$51, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$51, localVarOperationServerBasePath || basePath);
|
|
2961
3051
|
},
|
|
2962
3052
|
async listCoordinateSystems(cell, controller, orientationType, options) {
|
|
2963
3053
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCoordinateSystems(cell, controller, orientationType, options);
|
|
2964
3054
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2965
3055
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.listCoordinateSystems"]?.[localVarOperationServerIndex]?.url;
|
|
2966
|
-
return (axios$
|
|
3056
|
+
return (axios$52, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$52, localVarOperationServerBasePath || basePath);
|
|
2967
3057
|
},
|
|
2968
3058
|
async listRobotControllers(cell, options) {
|
|
2969
3059
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listRobotControllers(cell, options);
|
|
2970
3060
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2971
3061
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.listRobotControllers"]?.[localVarOperationServerIndex]?.url;
|
|
2972
|
-
return (axios$
|
|
3062
|
+
return (axios$53, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$53, localVarOperationServerBasePath || basePath);
|
|
2973
3063
|
},
|
|
2974
3064
|
async setDefaultMode(cell, controller, mode, options) {
|
|
2975
3065
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setDefaultMode(cell, controller, mode, options);
|
|
2976
3066
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2977
3067
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.setDefaultMode"]?.[localVarOperationServerIndex]?.url;
|
|
2978
|
-
return (axios$
|
|
3068
|
+
return (axios$54, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$54, localVarOperationServerBasePath || basePath);
|
|
2979
3069
|
},
|
|
2980
3070
|
async streamFreeDrive(cell, controller, responseRate, options) {
|
|
2981
3071
|
const localVarAxiosArgs = await localVarAxiosParamCreator.streamFreeDrive(cell, controller, responseRate, options);
|
|
2982
3072
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2983
3073
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.streamFreeDrive"]?.[localVarOperationServerIndex]?.url;
|
|
2984
|
-
return (axios$
|
|
3074
|
+
return (axios$55, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$55, localVarOperationServerBasePath || basePath);
|
|
2985
3075
|
},
|
|
2986
3076
|
async streamRobotControllerState(cell, controller, responseRate, addControllerTimeout, options) {
|
|
2987
3077
|
const localVarAxiosArgs = await localVarAxiosParamCreator.streamRobotControllerState(cell, controller, responseRate, addControllerTimeout, options);
|
|
2988
3078
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2989
3079
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.streamRobotControllerState"]?.[localVarOperationServerIndex]?.url;
|
|
2990
|
-
return (axios$
|
|
3080
|
+
return (axios$56, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$56, localVarOperationServerBasePath || basePath);
|
|
2991
3081
|
},
|
|
2992
3082
|
async updateRobotController(cell, controller, robotController, completionTimeout, options) {
|
|
2993
3083
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateRobotController(cell, controller, robotController, completionTimeout, options);
|
|
2994
3084
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2995
3085
|
const localVarOperationServerBasePath = operationServerMap["ControllerApi.updateRobotController"]?.[localVarOperationServerIndex]?.url;
|
|
2996
|
-
return (axios$
|
|
3086
|
+
return (axios$57, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$57, localVarOperationServerBasePath || basePath);
|
|
2997
3087
|
}
|
|
2998
3088
|
};
|
|
2999
3089
|
};
|
|
3000
3090
|
/**
|
|
3001
3091
|
* ControllerApi - factory interface
|
|
3002
3092
|
*/
|
|
3003
|
-
const ControllerApiFactory = function(configuration, basePath, axios$
|
|
3093
|
+
const ControllerApiFactory = function(configuration, basePath, axios$58) {
|
|
3004
3094
|
const localVarFp = ControllerApiFp(configuration);
|
|
3005
3095
|
return {
|
|
3006
3096
|
addRobotController(cell, robotController, completionTimeout, options) {
|
|
3007
|
-
return localVarFp.addRobotController(cell, robotController, completionTimeout, options).then((request) => request(axios$
|
|
3097
|
+
return localVarFp.addRobotController(cell, robotController, completionTimeout, options).then((request) => request(axios$58, basePath));
|
|
3008
3098
|
},
|
|
3009
3099
|
clearRobotControllers(cell, completionTimeout, options) {
|
|
3010
|
-
return localVarFp.clearRobotControllers(cell, completionTimeout, options).then((request) => request(axios$
|
|
3100
|
+
return localVarFp.clearRobotControllers(cell, completionTimeout, options).then((request) => request(axios$58, basePath));
|
|
3011
3101
|
},
|
|
3012
3102
|
deleteRobotController(cell, controller, completionTimeout, options) {
|
|
3013
|
-
return localVarFp.deleteRobotController(cell, controller, completionTimeout, options).then((request) => request(axios$
|
|
3103
|
+
return localVarFp.deleteRobotController(cell, controller, completionTimeout, options).then((request) => request(axios$58, basePath));
|
|
3014
3104
|
},
|
|
3015
3105
|
getControllerDescription(cell, controller, options) {
|
|
3016
|
-
return localVarFp.getControllerDescription(cell, controller, options).then((request) => request(axios$
|
|
3106
|
+
return localVarFp.getControllerDescription(cell, controller, options).then((request) => request(axios$58, basePath));
|
|
3017
3107
|
},
|
|
3018
3108
|
getCoordinateSystem(cell, controller, coordinateSystem, orientationType, options) {
|
|
3019
|
-
return localVarFp.getCoordinateSystem(cell, controller, coordinateSystem, orientationType, options).then((request) => request(axios$
|
|
3109
|
+
return localVarFp.getCoordinateSystem(cell, controller, coordinateSystem, orientationType, options).then((request) => request(axios$58, basePath));
|
|
3020
3110
|
},
|
|
3021
3111
|
getCurrentRobotControllerState(cell, controller, options) {
|
|
3022
|
-
return localVarFp.getCurrentRobotControllerState(cell, controller, options).then((request) => request(axios$
|
|
3112
|
+
return localVarFp.getCurrentRobotControllerState(cell, controller, options).then((request) => request(axios$58, basePath));
|
|
3023
3113
|
},
|
|
3024
3114
|
getRobotController(cell, controller, options) {
|
|
3025
|
-
return localVarFp.getRobotController(cell, controller, options).then((request) => request(axios$
|
|
3115
|
+
return localVarFp.getRobotController(cell, controller, options).then((request) => request(axios$58, basePath));
|
|
3026
3116
|
},
|
|
3027
3117
|
getVirtualControllerConfiguration(cell, controller, options) {
|
|
3028
|
-
return localVarFp.getVirtualControllerConfiguration(cell, controller, options).then((request) => request(axios$
|
|
3118
|
+
return localVarFp.getVirtualControllerConfiguration(cell, controller, options).then((request) => request(axios$58, basePath));
|
|
3029
3119
|
},
|
|
3030
3120
|
listCoordinateSystems(cell, controller, orientationType, options) {
|
|
3031
|
-
return localVarFp.listCoordinateSystems(cell, controller, orientationType, options).then((request) => request(axios$
|
|
3121
|
+
return localVarFp.listCoordinateSystems(cell, controller, orientationType, options).then((request) => request(axios$58, basePath));
|
|
3032
3122
|
},
|
|
3033
3123
|
listRobotControllers(cell, options) {
|
|
3034
|
-
return localVarFp.listRobotControllers(cell, options).then((request) => request(axios$
|
|
3124
|
+
return localVarFp.listRobotControllers(cell, options).then((request) => request(axios$58, basePath));
|
|
3035
3125
|
},
|
|
3036
3126
|
setDefaultMode(cell, controller, mode, options) {
|
|
3037
|
-
return localVarFp.setDefaultMode(cell, controller, mode, options).then((request) => request(axios$
|
|
3127
|
+
return localVarFp.setDefaultMode(cell, controller, mode, options).then((request) => request(axios$58, basePath));
|
|
3038
3128
|
},
|
|
3039
3129
|
streamFreeDrive(cell, controller, responseRate, options) {
|
|
3040
|
-
return localVarFp.streamFreeDrive(cell, controller, responseRate, options).then((request) => request(axios$
|
|
3130
|
+
return localVarFp.streamFreeDrive(cell, controller, responseRate, options).then((request) => request(axios$58, basePath));
|
|
3041
3131
|
},
|
|
3042
3132
|
streamRobotControllerState(cell, controller, responseRate, addControllerTimeout, options) {
|
|
3043
|
-
return localVarFp.streamRobotControllerState(cell, controller, responseRate, addControllerTimeout, options).then((request) => request(axios$
|
|
3133
|
+
return localVarFp.streamRobotControllerState(cell, controller, responseRate, addControllerTimeout, options).then((request) => request(axios$58, basePath));
|
|
3044
3134
|
},
|
|
3045
3135
|
updateRobotController(cell, controller, robotController, completionTimeout, options) {
|
|
3046
|
-
return localVarFp.updateRobotController(cell, controller, robotController, completionTimeout, options).then((request) => request(axios$
|
|
3136
|
+
return localVarFp.updateRobotController(cell, controller, robotController, completionTimeout, options).then((request) => request(axios$58, basePath));
|
|
3047
3137
|
}
|
|
3048
3138
|
};
|
|
3049
3139
|
};
|
|
@@ -3380,54 +3470,54 @@ const ControllerInputsOutputsApiFp = function(configuration) {
|
|
|
3380
3470
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listIODescriptions(cell, controller, ios, direction, valueType, group, options);
|
|
3381
3471
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3382
3472
|
const localVarOperationServerBasePath = operationServerMap["ControllerInputsOutputsApi.listIODescriptions"]?.[localVarOperationServerIndex]?.url;
|
|
3383
|
-
return (axios$
|
|
3473
|
+
return (axios$59, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$59, localVarOperationServerBasePath || basePath);
|
|
3384
3474
|
},
|
|
3385
3475
|
async listIOValues(cell, controller, ios, options) {
|
|
3386
3476
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listIOValues(cell, controller, ios, options);
|
|
3387
3477
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3388
3478
|
const localVarOperationServerBasePath = operationServerMap["ControllerInputsOutputsApi.listIOValues"]?.[localVarOperationServerIndex]?.url;
|
|
3389
|
-
return (axios$
|
|
3479
|
+
return (axios$60, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$60, localVarOperationServerBasePath || basePath);
|
|
3390
3480
|
},
|
|
3391
3481
|
async setOutputValues(cell, controller, iOValue, options) {
|
|
3392
3482
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setOutputValues(cell, controller, iOValue, options);
|
|
3393
3483
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3394
3484
|
const localVarOperationServerBasePath = operationServerMap["ControllerInputsOutputsApi.setOutputValues"]?.[localVarOperationServerIndex]?.url;
|
|
3395
|
-
return (axios$
|
|
3485
|
+
return (axios$61, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$61, localVarOperationServerBasePath || basePath);
|
|
3396
3486
|
},
|
|
3397
3487
|
async streamIOValues(cell, controller, ios, options) {
|
|
3398
3488
|
const localVarAxiosArgs = await localVarAxiosParamCreator.streamIOValues(cell, controller, ios, options);
|
|
3399
3489
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3400
3490
|
const localVarOperationServerBasePath = operationServerMap["ControllerInputsOutputsApi.streamIOValues"]?.[localVarOperationServerIndex]?.url;
|
|
3401
|
-
return (axios$
|
|
3491
|
+
return (axios$62, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$62, localVarOperationServerBasePath || basePath);
|
|
3402
3492
|
},
|
|
3403
3493
|
async waitForIOEvent(cell, controller, waitForIOEventRequest, options) {
|
|
3404
3494
|
const localVarAxiosArgs = await localVarAxiosParamCreator.waitForIOEvent(cell, controller, waitForIOEventRequest, options);
|
|
3405
3495
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3406
3496
|
const localVarOperationServerBasePath = operationServerMap["ControllerInputsOutputsApi.waitForIOEvent"]?.[localVarOperationServerIndex]?.url;
|
|
3407
|
-
return (axios$
|
|
3497
|
+
return (axios$63, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$63, localVarOperationServerBasePath || basePath);
|
|
3408
3498
|
}
|
|
3409
3499
|
};
|
|
3410
3500
|
};
|
|
3411
3501
|
/**
|
|
3412
3502
|
* ControllerInputsOutputsApi - factory interface
|
|
3413
3503
|
*/
|
|
3414
|
-
const ControllerInputsOutputsApiFactory = function(configuration, basePath, axios$
|
|
3504
|
+
const ControllerInputsOutputsApiFactory = function(configuration, basePath, axios$64) {
|
|
3415
3505
|
const localVarFp = ControllerInputsOutputsApiFp(configuration);
|
|
3416
3506
|
return {
|
|
3417
3507
|
listIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
3418
|
-
return localVarFp.listIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$
|
|
3508
|
+
return localVarFp.listIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$64, basePath));
|
|
3419
3509
|
},
|
|
3420
3510
|
listIOValues(cell, controller, ios, options) {
|
|
3421
|
-
return localVarFp.listIOValues(cell, controller, ios, options).then((request) => request(axios$
|
|
3511
|
+
return localVarFp.listIOValues(cell, controller, ios, options).then((request) => request(axios$64, basePath));
|
|
3422
3512
|
},
|
|
3423
3513
|
setOutputValues(cell, controller, iOValue, options) {
|
|
3424
|
-
return localVarFp.setOutputValues(cell, controller, iOValue, options).then((request) => request(axios$
|
|
3514
|
+
return localVarFp.setOutputValues(cell, controller, iOValue, options).then((request) => request(axios$64, basePath));
|
|
3425
3515
|
},
|
|
3426
3516
|
streamIOValues(cell, controller, ios, options) {
|
|
3427
|
-
return localVarFp.streamIOValues(cell, controller, ios, options).then((request) => request(axios$
|
|
3517
|
+
return localVarFp.streamIOValues(cell, controller, ios, options).then((request) => request(axios$64, basePath));
|
|
3428
3518
|
},
|
|
3429
3519
|
waitForIOEvent(cell, controller, waitForIOEventRequest, options) {
|
|
3430
|
-
return localVarFp.waitForIOEvent(cell, controller, waitForIOEventRequest, options).then((request) => request(axios$
|
|
3520
|
+
return localVarFp.waitForIOEvent(cell, controller, waitForIOEventRequest, options).then((request) => request(axios$64, basePath));
|
|
3431
3521
|
}
|
|
3432
3522
|
};
|
|
3433
3523
|
};
|
|
@@ -3503,102 +3593,57 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
3503
3593
|
* JoggingApi - axios parameter creator
|
|
3504
3594
|
*/
|
|
3505
3595
|
const JoggingApiAxiosParamCreator = function(configuration) {
|
|
3506
|
-
return {
|
|
3507
|
-
executeJogging
|
|
3508
|
-
|
|
3509
|
-
|
|
3510
|
-
|
|
3511
|
-
|
|
3512
|
-
|
|
3513
|
-
|
|
3514
|
-
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
|
|
3532
|
-
|
|
3533
|
-
|
|
3534
|
-
|
|
3535
|
-
|
|
3536
|
-
},
|
|
3537
|
-
executeWaypointJogging: async (cell, controller, executeWaypointJoggingRequest, options = {}) => {
|
|
3538
|
-
assertParamExists("executeWaypointJogging", "cell", cell);
|
|
3539
|
-
assertParamExists("executeWaypointJogging", "controller", controller);
|
|
3540
|
-
assertParamExists("executeWaypointJogging", "executeWaypointJoggingRequest", executeWaypointJoggingRequest);
|
|
3541
|
-
const localVarPath = `/experimental/cells/{cell}/controllers/{controller}/execution/jogging`.replace(`{cell}`, encodeURIComponent(String(cell))).replace(`{controller}`, encodeURIComponent(String(controller)));
|
|
3542
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3543
|
-
let baseOptions;
|
|
3544
|
-
if (configuration) baseOptions = configuration.baseOptions;
|
|
3545
|
-
const localVarRequestOptions = {
|
|
3546
|
-
method: "GET",
|
|
3547
|
-
...baseOptions,
|
|
3548
|
-
...options
|
|
3549
|
-
};
|
|
3550
|
-
const localVarHeaderParameter = {};
|
|
3551
|
-
const localVarQueryParameter = {};
|
|
3552
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3553
|
-
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3554
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3555
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3556
|
-
localVarRequestOptions.headers = {
|
|
3557
|
-
...localVarHeaderParameter,
|
|
3558
|
-
...headersFromBaseOptions,
|
|
3559
|
-
...options.headers
|
|
3560
|
-
};
|
|
3561
|
-
localVarRequestOptions.data = serializeDataIfNeeded(executeWaypointJoggingRequest, localVarRequestOptions, configuration);
|
|
3562
|
-
return {
|
|
3563
|
-
url: toPathString(localVarUrlObj),
|
|
3564
|
-
options: localVarRequestOptions
|
|
3565
|
-
};
|
|
3566
|
-
}
|
|
3567
|
-
};
|
|
3596
|
+
return { executeJogging: async (cell, controller, executeJoggingRequest, options = {}) => {
|
|
3597
|
+
assertParamExists("executeJogging", "cell", cell);
|
|
3598
|
+
assertParamExists("executeJogging", "controller", controller);
|
|
3599
|
+
assertParamExists("executeJogging", "executeJoggingRequest", executeJoggingRequest);
|
|
3600
|
+
const localVarPath = `/cells/{cell}/controllers/{controller}/execution/jogging`.replace(`{cell}`, encodeURIComponent(String(cell))).replace(`{controller}`, encodeURIComponent(String(controller)));
|
|
3601
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3602
|
+
let baseOptions;
|
|
3603
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
3604
|
+
const localVarRequestOptions = {
|
|
3605
|
+
method: "GET",
|
|
3606
|
+
...baseOptions,
|
|
3607
|
+
...options
|
|
3608
|
+
};
|
|
3609
|
+
const localVarHeaderParameter = {};
|
|
3610
|
+
const localVarQueryParameter = {};
|
|
3611
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
3612
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
3613
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3614
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3615
|
+
localVarRequestOptions.headers = {
|
|
3616
|
+
...localVarHeaderParameter,
|
|
3617
|
+
...headersFromBaseOptions,
|
|
3618
|
+
...options.headers
|
|
3619
|
+
};
|
|
3620
|
+
localVarRequestOptions.data = serializeDataIfNeeded(executeJoggingRequest, localVarRequestOptions, configuration);
|
|
3621
|
+
return {
|
|
3622
|
+
url: toPathString(localVarUrlObj),
|
|
3623
|
+
options: localVarRequestOptions
|
|
3624
|
+
};
|
|
3625
|
+
} };
|
|
3568
3626
|
};
|
|
3569
3627
|
/**
|
|
3570
3628
|
* JoggingApi - functional programming interface
|
|
3571
3629
|
*/
|
|
3572
3630
|
const JoggingApiFp = function(configuration) {
|
|
3573
3631
|
const localVarAxiosParamCreator = JoggingApiAxiosParamCreator(configuration);
|
|
3574
|
-
return {
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
},
|
|
3581
|
-
async executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options) {
|
|
3582
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options);
|
|
3583
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3584
|
-
const localVarOperationServerBasePath = operationServerMap["JoggingApi.executeWaypointJogging"]?.[localVarOperationServerIndex]?.url;
|
|
3585
|
-
return (axios$64, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$64, localVarOperationServerBasePath || basePath);
|
|
3586
|
-
}
|
|
3587
|
-
};
|
|
3632
|
+
return { async executeJogging(cell, controller, executeJoggingRequest, options) {
|
|
3633
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.executeJogging(cell, controller, executeJoggingRequest, options);
|
|
3634
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3635
|
+
const localVarOperationServerBasePath = operationServerMap["JoggingApi.executeJogging"]?.[localVarOperationServerIndex]?.url;
|
|
3636
|
+
return (axios$65, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$65, localVarOperationServerBasePath || basePath);
|
|
3637
|
+
} };
|
|
3588
3638
|
};
|
|
3589
3639
|
/**
|
|
3590
3640
|
* JoggingApi - factory interface
|
|
3591
3641
|
*/
|
|
3592
|
-
const JoggingApiFactory = function(configuration, basePath, axios$
|
|
3642
|
+
const JoggingApiFactory = function(configuration, basePath, axios$66) {
|
|
3593
3643
|
const localVarFp = JoggingApiFp(configuration);
|
|
3594
|
-
return {
|
|
3595
|
-
executeJogging(cell, controller, executeJoggingRequest, options)
|
|
3596
|
-
|
|
3597
|
-
},
|
|
3598
|
-
executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options) {
|
|
3599
|
-
return localVarFp.executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options).then((request) => request(axios$65, basePath));
|
|
3600
|
-
}
|
|
3601
|
-
};
|
|
3644
|
+
return { executeJogging(cell, controller, executeJoggingRequest, options) {
|
|
3645
|
+
return localVarFp.executeJogging(cell, controller, executeJoggingRequest, options).then((request) => request(axios$66, basePath));
|
|
3646
|
+
} };
|
|
3602
3647
|
};
|
|
3603
3648
|
/**
|
|
3604
3649
|
* JoggingApi - object-oriented interface
|
|
@@ -3616,18 +3661,6 @@ var JoggingApi = class extends BaseAPI {
|
|
|
3616
3661
|
executeJogging(cell, controller, executeJoggingRequest, options) {
|
|
3617
3662
|
return JoggingApiFp(this.configuration).executeJogging(cell, controller, executeJoggingRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3618
3663
|
}
|
|
3619
|
-
/**
|
|
3620
|
-
* **Required permissions:** `can_operate_controllers` - Operate and monitor robot controllers ___ <!-- theme: danger --> > **Experimental** > > This endpoint is experimental and its behavior may change in future releases. > Websocket endpoint Provides waypoint-based jogging control for a motion group. Instead of commanding target velocities (see [executeJogging](#/operations/executeJogging)), waypoint jogging streams a queue of timed waypoints that the robot moves through by best effort. This can be used for realtime action chunk streaming, e.g., from a Vision-Language-Action (VLA) model. ### Preconditions The motion group is not moved by any other endpoint. ### Requests #### 1. Send `InitializeJoggingRequest` to configure the jogging. - Sets the robot controller mode to control mode. - Claims the motion group for jogging. For robotic arms, TCP is required to ensure that limits, including TCP limits, are respected. #### 2. Send `JointWaypointsRequest` or `PoseWaypointsRequest` to stream waypoints. - The first waypoints message starts an internal clock. - Each waypoint carries a timestamp relative to that clock for when it should be reached. - Existing waypoints in the queue that are older than the first new timestamp are removed. - The current session timestamp is reported in `execute.details.jogger_session_timestamp_ms` of the [streamRobotControllerState](#/operations/streamRobotControllerState) endpoint. #### 3. Stop the jogging motion - Send `PauseJoggingRequest` to stop the motion. ### Responses - Each request is acknowledged with a corresponding response: - `InitializeJoggingResponse` after `InitializeJoggingRequest` - `JointWaypointsResponse` after `JointWaypointsRequest` - `PoseWaypointsResponse` after `PoseWaypointsRequest` - `PauseJoggingResponse` after `PauseJoggingRequest` The responses confirm that the requests were received. They do not signal that the operation was successful; check the [motion group state](#/operations/streamMotionGroupState) for that. - `MovementErrorResponse` with error details is sent in case of an unexpected error, e.g., controller disconnects during jogging. ### Tips and Tricks - Ensure that the websocket connection remains open until the jogging motion is stopped to avoid unexpected stops.
|
|
3621
|
-
* @summary Execute Waypoint Jogging
|
|
3622
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3623
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
3624
|
-
* @param {ExecuteWaypointJoggingRequest} executeWaypointJoggingRequest
|
|
3625
|
-
* @param {*} [options] Override http request option.
|
|
3626
|
-
* @throws {RequiredError}
|
|
3627
|
-
*/
|
|
3628
|
-
executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options) {
|
|
3629
|
-
return JoggingApiFp(this.configuration).executeWaypointJogging(cell, controller, executeWaypointJoggingRequest, options).then((request) => request(this.axios, this.basePath));
|
|
3630
|
-
}
|
|
3631
3664
|
};
|
|
3632
3665
|
/**
|
|
3633
3666
|
* KinematicsApi - axios parameter creator
|
|
@@ -3820,63 +3853,63 @@ const KinematicsApiFp = function(configuration) {
|
|
|
3820
3853
|
const localVarAxiosArgs = await localVarAxiosParamCreator.configuredPoseInverse(cell, configuredPoseInverseRequest, options);
|
|
3821
3854
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3822
3855
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.configuredPoseInverse"]?.[localVarOperationServerIndex]?.url;
|
|
3823
|
-
return (axios$
|
|
3856
|
+
return (axios$67, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$67, localVarOperationServerBasePath || basePath);
|
|
3824
3857
|
},
|
|
3825
3858
|
async convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options) {
|
|
3826
3859
|
const localVarAxiosArgs = await localVarAxiosParamCreator.convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options);
|
|
3827
3860
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3828
3861
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.convertVendorConfiguredPose"]?.[localVarOperationServerIndex]?.url;
|
|
3829
|
-
return (axios$
|
|
3862
|
+
return (axios$68, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$68, localVarOperationServerBasePath || basePath);
|
|
3830
3863
|
},
|
|
3831
3864
|
async forwardKinematics(cell, forwardKinematicsRequest, options) {
|
|
3832
3865
|
const localVarAxiosArgs = await localVarAxiosParamCreator.forwardKinematics(cell, forwardKinematicsRequest, options);
|
|
3833
3866
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3834
3867
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.forwardKinematics"]?.[localVarOperationServerIndex]?.url;
|
|
3835
|
-
return (axios$
|
|
3868
|
+
return (axios$69, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$69, localVarOperationServerBasePath || basePath);
|
|
3836
3869
|
},
|
|
3837
3870
|
async getKinematicConfiguration(cell, getKinematicConfigurationRequest, options) {
|
|
3838
3871
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getKinematicConfiguration(cell, getKinematicConfigurationRequest, options);
|
|
3839
3872
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3840
3873
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.getKinematicConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
3841
|
-
return (axios$
|
|
3874
|
+
return (axios$70, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$70, localVarOperationServerBasePath || basePath);
|
|
3842
3875
|
},
|
|
3843
3876
|
async inverseKinematics(cell, inverseKinematicsRequest, options) {
|
|
3844
3877
|
const localVarAxiosArgs = await localVarAxiosParamCreator.inverseKinematics(cell, inverseKinematicsRequest, options);
|
|
3845
3878
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3846
3879
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.inverseKinematics"]?.[localVarOperationServerIndex]?.url;
|
|
3847
|
-
return (axios$
|
|
3880
|
+
return (axios$71, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$71, localVarOperationServerBasePath || basePath);
|
|
3848
3881
|
},
|
|
3849
3882
|
async projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options) {
|
|
3850
3883
|
const localVarAxiosArgs = await localVarAxiosParamCreator.projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options);
|
|
3851
3884
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
3852
3885
|
const localVarOperationServerBasePath = operationServerMap["KinematicsApi.projectJointPositionDirectionConstraint"]?.[localVarOperationServerIndex]?.url;
|
|
3853
|
-
return (axios$
|
|
3886
|
+
return (axios$72, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$72, localVarOperationServerBasePath || basePath);
|
|
3854
3887
|
}
|
|
3855
3888
|
};
|
|
3856
3889
|
};
|
|
3857
3890
|
/**
|
|
3858
3891
|
* KinematicsApi - factory interface
|
|
3859
3892
|
*/
|
|
3860
|
-
const KinematicsApiFactory = function(configuration, basePath, axios$
|
|
3893
|
+
const KinematicsApiFactory = function(configuration, basePath, axios$73) {
|
|
3861
3894
|
const localVarFp = KinematicsApiFp(configuration);
|
|
3862
3895
|
return {
|
|
3863
3896
|
configuredPoseInverse(cell, configuredPoseInverseRequest, options) {
|
|
3864
|
-
return localVarFp.configuredPoseInverse(cell, configuredPoseInverseRequest, options).then((request) => request(axios$
|
|
3897
|
+
return localVarFp.configuredPoseInverse(cell, configuredPoseInverseRequest, options).then((request) => request(axios$73, basePath));
|
|
3865
3898
|
},
|
|
3866
3899
|
convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options) {
|
|
3867
|
-
return localVarFp.convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options).then((request) => request(axios$
|
|
3900
|
+
return localVarFp.convertVendorConfiguredPose(cell, convertVendorConfiguredPoseRequest, options).then((request) => request(axios$73, basePath));
|
|
3868
3901
|
},
|
|
3869
3902
|
forwardKinematics(cell, forwardKinematicsRequest, options) {
|
|
3870
|
-
return localVarFp.forwardKinematics(cell, forwardKinematicsRequest, options).then((request) => request(axios$
|
|
3903
|
+
return localVarFp.forwardKinematics(cell, forwardKinematicsRequest, options).then((request) => request(axios$73, basePath));
|
|
3871
3904
|
},
|
|
3872
3905
|
getKinematicConfiguration(cell, getKinematicConfigurationRequest, options) {
|
|
3873
|
-
return localVarFp.getKinematicConfiguration(cell, getKinematicConfigurationRequest, options).then((request) => request(axios$
|
|
3906
|
+
return localVarFp.getKinematicConfiguration(cell, getKinematicConfigurationRequest, options).then((request) => request(axios$73, basePath));
|
|
3874
3907
|
},
|
|
3875
3908
|
inverseKinematics(cell, inverseKinematicsRequest, options) {
|
|
3876
|
-
return localVarFp.inverseKinematics(cell, inverseKinematicsRequest, options).then((request) => request(axios$
|
|
3909
|
+
return localVarFp.inverseKinematics(cell, inverseKinematicsRequest, options).then((request) => request(axios$73, basePath));
|
|
3877
3910
|
},
|
|
3878
3911
|
projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options) {
|
|
3879
|
-
return localVarFp.projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options).then((request) => request(axios$
|
|
3912
|
+
return localVarFp.projectJointPositionDirectionConstraint(cell, projectJointPositionDirectionConstraintRequest, options).then((request) => request(axios$73, basePath));
|
|
3880
3913
|
}
|
|
3881
3914
|
};
|
|
3882
3915
|
};
|
|
@@ -4067,45 +4100,45 @@ const LicenseApiFp = function(configuration) {
|
|
|
4067
4100
|
const localVarAxiosArgs = await localVarAxiosParamCreator.activateLicense(activateLicenseRequest, options);
|
|
4068
4101
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4069
4102
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.activateLicense"]?.[localVarOperationServerIndex]?.url;
|
|
4070
|
-
return (axios$
|
|
4103
|
+
return (axios$74, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$74, localVarOperationServerBasePath || basePath);
|
|
4071
4104
|
},
|
|
4072
4105
|
async deactivateLicense(options) {
|
|
4073
4106
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deactivateLicense(options);
|
|
4074
4107
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4075
4108
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.deactivateLicense"]?.[localVarOperationServerIndex]?.url;
|
|
4076
|
-
return (axios$
|
|
4109
|
+
return (axios$75, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$75, localVarOperationServerBasePath || basePath);
|
|
4077
4110
|
},
|
|
4078
4111
|
async getLicense(options) {
|
|
4079
4112
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getLicense(options);
|
|
4080
4113
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4081
4114
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.getLicense"]?.[localVarOperationServerIndex]?.url;
|
|
4082
|
-
return (axios$
|
|
4115
|
+
return (axios$76, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$76, localVarOperationServerBasePath || basePath);
|
|
4083
4116
|
},
|
|
4084
4117
|
async getLicenseStatus(options) {
|
|
4085
4118
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getLicenseStatus(options);
|
|
4086
4119
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4087
4120
|
const localVarOperationServerBasePath = operationServerMap["LicenseApi.getLicenseStatus"]?.[localVarOperationServerIndex]?.url;
|
|
4088
|
-
return (axios$
|
|
4121
|
+
return (axios$77, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$77, localVarOperationServerBasePath || basePath);
|
|
4089
4122
|
}
|
|
4090
4123
|
};
|
|
4091
4124
|
};
|
|
4092
4125
|
/**
|
|
4093
4126
|
* LicenseApi - factory interface
|
|
4094
4127
|
*/
|
|
4095
|
-
const LicenseApiFactory = function(configuration, basePath, axios$
|
|
4128
|
+
const LicenseApiFactory = function(configuration, basePath, axios$78) {
|
|
4096
4129
|
const localVarFp = LicenseApiFp(configuration);
|
|
4097
4130
|
return {
|
|
4098
4131
|
activateLicense(activateLicenseRequest, options) {
|
|
4099
|
-
return localVarFp.activateLicense(activateLicenseRequest, options).then((request) => request(axios$
|
|
4132
|
+
return localVarFp.activateLicense(activateLicenseRequest, options).then((request) => request(axios$78, basePath));
|
|
4100
4133
|
},
|
|
4101
4134
|
deactivateLicense(options) {
|
|
4102
|
-
return localVarFp.deactivateLicense(options).then((request) => request(axios$
|
|
4135
|
+
return localVarFp.deactivateLicense(options).then((request) => request(axios$78, basePath));
|
|
4103
4136
|
},
|
|
4104
4137
|
getLicense(options) {
|
|
4105
|
-
return localVarFp.getLicense(options).then((request) => request(axios$
|
|
4138
|
+
return localVarFp.getLicense(options).then((request) => request(axios$78, basePath));
|
|
4106
4139
|
},
|
|
4107
4140
|
getLicenseStatus(options) {
|
|
4108
|
-
return localVarFp.getLicenseStatus(options).then((request) => request(axios$
|
|
4141
|
+
return localVarFp.getLicenseStatus(options).then((request) => request(axios$78, basePath));
|
|
4109
4142
|
}
|
|
4110
4143
|
};
|
|
4111
4144
|
};
|
|
@@ -4255,36 +4288,36 @@ const MotionGroupApiFp = function(configuration) {
|
|
|
4255
4288
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options);
|
|
4256
4289
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4257
4290
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupApi.getCurrentMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
4258
|
-
return (axios$
|
|
4291
|
+
return (axios$79, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$79, localVarOperationServerBasePath || basePath);
|
|
4259
4292
|
},
|
|
4260
4293
|
async getMotionGroupDescription(cell, controller, motionGroup, options) {
|
|
4261
4294
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupDescription(cell, controller, motionGroup, options);
|
|
4262
4295
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4263
4296
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupApi.getMotionGroupDescription"]?.[localVarOperationServerIndex]?.url;
|
|
4264
|
-
return (axios$
|
|
4297
|
+
return (axios$80, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$80, localVarOperationServerBasePath || basePath);
|
|
4265
4298
|
},
|
|
4266
4299
|
async streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options) {
|
|
4267
4300
|
const localVarAxiosArgs = await localVarAxiosParamCreator.streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options);
|
|
4268
4301
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4269
4302
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupApi.streamMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
4270
|
-
return (axios$
|
|
4303
|
+
return (axios$81, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$81, localVarOperationServerBasePath || basePath);
|
|
4271
4304
|
}
|
|
4272
4305
|
};
|
|
4273
4306
|
};
|
|
4274
4307
|
/**
|
|
4275
4308
|
* MotionGroupApi - factory interface
|
|
4276
4309
|
*/
|
|
4277
|
-
const MotionGroupApiFactory = function(configuration, basePath, axios$
|
|
4310
|
+
const MotionGroupApiFactory = function(configuration, basePath, axios$82) {
|
|
4278
4311
|
const localVarFp = MotionGroupApiFp(configuration);
|
|
4279
4312
|
return {
|
|
4280
4313
|
getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options) {
|
|
4281
|
-
return localVarFp.getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options).then((request) => request(axios$
|
|
4314
|
+
return localVarFp.getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options).then((request) => request(axios$82, basePath));
|
|
4282
4315
|
},
|
|
4283
4316
|
getMotionGroupDescription(cell, controller, motionGroup, options) {
|
|
4284
|
-
return localVarFp.getMotionGroupDescription(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
4317
|
+
return localVarFp.getMotionGroupDescription(cell, controller, motionGroup, options).then((request) => request(axios$82, basePath));
|
|
4285
4318
|
},
|
|
4286
4319
|
streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options) {
|
|
4287
|
-
return localVarFp.streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options).then((request) => request(axios$
|
|
4320
|
+
return localVarFp.streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options).then((request) => request(axios$82, basePath));
|
|
4288
4321
|
}
|
|
4289
4322
|
};
|
|
4290
4323
|
};
|
|
@@ -4713,135 +4746,135 @@ const MotionGroupModelsApiFp = function(configuration) {
|
|
|
4713
4746
|
const localVarAxiosArgs = await localVarAxiosParamCreator.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options);
|
|
4714
4747
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4715
4748
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.copyMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
4716
|
-
return (axios$
|
|
4749
|
+
return (axios$83, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$83, localVarOperationServerBasePath || basePath);
|
|
4717
4750
|
},
|
|
4718
4751
|
async deleteExperimentalMotionGroupModel(motionGroupModel, options) {
|
|
4719
4752
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteExperimentalMotionGroupModel(motionGroupModel, options);
|
|
4720
4753
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4721
4754
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.deleteExperimentalMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
4722
|
-
return (axios$
|
|
4755
|
+
return (axios$84, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$84, localVarOperationServerBasePath || basePath);
|
|
4723
4756
|
},
|
|
4724
4757
|
async exportMotionGroupModel(motionGroupModel, options) {
|
|
4725
4758
|
const localVarAxiosArgs = await localVarAxiosParamCreator.exportMotionGroupModel(motionGroupModel, options);
|
|
4726
4759
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4727
4760
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.exportMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
4728
|
-
return (axios$
|
|
4761
|
+
return (axios$85, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$85, localVarOperationServerBasePath || basePath);
|
|
4729
4762
|
},
|
|
4730
4763
|
async getConfigurationForMotionGroup(motionGroupModel, options) {
|
|
4731
4764
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getConfigurationForMotionGroup(motionGroupModel, options);
|
|
4732
4765
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4733
4766
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getConfigurationForMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
4734
|
-
return (axios$
|
|
4767
|
+
return (axios$86, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$86, localVarOperationServerBasePath || basePath);
|
|
4735
4768
|
},
|
|
4736
4769
|
async getMotionGroupCollisionModel(motionGroupModel, options) {
|
|
4737
4770
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupCollisionModel(motionGroupModel, options);
|
|
4738
4771
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4739
4772
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupCollisionModel"]?.[localVarOperationServerIndex]?.url;
|
|
4740
|
-
return (axios$
|
|
4773
|
+
return (axios$87, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$87, localVarOperationServerBasePath || basePath);
|
|
4741
4774
|
},
|
|
4742
4775
|
async getMotionGroupDynamicModel(motionGroupModel, options) {
|
|
4743
4776
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupDynamicModel(motionGroupModel, options);
|
|
4744
4777
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4745
4778
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupDynamicModel"]?.[localVarOperationServerIndex]?.url;
|
|
4746
|
-
return (axios$
|
|
4779
|
+
return (axios$88, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$88, localVarOperationServerBasePath || basePath);
|
|
4747
4780
|
},
|
|
4748
4781
|
async getMotionGroupGlbModel(motionGroupModel, options) {
|
|
4749
4782
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupGlbModel(motionGroupModel, options);
|
|
4750
4783
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4751
4784
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupGlbModel"]?.[localVarOperationServerIndex]?.url;
|
|
4752
|
-
return (axios$
|
|
4785
|
+
return (axios$89, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$89, localVarOperationServerBasePath || basePath);
|
|
4753
4786
|
},
|
|
4754
4787
|
async getMotionGroupHomejoints(motionGroupModel, options) {
|
|
4755
4788
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupHomejoints(motionGroupModel, options);
|
|
4756
4789
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4757
4790
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupHomejoints"]?.[localVarOperationServerIndex]?.url;
|
|
4758
|
-
return (axios$
|
|
4791
|
+
return (axios$90, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$90, localVarOperationServerBasePath || basePath);
|
|
4759
4792
|
},
|
|
4760
4793
|
async getMotionGroupKinematicModel(motionGroupModel, options) {
|
|
4761
4794
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupKinematicModel(motionGroupModel, options);
|
|
4762
4795
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4763
4796
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupKinematicModel"]?.[localVarOperationServerIndex]?.url;
|
|
4764
|
-
return (axios$
|
|
4797
|
+
return (axios$91, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$91, localVarOperationServerBasePath || basePath);
|
|
4765
4798
|
},
|
|
4766
4799
|
async getMotionGroupLimitModel(motionGroupModel, options) {
|
|
4767
4800
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupLimitModel(motionGroupModel, options);
|
|
4768
4801
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4769
4802
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupLimitModel"]?.[localVarOperationServerIndex]?.url;
|
|
4770
|
-
return (axios$
|
|
4803
|
+
return (axios$92, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$92, localVarOperationServerBasePath || basePath);
|
|
4771
4804
|
},
|
|
4772
4805
|
async getMotionGroupModels(options) {
|
|
4773
4806
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupModels(options);
|
|
4774
4807
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4775
4808
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupModels"]?.[localVarOperationServerIndex]?.url;
|
|
4776
|
-
return (axios$
|
|
4809
|
+
return (axios$93, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$93, localVarOperationServerBasePath || basePath);
|
|
4777
4810
|
},
|
|
4778
4811
|
async getMotionGroupModelsCatalog(options) {
|
|
4779
4812
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupModelsCatalog(options);
|
|
4780
4813
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4781
4814
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupModelsCatalog"]?.[localVarOperationServerIndex]?.url;
|
|
4782
|
-
return (axios$
|
|
4815
|
+
return (axios$94, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$94, localVarOperationServerBasePath || basePath);
|
|
4783
4816
|
},
|
|
4784
4817
|
async getMotionGroupUsdModel(motionGroupModel, options) {
|
|
4785
4818
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupUsdModel(motionGroupModel, options);
|
|
4786
4819
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4787
4820
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.getMotionGroupUsdModel"]?.[localVarOperationServerIndex]?.url;
|
|
4788
|
-
return (axios$
|
|
4821
|
+
return (axios$95, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$95, localVarOperationServerBasePath || basePath);
|
|
4789
4822
|
},
|
|
4790
4823
|
async importMotionGroupModel(body, options) {
|
|
4791
4824
|
const localVarAxiosArgs = await localVarAxiosParamCreator.importMotionGroupModel(body, options);
|
|
4792
4825
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4793
4826
|
const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.importMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
|
|
4794
|
-
return (axios$
|
|
4827
|
+
return (axios$96, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$96, localVarOperationServerBasePath || basePath);
|
|
4795
4828
|
}
|
|
4796
4829
|
};
|
|
4797
4830
|
};
|
|
4798
4831
|
/**
|
|
4799
4832
|
* MotionGroupModelsApi - factory interface
|
|
4800
4833
|
*/
|
|
4801
|
-
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$
|
|
4834
|
+
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$97) {
|
|
4802
4835
|
const localVarFp = MotionGroupModelsApiFp(configuration);
|
|
4803
4836
|
return {
|
|
4804
4837
|
copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options) {
|
|
4805
|
-
return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(axios$
|
|
4838
|
+
return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(axios$97, basePath));
|
|
4806
4839
|
},
|
|
4807
4840
|
deleteExperimentalMotionGroupModel(motionGroupModel, options) {
|
|
4808
|
-
return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(axios$
|
|
4841
|
+
return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(axios$97, basePath));
|
|
4809
4842
|
},
|
|
4810
4843
|
exportMotionGroupModel(motionGroupModel, options) {
|
|
4811
|
-
return localVarFp.exportMotionGroupModel(motionGroupModel, options).then((request) => request(axios$
|
|
4844
|
+
return localVarFp.exportMotionGroupModel(motionGroupModel, options).then((request) => request(axios$97, basePath));
|
|
4812
4845
|
},
|
|
4813
4846
|
getConfigurationForMotionGroup(motionGroupModel, options) {
|
|
4814
|
-
return localVarFp.getConfigurationForMotionGroup(motionGroupModel, options).then((request) => request(axios$
|
|
4847
|
+
return localVarFp.getConfigurationForMotionGroup(motionGroupModel, options).then((request) => request(axios$97, basePath));
|
|
4815
4848
|
},
|
|
4816
4849
|
getMotionGroupCollisionModel(motionGroupModel, options) {
|
|
4817
|
-
return localVarFp.getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(axios$
|
|
4850
|
+
return localVarFp.getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(axios$97, basePath));
|
|
4818
4851
|
},
|
|
4819
4852
|
getMotionGroupDynamicModel(motionGroupModel, options) {
|
|
4820
|
-
return localVarFp.getMotionGroupDynamicModel(motionGroupModel, options).then((request) => request(axios$
|
|
4853
|
+
return localVarFp.getMotionGroupDynamicModel(motionGroupModel, options).then((request) => request(axios$97, basePath));
|
|
4821
4854
|
},
|
|
4822
4855
|
getMotionGroupGlbModel(motionGroupModel, options) {
|
|
4823
|
-
return localVarFp.getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(axios$
|
|
4856
|
+
return localVarFp.getMotionGroupGlbModel(motionGroupModel, options).then((request) => request(axios$97, basePath));
|
|
4824
4857
|
},
|
|
4825
4858
|
getMotionGroupHomejoints(motionGroupModel, options) {
|
|
4826
|
-
return localVarFp.getMotionGroupHomejoints(motionGroupModel, options).then((request) => request(axios$
|
|
4859
|
+
return localVarFp.getMotionGroupHomejoints(motionGroupModel, options).then((request) => request(axios$97, basePath));
|
|
4827
4860
|
},
|
|
4828
4861
|
getMotionGroupKinematicModel(motionGroupModel, options) {
|
|
4829
|
-
return localVarFp.getMotionGroupKinematicModel(motionGroupModel, options).then((request) => request(axios$
|
|
4862
|
+
return localVarFp.getMotionGroupKinematicModel(motionGroupModel, options).then((request) => request(axios$97, basePath));
|
|
4830
4863
|
},
|
|
4831
4864
|
getMotionGroupLimitModel(motionGroupModel, options) {
|
|
4832
|
-
return localVarFp.getMotionGroupLimitModel(motionGroupModel, options).then((request) => request(axios$
|
|
4865
|
+
return localVarFp.getMotionGroupLimitModel(motionGroupModel, options).then((request) => request(axios$97, basePath));
|
|
4833
4866
|
},
|
|
4834
4867
|
getMotionGroupModels(options) {
|
|
4835
|
-
return localVarFp.getMotionGroupModels(options).then((request) => request(axios$
|
|
4868
|
+
return localVarFp.getMotionGroupModels(options).then((request) => request(axios$97, basePath));
|
|
4836
4869
|
},
|
|
4837
4870
|
getMotionGroupModelsCatalog(options) {
|
|
4838
|
-
return localVarFp.getMotionGroupModelsCatalog(options).then((request) => request(axios$
|
|
4871
|
+
return localVarFp.getMotionGroupModelsCatalog(options).then((request) => request(axios$97, basePath));
|
|
4839
4872
|
},
|
|
4840
4873
|
getMotionGroupUsdModel(motionGroupModel, options) {
|
|
4841
|
-
return localVarFp.getMotionGroupUsdModel(motionGroupModel, options).then((request) => request(axios$
|
|
4874
|
+
return localVarFp.getMotionGroupUsdModel(motionGroupModel, options).then((request) => request(axios$97, basePath));
|
|
4842
4875
|
},
|
|
4843
4876
|
importMotionGroupModel(body, options) {
|
|
4844
|
-
return localVarFp.importMotionGroupModel(body, options).then((request) => request(axios$
|
|
4877
|
+
return localVarFp.importMotionGroupModel(body, options).then((request) => request(axios$97, basePath));
|
|
4845
4878
|
}
|
|
4846
4879
|
};
|
|
4847
4880
|
};
|
|
@@ -5106,45 +5139,45 @@ const NOVACloudApiFp = function(configuration) {
|
|
|
5106
5139
|
const localVarAxiosArgs = await localVarAxiosParamCreator.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options);
|
|
5107
5140
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5108
5141
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.connectToNovaCloud"]?.[localVarOperationServerIndex]?.url;
|
|
5109
|
-
return (axios$
|
|
5142
|
+
return (axios$98, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$98, localVarOperationServerBasePath || basePath);
|
|
5110
5143
|
},
|
|
5111
5144
|
async disconnectFromNovaCloud(completionTimeout, options) {
|
|
5112
5145
|
const localVarAxiosArgs = await localVarAxiosParamCreator.disconnectFromNovaCloud(completionTimeout, options);
|
|
5113
5146
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5114
5147
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.disconnectFromNovaCloud"]?.[localVarOperationServerIndex]?.url;
|
|
5115
|
-
return (axios$
|
|
5148
|
+
return (axios$99, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$99, localVarOperationServerBasePath || basePath);
|
|
5116
5149
|
},
|
|
5117
5150
|
async getCloudStatus(options) {
|
|
5118
5151
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCloudStatus(options);
|
|
5119
5152
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5120
5153
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.getCloudStatus"]?.[localVarOperationServerIndex]?.url;
|
|
5121
|
-
return (axios$
|
|
5154
|
+
return (axios$100, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$100, localVarOperationServerBasePath || basePath);
|
|
5122
5155
|
},
|
|
5123
5156
|
async getNovaCloudConfig(options) {
|
|
5124
5157
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNovaCloudConfig(options);
|
|
5125
5158
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5126
5159
|
const localVarOperationServerBasePath = operationServerMap["NOVACloudApi.getNovaCloudConfig"]?.[localVarOperationServerIndex]?.url;
|
|
5127
|
-
return (axios$
|
|
5160
|
+
return (axios$101, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$101, localVarOperationServerBasePath || basePath);
|
|
5128
5161
|
}
|
|
5129
5162
|
};
|
|
5130
5163
|
};
|
|
5131
5164
|
/**
|
|
5132
5165
|
* NOVACloudApi - factory interface
|
|
5133
5166
|
*/
|
|
5134
|
-
const NOVACloudApiFactory = function(configuration, basePath, axios$
|
|
5167
|
+
const NOVACloudApiFactory = function(configuration, basePath, axios$102) {
|
|
5135
5168
|
const localVarFp = NOVACloudApiFp(configuration);
|
|
5136
5169
|
return {
|
|
5137
5170
|
connectToNovaCloud(completionTimeout, cloudConnectionRequest, options) {
|
|
5138
|
-
return localVarFp.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options).then((request) => request(axios$
|
|
5171
|
+
return localVarFp.connectToNovaCloud(completionTimeout, cloudConnectionRequest, options).then((request) => request(axios$102, basePath));
|
|
5139
5172
|
},
|
|
5140
5173
|
disconnectFromNovaCloud(completionTimeout, options) {
|
|
5141
|
-
return localVarFp.disconnectFromNovaCloud(completionTimeout, options).then((request) => request(axios$
|
|
5174
|
+
return localVarFp.disconnectFromNovaCloud(completionTimeout, options).then((request) => request(axios$102, basePath));
|
|
5142
5175
|
},
|
|
5143
5176
|
getCloudStatus(options) {
|
|
5144
|
-
return localVarFp.getCloudStatus(options).then((request) => request(axios$
|
|
5177
|
+
return localVarFp.getCloudStatus(options).then((request) => request(axios$102, basePath));
|
|
5145
5178
|
},
|
|
5146
5179
|
getNovaCloudConfig(options) {
|
|
5147
|
-
return localVarFp.getNovaCloudConfig(options).then((request) => request(axios$
|
|
5180
|
+
return localVarFp.getNovaCloudConfig(options).then((request) => request(axios$102, basePath));
|
|
5148
5181
|
}
|
|
5149
5182
|
};
|
|
5150
5183
|
};
|
|
@@ -5319,45 +5352,45 @@ const ProgramApiFp = function(configuration) {
|
|
|
5319
5352
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getProgram(cell, program, options);
|
|
5320
5353
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5321
5354
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.getProgram"]?.[localVarOperationServerIndex]?.url;
|
|
5322
|
-
return (axios$
|
|
5355
|
+
return (axios$103, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$103, localVarOperationServerBasePath || basePath);
|
|
5323
5356
|
},
|
|
5324
5357
|
async listPrograms(cell, options) {
|
|
5325
5358
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listPrograms(cell, options);
|
|
5326
5359
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5327
5360
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.listPrograms"]?.[localVarOperationServerIndex]?.url;
|
|
5328
|
-
return (axios$
|
|
5361
|
+
return (axios$104, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$104, localVarOperationServerBasePath || basePath);
|
|
5329
5362
|
},
|
|
5330
5363
|
async startProgram(cell, program, programStartRequest, options) {
|
|
5331
5364
|
const localVarAxiosArgs = await localVarAxiosParamCreator.startProgram(cell, program, programStartRequest, options);
|
|
5332
5365
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5333
5366
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.startProgram"]?.[localVarOperationServerIndex]?.url;
|
|
5334
|
-
return (axios$
|
|
5367
|
+
return (axios$105, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$105, localVarOperationServerBasePath || basePath);
|
|
5335
5368
|
},
|
|
5336
5369
|
async stopProgram(cell, program, options) {
|
|
5337
5370
|
const localVarAxiosArgs = await localVarAxiosParamCreator.stopProgram(cell, program, options);
|
|
5338
5371
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5339
5372
|
const localVarOperationServerBasePath = operationServerMap["ProgramApi.stopProgram"]?.[localVarOperationServerIndex]?.url;
|
|
5340
|
-
return (axios$
|
|
5373
|
+
return (axios$106, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$106, localVarOperationServerBasePath || basePath);
|
|
5341
5374
|
}
|
|
5342
5375
|
};
|
|
5343
5376
|
};
|
|
5344
5377
|
/**
|
|
5345
5378
|
* ProgramApi - factory interface
|
|
5346
5379
|
*/
|
|
5347
|
-
const ProgramApiFactory = function(configuration, basePath, axios$
|
|
5380
|
+
const ProgramApiFactory = function(configuration, basePath, axios$107) {
|
|
5348
5381
|
const localVarFp = ProgramApiFp(configuration);
|
|
5349
5382
|
return {
|
|
5350
5383
|
getProgram(cell, program, options) {
|
|
5351
|
-
return localVarFp.getProgram(cell, program, options).then((request) => request(axios$
|
|
5384
|
+
return localVarFp.getProgram(cell, program, options).then((request) => request(axios$107, basePath));
|
|
5352
5385
|
},
|
|
5353
5386
|
listPrograms(cell, options) {
|
|
5354
|
-
return localVarFp.listPrograms(cell, options).then((request) => request(axios$
|
|
5387
|
+
return localVarFp.listPrograms(cell, options).then((request) => request(axios$107, basePath));
|
|
5355
5388
|
},
|
|
5356
5389
|
startProgram(cell, program, programStartRequest, options) {
|
|
5357
|
-
return localVarFp.startProgram(cell, program, programStartRequest, options).then((request) => request(axios$
|
|
5390
|
+
return localVarFp.startProgram(cell, program, programStartRequest, options).then((request) => request(axios$107, basePath));
|
|
5358
5391
|
},
|
|
5359
5392
|
stopProgram(cell, program, options) {
|
|
5360
|
-
return localVarFp.stopProgram(cell, program, options).then((request) => request(axios$
|
|
5393
|
+
return localVarFp.stopProgram(cell, program, options).then((request) => request(axios$107, basePath));
|
|
5361
5394
|
}
|
|
5362
5395
|
};
|
|
5363
5396
|
};
|
|
@@ -5478,27 +5511,27 @@ const RobotConfigurationsApiFp = function(configuration) {
|
|
|
5478
5511
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options);
|
|
5479
5512
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5480
5513
|
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getControllerConfigFromArpScan"]?.[localVarOperationServerIndex]?.url;
|
|
5481
|
-
return (axios$
|
|
5514
|
+
return (axios$108, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$108, localVarOperationServerBasePath || basePath);
|
|
5482
5515
|
},
|
|
5483
5516
|
async getRobotConfigurations(options) {
|
|
5484
5517
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getRobotConfigurations(options);
|
|
5485
5518
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5486
5519
|
const localVarOperationServerBasePath = operationServerMap["RobotConfigurationsApi.getRobotConfigurations"]?.[localVarOperationServerIndex]?.url;
|
|
5487
|
-
return (axios$
|
|
5520
|
+
return (axios$109, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$109, localVarOperationServerBasePath || basePath);
|
|
5488
5521
|
}
|
|
5489
5522
|
};
|
|
5490
5523
|
};
|
|
5491
5524
|
/**
|
|
5492
5525
|
* RobotConfigurationsApi - factory interface
|
|
5493
5526
|
*/
|
|
5494
|
-
const RobotConfigurationsApiFactory = function(configuration, basePath, axios$
|
|
5527
|
+
const RobotConfigurationsApiFactory = function(configuration, basePath, axios$110) {
|
|
5495
5528
|
const localVarFp = RobotConfigurationsApiFp(configuration);
|
|
5496
5529
|
return {
|
|
5497
5530
|
getControllerConfigFromArpScan(robotControllerConfigurationRequest, options) {
|
|
5498
|
-
return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios$
|
|
5531
|
+
return localVarFp.getControllerConfigFromArpScan(robotControllerConfigurationRequest, options).then((request) => request(axios$110, basePath));
|
|
5499
5532
|
},
|
|
5500
5533
|
getRobotConfigurations(options) {
|
|
5501
|
-
return localVarFp.getRobotConfigurations(options).then((request) => request(axios$
|
|
5534
|
+
return localVarFp.getRobotConfigurations(options).then((request) => request(axios$110, basePath));
|
|
5502
5535
|
}
|
|
5503
5536
|
};
|
|
5504
5537
|
};
|
|
@@ -5564,16 +5597,16 @@ const SessionApiFp = function(configuration) {
|
|
|
5564
5597
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSession(options);
|
|
5565
5598
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
5566
5599
|
const localVarOperationServerBasePath = operationServerMap["SessionApi.getSession"]?.[localVarOperationServerIndex]?.url;
|
|
5567
|
-
return (axios$
|
|
5600
|
+
return (axios$111, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$111, localVarOperationServerBasePath || basePath);
|
|
5568
5601
|
} };
|
|
5569
5602
|
};
|
|
5570
5603
|
/**
|
|
5571
5604
|
* SessionApi - factory interface
|
|
5572
5605
|
*/
|
|
5573
|
-
const SessionApiFactory = function(configuration, basePath, axios$
|
|
5606
|
+
const SessionApiFactory = function(configuration, basePath, axios$112) {
|
|
5574
5607
|
const localVarFp = SessionApiFp(configuration);
|
|
5575
5608
|
return { getSession(options) {
|
|
5576
|
-
return localVarFp.getSession(options).then((request) => request(axios$
|
|
5609
|
+
return localVarFp.getSession(options).then((request) => request(axios$112, basePath));
|
|
5577
5610
|
} };
|
|
5578
5611
|
};
|
|
5579
5612
|
/**
|
|
@@ -6015,144 +6048,144 @@ const StoreCollisionComponentsApiFp = function(configuration) {
|
|
|
6015
6048
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollider(cell, collider, options);
|
|
6016
6049
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6017
6050
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollider"]?.[localVarOperationServerIndex]?.url;
|
|
6018
|
-
return (axios$
|
|
6051
|
+
return (axios$113, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$113, localVarOperationServerBasePath || basePath);
|
|
6019
6052
|
},
|
|
6020
6053
|
async deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
6021
6054
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionLinkChain(cell, linkChain, options);
|
|
6022
6055
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6023
6056
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
6024
|
-
return (axios$
|
|
6057
|
+
return (axios$114, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$114, localVarOperationServerBasePath || basePath);
|
|
6025
6058
|
},
|
|
6026
6059
|
async deleteStoredCollisionTool(cell, tool, options) {
|
|
6027
6060
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionTool(cell, tool, options);
|
|
6028
6061
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6029
6062
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.deleteStoredCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
6030
|
-
return (axios$
|
|
6063
|
+
return (axios$115, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$115, localVarOperationServerBasePath || basePath);
|
|
6031
6064
|
},
|
|
6032
6065
|
async getStoredCollider(cell, collider, options) {
|
|
6033
6066
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollider(cell, collider, options);
|
|
6034
6067
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6035
6068
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollider"]?.[localVarOperationServerIndex]?.url;
|
|
6036
|
-
return (axios$
|
|
6069
|
+
return (axios$116, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$116, localVarOperationServerBasePath || basePath);
|
|
6037
6070
|
},
|
|
6038
6071
|
async getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
6039
6072
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionLinkChain(cell, linkChain, options);
|
|
6040
6073
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6041
6074
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
6042
|
-
return (axios$
|
|
6075
|
+
return (axios$117, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$117, localVarOperationServerBasePath || basePath);
|
|
6043
6076
|
},
|
|
6044
6077
|
async getStoredCollisionTool(cell, tool, options) {
|
|
6045
6078
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionTool(cell, tool, options);
|
|
6046
6079
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6047
6080
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.getStoredCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
6048
|
-
return (axios$
|
|
6081
|
+
return (axios$118, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$118, localVarOperationServerBasePath || basePath);
|
|
6049
6082
|
},
|
|
6050
6083
|
async listCollisionLinkChains(cell, options) {
|
|
6051
6084
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCollisionLinkChains(cell, options);
|
|
6052
6085
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6053
6086
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listCollisionLinkChains"]?.[localVarOperationServerIndex]?.url;
|
|
6054
|
-
return (axios$
|
|
6087
|
+
return (axios$119, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$119, localVarOperationServerBasePath || basePath);
|
|
6055
6088
|
},
|
|
6056
6089
|
async listCollisionLinkChainsKeys(cell, options) {
|
|
6057
6090
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listCollisionLinkChainsKeys(cell, options);
|
|
6058
6091
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6059
6092
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listCollisionLinkChainsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
6060
|
-
return (axios$
|
|
6093
|
+
return (axios$120, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$120, localVarOperationServerBasePath || basePath);
|
|
6061
6094
|
},
|
|
6062
6095
|
async listStoredColliders(cell, options) {
|
|
6063
6096
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredColliders(cell, options);
|
|
6064
6097
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6065
6098
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredColliders"]?.[localVarOperationServerIndex]?.url;
|
|
6066
|
-
return (axios$
|
|
6099
|
+
return (axios$121, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$121, localVarOperationServerBasePath || basePath);
|
|
6067
6100
|
},
|
|
6068
6101
|
async listStoredCollidersKeys(cell, options) {
|
|
6069
6102
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollidersKeys(cell, options);
|
|
6070
6103
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6071
6104
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollidersKeys"]?.[localVarOperationServerIndex]?.url;
|
|
6072
|
-
return (axios$
|
|
6105
|
+
return (axios$122, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$122, localVarOperationServerBasePath || basePath);
|
|
6073
6106
|
},
|
|
6074
6107
|
async listStoredCollisionTools(cell, options) {
|
|
6075
6108
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionTools(cell, options);
|
|
6076
6109
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6077
6110
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollisionTools"]?.[localVarOperationServerIndex]?.url;
|
|
6078
|
-
return (axios$
|
|
6111
|
+
return (axios$123, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$123, localVarOperationServerBasePath || basePath);
|
|
6079
6112
|
},
|
|
6080
6113
|
async listStoredCollisionToolsKeys(cell, options) {
|
|
6081
6114
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionToolsKeys(cell, options);
|
|
6082
6115
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6083
6116
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.listStoredCollisionToolsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
6084
|
-
return (axios$
|
|
6117
|
+
return (axios$124, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$124, localVarOperationServerBasePath || basePath);
|
|
6085
6118
|
},
|
|
6086
6119
|
async storeCollider(cell, collider, collider2, options) {
|
|
6087
6120
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollider(cell, collider, collider2, options);
|
|
6088
6121
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6089
6122
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollider"]?.[localVarOperationServerIndex]?.url;
|
|
6090
|
-
return (axios$
|
|
6123
|
+
return (axios$125, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$125, localVarOperationServerBasePath || basePath);
|
|
6091
6124
|
},
|
|
6092
6125
|
async storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
6093
6126
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionLinkChain(cell, linkChain, collider, options);
|
|
6094
6127
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6095
6128
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollisionLinkChain"]?.[localVarOperationServerIndex]?.url;
|
|
6096
|
-
return (axios$
|
|
6129
|
+
return (axios$126, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$126, localVarOperationServerBasePath || basePath);
|
|
6097
6130
|
},
|
|
6098
6131
|
async storeCollisionTool(cell, tool, requestBody, options) {
|
|
6099
6132
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionTool(cell, tool, requestBody, options);
|
|
6100
6133
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6101
6134
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionComponentsApi.storeCollisionTool"]?.[localVarOperationServerIndex]?.url;
|
|
6102
|
-
return (axios$
|
|
6135
|
+
return (axios$127, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$127, localVarOperationServerBasePath || basePath);
|
|
6103
6136
|
}
|
|
6104
6137
|
};
|
|
6105
6138
|
};
|
|
6106
6139
|
/**
|
|
6107
6140
|
* StoreCollisionComponentsApi - factory interface
|
|
6108
6141
|
*/
|
|
6109
|
-
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$
|
|
6142
|
+
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$128) {
|
|
6110
6143
|
const localVarFp = StoreCollisionComponentsApiFp(configuration);
|
|
6111
6144
|
return {
|
|
6112
6145
|
deleteStoredCollider(cell, collider, options) {
|
|
6113
|
-
return localVarFp.deleteStoredCollider(cell, collider, options).then((request) => request(axios$
|
|
6146
|
+
return localVarFp.deleteStoredCollider(cell, collider, options).then((request) => request(axios$128, basePath));
|
|
6114
6147
|
},
|
|
6115
6148
|
deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
6116
|
-
return localVarFp.deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$
|
|
6149
|
+
return localVarFp.deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$128, basePath));
|
|
6117
6150
|
},
|
|
6118
6151
|
deleteStoredCollisionTool(cell, tool, options) {
|
|
6119
|
-
return localVarFp.deleteStoredCollisionTool(cell, tool, options).then((request) => request(axios$
|
|
6152
|
+
return localVarFp.deleteStoredCollisionTool(cell, tool, options).then((request) => request(axios$128, basePath));
|
|
6120
6153
|
},
|
|
6121
6154
|
getStoredCollider(cell, collider, options) {
|
|
6122
|
-
return localVarFp.getStoredCollider(cell, collider, options).then((request) => request(axios$
|
|
6155
|
+
return localVarFp.getStoredCollider(cell, collider, options).then((request) => request(axios$128, basePath));
|
|
6123
6156
|
},
|
|
6124
6157
|
getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
6125
|
-
return localVarFp.getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$
|
|
6158
|
+
return localVarFp.getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(axios$128, basePath));
|
|
6126
6159
|
},
|
|
6127
6160
|
getStoredCollisionTool(cell, tool, options) {
|
|
6128
|
-
return localVarFp.getStoredCollisionTool(cell, tool, options).then((request) => request(axios$
|
|
6161
|
+
return localVarFp.getStoredCollisionTool(cell, tool, options).then((request) => request(axios$128, basePath));
|
|
6129
6162
|
},
|
|
6130
6163
|
listCollisionLinkChains(cell, options) {
|
|
6131
|
-
return localVarFp.listCollisionLinkChains(cell, options).then((request) => request(axios$
|
|
6164
|
+
return localVarFp.listCollisionLinkChains(cell, options).then((request) => request(axios$128, basePath));
|
|
6132
6165
|
},
|
|
6133
6166
|
listCollisionLinkChainsKeys(cell, options) {
|
|
6134
|
-
return localVarFp.listCollisionLinkChainsKeys(cell, options).then((request) => request(axios$
|
|
6167
|
+
return localVarFp.listCollisionLinkChainsKeys(cell, options).then((request) => request(axios$128, basePath));
|
|
6135
6168
|
},
|
|
6136
6169
|
listStoredColliders(cell, options) {
|
|
6137
|
-
return localVarFp.listStoredColliders(cell, options).then((request) => request(axios$
|
|
6170
|
+
return localVarFp.listStoredColliders(cell, options).then((request) => request(axios$128, basePath));
|
|
6138
6171
|
},
|
|
6139
6172
|
listStoredCollidersKeys(cell, options) {
|
|
6140
|
-
return localVarFp.listStoredCollidersKeys(cell, options).then((request) => request(axios$
|
|
6173
|
+
return localVarFp.listStoredCollidersKeys(cell, options).then((request) => request(axios$128, basePath));
|
|
6141
6174
|
},
|
|
6142
6175
|
listStoredCollisionTools(cell, options) {
|
|
6143
|
-
return localVarFp.listStoredCollisionTools(cell, options).then((request) => request(axios$
|
|
6176
|
+
return localVarFp.listStoredCollisionTools(cell, options).then((request) => request(axios$128, basePath));
|
|
6144
6177
|
},
|
|
6145
6178
|
listStoredCollisionToolsKeys(cell, options) {
|
|
6146
|
-
return localVarFp.listStoredCollisionToolsKeys(cell, options).then((request) => request(axios$
|
|
6179
|
+
return localVarFp.listStoredCollisionToolsKeys(cell, options).then((request) => request(axios$128, basePath));
|
|
6147
6180
|
},
|
|
6148
6181
|
storeCollider(cell, collider, collider2, options) {
|
|
6149
|
-
return localVarFp.storeCollider(cell, collider, collider2, options).then((request) => request(axios$
|
|
6182
|
+
return localVarFp.storeCollider(cell, collider, collider2, options).then((request) => request(axios$128, basePath));
|
|
6150
6183
|
},
|
|
6151
6184
|
storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
6152
|
-
return localVarFp.storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(axios$
|
|
6185
|
+
return localVarFp.storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(axios$128, basePath));
|
|
6153
6186
|
},
|
|
6154
6187
|
storeCollisionTool(cell, tool, requestBody, options) {
|
|
6155
|
-
return localVarFp.storeCollisionTool(cell, tool, requestBody, options).then((request) => request(axios$
|
|
6188
|
+
return localVarFp.storeCollisionTool(cell, tool, requestBody, options).then((request) => request(axios$128, basePath));
|
|
6156
6189
|
}
|
|
6157
6190
|
};
|
|
6158
6191
|
};
|
|
@@ -6476,54 +6509,54 @@ const StoreCollisionSetupsApiFp = function(configuration) {
|
|
|
6476
6509
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteStoredCollisionSetup(cell, setup, options);
|
|
6477
6510
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6478
6511
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.deleteStoredCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
6479
|
-
return (axios$
|
|
6512
|
+
return (axios$129, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$129, localVarOperationServerBasePath || basePath);
|
|
6480
6513
|
},
|
|
6481
6514
|
async getStoredCollisionSetup(cell, setup, options) {
|
|
6482
6515
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getStoredCollisionSetup(cell, setup, options);
|
|
6483
6516
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6484
6517
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.getStoredCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
6485
|
-
return (axios$
|
|
6518
|
+
return (axios$130, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$130, localVarOperationServerBasePath || basePath);
|
|
6486
6519
|
},
|
|
6487
6520
|
async listStoredCollisionSetups(cell, options) {
|
|
6488
6521
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionSetups(cell, options);
|
|
6489
6522
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6490
6523
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.listStoredCollisionSetups"]?.[localVarOperationServerIndex]?.url;
|
|
6491
|
-
return (axios$
|
|
6524
|
+
return (axios$131, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$131, localVarOperationServerBasePath || basePath);
|
|
6492
6525
|
},
|
|
6493
6526
|
async listStoredCollisionSetupsKeys(cell, options) {
|
|
6494
6527
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listStoredCollisionSetupsKeys(cell, options);
|
|
6495
6528
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6496
6529
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.listStoredCollisionSetupsKeys"]?.[localVarOperationServerIndex]?.url;
|
|
6497
|
-
return (axios$
|
|
6530
|
+
return (axios$132, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$132, localVarOperationServerBasePath || basePath);
|
|
6498
6531
|
},
|
|
6499
6532
|
async storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
6500
6533
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeCollisionSetup(cell, setup, collisionSetup, options);
|
|
6501
6534
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6502
6535
|
const localVarOperationServerBasePath = operationServerMap["StoreCollisionSetupsApi.storeCollisionSetup"]?.[localVarOperationServerIndex]?.url;
|
|
6503
|
-
return (axios$
|
|
6536
|
+
return (axios$133, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$133, localVarOperationServerBasePath || basePath);
|
|
6504
6537
|
}
|
|
6505
6538
|
};
|
|
6506
6539
|
};
|
|
6507
6540
|
/**
|
|
6508
6541
|
* StoreCollisionSetupsApi - factory interface
|
|
6509
6542
|
*/
|
|
6510
|
-
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$
|
|
6543
|
+
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$134) {
|
|
6511
6544
|
const localVarFp = StoreCollisionSetupsApiFp(configuration);
|
|
6512
6545
|
return {
|
|
6513
6546
|
deleteStoredCollisionSetup(cell, setup, options) {
|
|
6514
|
-
return localVarFp.deleteStoredCollisionSetup(cell, setup, options).then((request) => request(axios$
|
|
6547
|
+
return localVarFp.deleteStoredCollisionSetup(cell, setup, options).then((request) => request(axios$134, basePath));
|
|
6515
6548
|
},
|
|
6516
6549
|
getStoredCollisionSetup(cell, setup, options) {
|
|
6517
|
-
return localVarFp.getStoredCollisionSetup(cell, setup, options).then((request) => request(axios$
|
|
6550
|
+
return localVarFp.getStoredCollisionSetup(cell, setup, options).then((request) => request(axios$134, basePath));
|
|
6518
6551
|
},
|
|
6519
6552
|
listStoredCollisionSetups(cell, options) {
|
|
6520
|
-
return localVarFp.listStoredCollisionSetups(cell, options).then((request) => request(axios$
|
|
6553
|
+
return localVarFp.listStoredCollisionSetups(cell, options).then((request) => request(axios$134, basePath));
|
|
6521
6554
|
},
|
|
6522
6555
|
listStoredCollisionSetupsKeys(cell, options) {
|
|
6523
|
-
return localVarFp.listStoredCollisionSetupsKeys(cell, options).then((request) => request(axios$
|
|
6556
|
+
return localVarFp.listStoredCollisionSetupsKeys(cell, options).then((request) => request(axios$134, basePath));
|
|
6524
6557
|
},
|
|
6525
6558
|
storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
6526
|
-
return localVarFp.storeCollisionSetup(cell, setup, collisionSetup, options).then((request) => request(axios$
|
|
6559
|
+
return localVarFp.storeCollisionSetup(cell, setup, collisionSetup, options).then((request) => request(axios$134, basePath));
|
|
6527
6560
|
}
|
|
6528
6561
|
};
|
|
6529
6562
|
};
|
|
@@ -6768,63 +6801,63 @@ const StoreObjectApiFp = function(configuration) {
|
|
|
6768
6801
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearAllObjects(cell, options);
|
|
6769
6802
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6770
6803
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.clearAllObjects"]?.[localVarOperationServerIndex]?.url;
|
|
6771
|
-
return (axios$
|
|
6804
|
+
return (axios$135, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$135, localVarOperationServerBasePath || basePath);
|
|
6772
6805
|
},
|
|
6773
6806
|
async deleteObject(cell, key, options) {
|
|
6774
6807
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteObject(cell, key, options);
|
|
6775
6808
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6776
6809
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.deleteObject"]?.[localVarOperationServerIndex]?.url;
|
|
6777
|
-
return (axios$
|
|
6810
|
+
return (axios$136, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$136, localVarOperationServerBasePath || basePath);
|
|
6778
6811
|
},
|
|
6779
6812
|
async getObject(cell, key, options) {
|
|
6780
6813
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getObject(cell, key, options);
|
|
6781
6814
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6782
6815
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.getObject"]?.[localVarOperationServerIndex]?.url;
|
|
6783
|
-
return (axios$
|
|
6816
|
+
return (axios$137, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$137, localVarOperationServerBasePath || basePath);
|
|
6784
6817
|
},
|
|
6785
6818
|
async getObjectMetadata(cell, key, options) {
|
|
6786
6819
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getObjectMetadata(cell, key, options);
|
|
6787
6820
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6788
6821
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.getObjectMetadata"]?.[localVarOperationServerIndex]?.url;
|
|
6789
|
-
return (axios$
|
|
6822
|
+
return (axios$138, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$138, localVarOperationServerBasePath || basePath);
|
|
6790
6823
|
},
|
|
6791
6824
|
async listAllObjectKeys(cell, options) {
|
|
6792
6825
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listAllObjectKeys(cell, options);
|
|
6793
6826
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6794
6827
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.listAllObjectKeys"]?.[localVarOperationServerIndex]?.url;
|
|
6795
|
-
return (axios$
|
|
6828
|
+
return (axios$139, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$139, localVarOperationServerBasePath || basePath);
|
|
6796
6829
|
},
|
|
6797
6830
|
async storeObject(cell, key, xMetadata, anyValue, options) {
|
|
6798
6831
|
const localVarAxiosArgs = await localVarAxiosParamCreator.storeObject(cell, key, xMetadata, anyValue, options);
|
|
6799
6832
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6800
6833
|
const localVarOperationServerBasePath = operationServerMap["StoreObjectApi.storeObject"]?.[localVarOperationServerIndex]?.url;
|
|
6801
|
-
return (axios$
|
|
6834
|
+
return (axios$140, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$140, localVarOperationServerBasePath || basePath);
|
|
6802
6835
|
}
|
|
6803
6836
|
};
|
|
6804
6837
|
};
|
|
6805
6838
|
/**
|
|
6806
6839
|
* StoreObjectApi - factory interface
|
|
6807
6840
|
*/
|
|
6808
|
-
const StoreObjectApiFactory = function(configuration, basePath, axios$
|
|
6841
|
+
const StoreObjectApiFactory = function(configuration, basePath, axios$141) {
|
|
6809
6842
|
const localVarFp = StoreObjectApiFp(configuration);
|
|
6810
6843
|
return {
|
|
6811
6844
|
clearAllObjects(cell, options) {
|
|
6812
|
-
return localVarFp.clearAllObjects(cell, options).then((request) => request(axios$
|
|
6845
|
+
return localVarFp.clearAllObjects(cell, options).then((request) => request(axios$141, basePath));
|
|
6813
6846
|
},
|
|
6814
6847
|
deleteObject(cell, key, options) {
|
|
6815
|
-
return localVarFp.deleteObject(cell, key, options).then((request) => request(axios$
|
|
6848
|
+
return localVarFp.deleteObject(cell, key, options).then((request) => request(axios$141, basePath));
|
|
6816
6849
|
},
|
|
6817
6850
|
getObject(cell, key, options) {
|
|
6818
|
-
return localVarFp.getObject(cell, key, options).then((request) => request(axios$
|
|
6851
|
+
return localVarFp.getObject(cell, key, options).then((request) => request(axios$141, basePath));
|
|
6819
6852
|
},
|
|
6820
6853
|
getObjectMetadata(cell, key, options) {
|
|
6821
|
-
return localVarFp.getObjectMetadata(cell, key, options).then((request) => request(axios$
|
|
6854
|
+
return localVarFp.getObjectMetadata(cell, key, options).then((request) => request(axios$141, basePath));
|
|
6822
6855
|
},
|
|
6823
6856
|
listAllObjectKeys(cell, options) {
|
|
6824
|
-
return localVarFp.listAllObjectKeys(cell, options).then((request) => request(axios$
|
|
6857
|
+
return localVarFp.listAllObjectKeys(cell, options).then((request) => request(axios$141, basePath));
|
|
6825
6858
|
},
|
|
6826
6859
|
storeObject(cell, key, xMetadata, anyValue, options) {
|
|
6827
|
-
return localVarFp.storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(axios$
|
|
6860
|
+
return localVarFp.storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(axios$141, basePath));
|
|
6828
6861
|
}
|
|
6829
6862
|
};
|
|
6830
6863
|
};
|
|
@@ -6957,7 +6990,9 @@ const SystemApiAxiosParamCreator = function(configuration) {
|
|
|
6957
6990
|
};
|
|
6958
6991
|
},
|
|
6959
6992
|
getArpScan: async (_interface, cidr, timeout, options = {}) => {
|
|
6960
|
-
|
|
6993
|
+
assertParamExists("getArpScan", "_interface", _interface);
|
|
6994
|
+
assertParamExists("getArpScan", "cidr", cidr);
|
|
6995
|
+
const localVarUrlObj = new URL(`/system/network/arp-scan`, DUMMY_BASE_URL);
|
|
6961
6996
|
let baseOptions;
|
|
6962
6997
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
6963
6998
|
const localVarRequestOptions = {
|
|
@@ -7034,7 +7069,7 @@ const SystemApiAxiosParamCreator = function(configuration) {
|
|
|
7034
7069
|
};
|
|
7035
7070
|
},
|
|
7036
7071
|
getNetworkInterfaces: async (options = {}) => {
|
|
7037
|
-
const localVarUrlObj = new URL(`/
|
|
7072
|
+
const localVarUrlObj = new URL(`/system/network/interfaces`, DUMMY_BASE_URL);
|
|
7038
7073
|
let baseOptions;
|
|
7039
7074
|
if (configuration) baseOptions = configuration.baseOptions;
|
|
7040
7075
|
const localVarRequestOptions = {
|
|
@@ -7220,117 +7255,117 @@ const SystemApiFp = function(configuration) {
|
|
|
7220
7255
|
const localVarAxiosArgs = await localVarAxiosParamCreator.backupConfiguration(resources, metadata, options);
|
|
7221
7256
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7222
7257
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.backupConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
7223
|
-
return (axios$
|
|
7258
|
+
return (axios$142, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$142, localVarOperationServerBasePath || basePath);
|
|
7224
7259
|
},
|
|
7225
7260
|
async checkNovaVersionUpdate(channel, options) {
|
|
7226
7261
|
const localVarAxiosArgs = await localVarAxiosParamCreator.checkNovaVersionUpdate(channel, options);
|
|
7227
7262
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7228
7263
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.checkNovaVersionUpdate"]?.[localVarOperationServerIndex]?.url;
|
|
7229
|
-
return (axios$
|
|
7264
|
+
return (axios$143, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$143, localVarOperationServerBasePath || basePath);
|
|
7230
7265
|
},
|
|
7231
7266
|
async getArpScan(_interface, cidr, timeout, options) {
|
|
7232
7267
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getArpScan(_interface, cidr, timeout, options);
|
|
7233
7268
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7234
7269
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getArpScan"]?.[localVarOperationServerIndex]?.url;
|
|
7235
|
-
return (axios$
|
|
7270
|
+
return (axios$144, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$144, localVarOperationServerBasePath || basePath);
|
|
7236
7271
|
},
|
|
7237
7272
|
async getConfigurationBackupStatus(operationId, options) {
|
|
7238
7273
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getConfigurationBackupStatus(operationId, options);
|
|
7239
7274
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7240
7275
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getConfigurationBackupStatus"]?.[localVarOperationServerIndex]?.url;
|
|
7241
|
-
return (axios$
|
|
7276
|
+
return (axios$145, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$145, localVarOperationServerBasePath || basePath);
|
|
7242
7277
|
},
|
|
7243
7278
|
async getDiagnosePackage(options) {
|
|
7244
7279
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getDiagnosePackage(options);
|
|
7245
7280
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7246
7281
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getDiagnosePackage"]?.[localVarOperationServerIndex]?.url;
|
|
7247
|
-
return (axios$
|
|
7282
|
+
return (axios$146, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$146, localVarOperationServerBasePath || basePath);
|
|
7248
7283
|
},
|
|
7249
7284
|
async getNetworkInterfaces(options) {
|
|
7250
7285
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkInterfaces(options);
|
|
7251
7286
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7252
7287
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getNetworkInterfaces"]?.[localVarOperationServerIndex]?.url;
|
|
7253
|
-
return (axios$
|
|
7288
|
+
return (axios$147, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$147, localVarOperationServerBasePath || basePath);
|
|
7254
7289
|
},
|
|
7255
7290
|
async getNetworkState(options) {
|
|
7256
7291
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getNetworkState(options);
|
|
7257
7292
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7258
7293
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getNetworkState"]?.[localVarOperationServerIndex]?.url;
|
|
7259
|
-
return (axios$
|
|
7294
|
+
return (axios$148, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$148, localVarOperationServerBasePath || basePath);
|
|
7260
7295
|
},
|
|
7261
7296
|
async getSystemStatus(options) {
|
|
7262
7297
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSystemStatus(options);
|
|
7263
7298
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7264
7299
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getSystemStatus"]?.[localVarOperationServerIndex]?.url;
|
|
7265
|
-
return (axios$
|
|
7300
|
+
return (axios$149, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$149, localVarOperationServerBasePath || basePath);
|
|
7266
7301
|
},
|
|
7267
7302
|
async getSystemVersion(options) {
|
|
7268
7303
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSystemVersion(options);
|
|
7269
7304
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7270
7305
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.getSystemVersion"]?.[localVarOperationServerIndex]?.url;
|
|
7271
|
-
return (axios$
|
|
7306
|
+
return (axios$150, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$150, localVarOperationServerBasePath || basePath);
|
|
7272
7307
|
},
|
|
7273
7308
|
async listConfigurationResources(options) {
|
|
7274
7309
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listConfigurationResources(options);
|
|
7275
7310
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7276
7311
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.listConfigurationResources"]?.[localVarOperationServerIndex]?.url;
|
|
7277
|
-
return (axios$
|
|
7312
|
+
return (axios$151, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$151, localVarOperationServerBasePath || basePath);
|
|
7278
7313
|
},
|
|
7279
7314
|
async restoreConfiguration(body, resources, options) {
|
|
7280
7315
|
const localVarAxiosArgs = await localVarAxiosParamCreator.restoreConfiguration(body, resources, options);
|
|
7281
7316
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7282
7317
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.restoreConfiguration"]?.[localVarOperationServerIndex]?.url;
|
|
7283
|
-
return (axios$
|
|
7318
|
+
return (axios$152, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$152, localVarOperationServerBasePath || basePath);
|
|
7284
7319
|
},
|
|
7285
7320
|
async updateNovaVersion(updateNovaVersionRequest, options) {
|
|
7286
7321
|
const localVarAxiosArgs = await localVarAxiosParamCreator.updateNovaVersion(updateNovaVersionRequest, options);
|
|
7287
7322
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7288
7323
|
const localVarOperationServerBasePath = operationServerMap["SystemApi.updateNovaVersion"]?.[localVarOperationServerIndex]?.url;
|
|
7289
|
-
return (axios$
|
|
7324
|
+
return (axios$153, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$153, localVarOperationServerBasePath || basePath);
|
|
7290
7325
|
}
|
|
7291
7326
|
};
|
|
7292
7327
|
};
|
|
7293
7328
|
/**
|
|
7294
7329
|
* SystemApi - factory interface
|
|
7295
7330
|
*/
|
|
7296
|
-
const SystemApiFactory = function(configuration, basePath, axios$
|
|
7331
|
+
const SystemApiFactory = function(configuration, basePath, axios$154) {
|
|
7297
7332
|
const localVarFp = SystemApiFp(configuration);
|
|
7298
7333
|
return {
|
|
7299
7334
|
backupConfiguration(resources, metadata, options) {
|
|
7300
|
-
return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios$
|
|
7335
|
+
return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios$154, basePath));
|
|
7301
7336
|
},
|
|
7302
7337
|
checkNovaVersionUpdate(channel, options) {
|
|
7303
|
-
return localVarFp.checkNovaVersionUpdate(channel, options).then((request) => request(axios$
|
|
7338
|
+
return localVarFp.checkNovaVersionUpdate(channel, options).then((request) => request(axios$154, basePath));
|
|
7304
7339
|
},
|
|
7305
7340
|
getArpScan(_interface, cidr, timeout, options) {
|
|
7306
|
-
return localVarFp.getArpScan(_interface, cidr, timeout, options).then((request) => request(axios$
|
|
7341
|
+
return localVarFp.getArpScan(_interface, cidr, timeout, options).then((request) => request(axios$154, basePath));
|
|
7307
7342
|
},
|
|
7308
7343
|
getConfigurationBackupStatus(operationId, options) {
|
|
7309
|
-
return localVarFp.getConfigurationBackupStatus(operationId, options).then((request) => request(axios$
|
|
7344
|
+
return localVarFp.getConfigurationBackupStatus(operationId, options).then((request) => request(axios$154, basePath));
|
|
7310
7345
|
},
|
|
7311
7346
|
getDiagnosePackage(options) {
|
|
7312
|
-
return localVarFp.getDiagnosePackage(options).then((request) => request(axios$
|
|
7347
|
+
return localVarFp.getDiagnosePackage(options).then((request) => request(axios$154, basePath));
|
|
7313
7348
|
},
|
|
7314
7349
|
getNetworkInterfaces(options) {
|
|
7315
|
-
return localVarFp.getNetworkInterfaces(options).then((request) => request(axios$
|
|
7350
|
+
return localVarFp.getNetworkInterfaces(options).then((request) => request(axios$154, basePath));
|
|
7316
7351
|
},
|
|
7317
7352
|
getNetworkState(options) {
|
|
7318
|
-
return localVarFp.getNetworkState(options).then((request) => request(axios$
|
|
7353
|
+
return localVarFp.getNetworkState(options).then((request) => request(axios$154, basePath));
|
|
7319
7354
|
},
|
|
7320
7355
|
getSystemStatus(options) {
|
|
7321
|
-
return localVarFp.getSystemStatus(options).then((request) => request(axios$
|
|
7356
|
+
return localVarFp.getSystemStatus(options).then((request) => request(axios$154, basePath));
|
|
7322
7357
|
},
|
|
7323
7358
|
getSystemVersion(options) {
|
|
7324
|
-
return localVarFp.getSystemVersion(options).then((request) => request(axios$
|
|
7359
|
+
return localVarFp.getSystemVersion(options).then((request) => request(axios$154, basePath));
|
|
7325
7360
|
},
|
|
7326
7361
|
listConfigurationResources(options) {
|
|
7327
|
-
return localVarFp.listConfigurationResources(options).then((request) => request(axios$
|
|
7362
|
+
return localVarFp.listConfigurationResources(options).then((request) => request(axios$154, basePath));
|
|
7328
7363
|
},
|
|
7329
7364
|
restoreConfiguration(body, resources, options) {
|
|
7330
|
-
return localVarFp.restoreConfiguration(body, resources, options).then((request) => request(axios$
|
|
7365
|
+
return localVarFp.restoreConfiguration(body, resources, options).then((request) => request(axios$154, basePath));
|
|
7331
7366
|
},
|
|
7332
7367
|
updateNovaVersion(updateNovaVersionRequest, options) {
|
|
7333
|
-
return localVarFp.updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(axios$
|
|
7368
|
+
return localVarFp.updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(axios$154, basePath));
|
|
7334
7369
|
}
|
|
7335
7370
|
};
|
|
7336
7371
|
};
|
|
@@ -7360,10 +7395,10 @@ var SystemApi = class extends BaseAPI {
|
|
|
7360
7395
|
return SystemApiFp(this.configuration).checkNovaVersionUpdate(channel, options).then((request) => request(this.axios, this.basePath));
|
|
7361
7396
|
}
|
|
7362
7397
|
/**
|
|
7363
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
7398
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Runs an ARP scan on the target interface and returns all discovered devices.
|
|
7364
7399
|
* @summary Get ARP-Scan
|
|
7365
|
-
* @param {string}
|
|
7366
|
-
* @param {string}
|
|
7400
|
+
* @param {string} _interface
|
|
7401
|
+
* @param {string} cidr
|
|
7367
7402
|
* @param {number} [timeout]
|
|
7368
7403
|
* @param {*} [options] Override http request option.
|
|
7369
7404
|
* @throws {RequiredError}
|
|
@@ -7391,7 +7426,7 @@ var SystemApi = class extends BaseAPI {
|
|
|
7391
7426
|
return SystemApiFp(this.configuration).getDiagnosePackage(options).then((request) => request(this.axios, this.basePath));
|
|
7392
7427
|
}
|
|
7393
7428
|
/**
|
|
7394
|
-
* **Required permissions:** `can_access_system` - View system status and metadata ___
|
|
7429
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Lists all managed network interfaces available for controller connections and ARP scanning.
|
|
7395
7430
|
* @summary Network Interfaces
|
|
7396
7431
|
* @param {*} [options] Override http request option.
|
|
7397
7432
|
* @throws {RequiredError}
|
|
@@ -7614,54 +7649,54 @@ const TrajectoryCachingApiFp = function(configuration) {
|
|
|
7614
7649
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addTrajectory(cell, controller, addTrajectoryRequest, options);
|
|
7615
7650
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7616
7651
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.addTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7617
|
-
return (axios$
|
|
7652
|
+
return (axios$155, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$155, localVarOperationServerBasePath || basePath);
|
|
7618
7653
|
},
|
|
7619
7654
|
async clearTrajectories(cell, controller, options) {
|
|
7620
7655
|
const localVarAxiosArgs = await localVarAxiosParamCreator.clearTrajectories(cell, controller, options);
|
|
7621
7656
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7622
7657
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.clearTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
7623
|
-
return (axios$
|
|
7658
|
+
return (axios$156, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$156, localVarOperationServerBasePath || basePath);
|
|
7624
7659
|
},
|
|
7625
7660
|
async deleteTrajectory(cell, controller, trajectory, options) {
|
|
7626
7661
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteTrajectory(cell, controller, trajectory, options);
|
|
7627
7662
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7628
7663
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.deleteTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7629
|
-
return (axios$
|
|
7664
|
+
return (axios$157, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$157, localVarOperationServerBasePath || basePath);
|
|
7630
7665
|
},
|
|
7631
7666
|
async getTrajectory(cell, controller, trajectory, options) {
|
|
7632
7667
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getTrajectory(cell, controller, trajectory, options);
|
|
7633
7668
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7634
7669
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.getTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7635
|
-
return (axios$
|
|
7670
|
+
return (axios$158, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$158, localVarOperationServerBasePath || basePath);
|
|
7636
7671
|
},
|
|
7637
7672
|
async listTrajectories(cell, controller, options) {
|
|
7638
7673
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listTrajectories(cell, controller, options);
|
|
7639
7674
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7640
7675
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryCachingApi.listTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
7641
|
-
return (axios$
|
|
7676
|
+
return (axios$159, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$159, localVarOperationServerBasePath || basePath);
|
|
7642
7677
|
}
|
|
7643
7678
|
};
|
|
7644
7679
|
};
|
|
7645
7680
|
/**
|
|
7646
7681
|
* TrajectoryCachingApi - factory interface
|
|
7647
7682
|
*/
|
|
7648
|
-
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$
|
|
7683
|
+
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$160) {
|
|
7649
7684
|
const localVarFp = TrajectoryCachingApiFp(configuration);
|
|
7650
7685
|
return {
|
|
7651
7686
|
addTrajectory(cell, controller, addTrajectoryRequest, options) {
|
|
7652
|
-
return localVarFp.addTrajectory(cell, controller, addTrajectoryRequest, options).then((request) => request(axios$
|
|
7687
|
+
return localVarFp.addTrajectory(cell, controller, addTrajectoryRequest, options).then((request) => request(axios$160, basePath));
|
|
7653
7688
|
},
|
|
7654
7689
|
clearTrajectories(cell, controller, options) {
|
|
7655
|
-
return localVarFp.clearTrajectories(cell, controller, options).then((request) => request(axios$
|
|
7690
|
+
return localVarFp.clearTrajectories(cell, controller, options).then((request) => request(axios$160, basePath));
|
|
7656
7691
|
},
|
|
7657
7692
|
deleteTrajectory(cell, controller, trajectory, options) {
|
|
7658
|
-
return localVarFp.deleteTrajectory(cell, controller, trajectory, options).then((request) => request(axios$
|
|
7693
|
+
return localVarFp.deleteTrajectory(cell, controller, trajectory, options).then((request) => request(axios$160, basePath));
|
|
7659
7694
|
},
|
|
7660
7695
|
getTrajectory(cell, controller, trajectory, options) {
|
|
7661
|
-
return localVarFp.getTrajectory(cell, controller, trajectory, options).then((request) => request(axios$
|
|
7696
|
+
return localVarFp.getTrajectory(cell, controller, trajectory, options).then((request) => request(axios$160, basePath));
|
|
7662
7697
|
},
|
|
7663
7698
|
listTrajectories(cell, controller, options) {
|
|
7664
|
-
return localVarFp.listTrajectories(cell, controller, options).then((request) => request(axios$
|
|
7699
|
+
return localVarFp.listTrajectories(cell, controller, options).then((request) => request(axios$160, basePath));
|
|
7665
7700
|
}
|
|
7666
7701
|
};
|
|
7667
7702
|
};
|
|
@@ -7772,16 +7807,16 @@ const TrajectoryExecutionApiFp = function(configuration) {
|
|
|
7772
7807
|
const localVarAxiosArgs = await localVarAxiosParamCreator.executeTrajectory(cell, controller, executeTrajectoryRequest, options);
|
|
7773
7808
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7774
7809
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryExecutionApi.executeTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7775
|
-
return (axios$
|
|
7810
|
+
return (axios$161, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$161, localVarOperationServerBasePath || basePath);
|
|
7776
7811
|
} };
|
|
7777
7812
|
};
|
|
7778
7813
|
/**
|
|
7779
7814
|
* TrajectoryExecutionApi - factory interface
|
|
7780
7815
|
*/
|
|
7781
|
-
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$
|
|
7816
|
+
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$162) {
|
|
7782
7817
|
const localVarFp = TrajectoryExecutionApiFp(configuration);
|
|
7783
7818
|
return { executeTrajectory(cell, controller, executeTrajectoryRequest, options) {
|
|
7784
|
-
return localVarFp.executeTrajectory(cell, controller, executeTrajectoryRequest, options).then((request) => request(axios$
|
|
7819
|
+
return localVarFp.executeTrajectory(cell, controller, executeTrajectoryRequest, options).then((request) => request(axios$162, basePath));
|
|
7785
7820
|
} };
|
|
7786
7821
|
};
|
|
7787
7822
|
/**
|
|
@@ -7934,45 +7969,45 @@ const TrajectoryPlanningApiFp = function(configuration) {
|
|
|
7934
7969
|
const localVarAxiosArgs = await localVarAxiosParamCreator.mergeTrajectories(cell, mergeTrajectoriesRequest, options);
|
|
7935
7970
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7936
7971
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.mergeTrajectories"]?.[localVarOperationServerIndex]?.url;
|
|
7937
|
-
return (axios$
|
|
7972
|
+
return (axios$163, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$163, localVarOperationServerBasePath || basePath);
|
|
7938
7973
|
},
|
|
7939
7974
|
async planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
7940
7975
|
const localVarAxiosArgs = await localVarAxiosParamCreator.planCollisionFree(cell, planCollisionFreeRequest, options);
|
|
7941
7976
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7942
7977
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.planCollisionFree"]?.[localVarOperationServerIndex]?.url;
|
|
7943
|
-
return (axios$
|
|
7978
|
+
return (axios$164, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$164, localVarOperationServerBasePath || basePath);
|
|
7944
7979
|
},
|
|
7945
7980
|
async planTrajectory(cell, planTrajectoryRequest, options) {
|
|
7946
7981
|
const localVarAxiosArgs = await localVarAxiosParamCreator.planTrajectory(cell, planTrajectoryRequest, options);
|
|
7947
7982
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7948
7983
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.planTrajectory"]?.[localVarOperationServerIndex]?.url;
|
|
7949
|
-
return (axios$
|
|
7984
|
+
return (axios$165, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$165, localVarOperationServerBasePath || basePath);
|
|
7950
7985
|
},
|
|
7951
7986
|
async searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options) {
|
|
7952
7987
|
const localVarAxiosArgs = await localVarAxiosParamCreator.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options);
|
|
7953
7988
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7954
7989
|
const localVarOperationServerBasePath = operationServerMap["TrajectoryPlanningApi.searchCollisionFreeMultiMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
7955
|
-
return (axios$
|
|
7990
|
+
return (axios$166, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$166, localVarOperationServerBasePath || basePath);
|
|
7956
7991
|
}
|
|
7957
7992
|
};
|
|
7958
7993
|
};
|
|
7959
7994
|
/**
|
|
7960
7995
|
* TrajectoryPlanningApi - factory interface
|
|
7961
7996
|
*/
|
|
7962
|
-
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$
|
|
7997
|
+
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$167) {
|
|
7963
7998
|
const localVarFp = TrajectoryPlanningApiFp(configuration);
|
|
7964
7999
|
return {
|
|
7965
8000
|
mergeTrajectories(cell, mergeTrajectoriesRequest, options) {
|
|
7966
|
-
return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios$
|
|
8001
|
+
return localVarFp.mergeTrajectories(cell, mergeTrajectoriesRequest, options).then((request) => request(axios$167, basePath));
|
|
7967
8002
|
},
|
|
7968
8003
|
planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
7969
|
-
return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios$
|
|
8004
|
+
return localVarFp.planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(axios$167, basePath));
|
|
7970
8005
|
},
|
|
7971
8006
|
planTrajectory(cell, planTrajectoryRequest, options) {
|
|
7972
|
-
return localVarFp.planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(axios$
|
|
8007
|
+
return localVarFp.planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(axios$167, basePath));
|
|
7973
8008
|
},
|
|
7974
8009
|
searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options) {
|
|
7975
|
-
return localVarFp.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options).then((request) => request(axios$
|
|
8010
|
+
return localVarFp.searchCollisionFreeMultiMotionGroup(cell, multiSearchCollisionFreeRequest, options).then((request) => request(axios$167, basePath));
|
|
7976
8011
|
}
|
|
7977
8012
|
};
|
|
7978
8013
|
};
|
|
@@ -8063,16 +8098,16 @@ const VersionApiFp = function(configuration) {
|
|
|
8063
8098
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getApiVersion(options);
|
|
8064
8099
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8065
8100
|
const localVarOperationServerBasePath = operationServerMap["VersionApi.getApiVersion"]?.[localVarOperationServerIndex]?.url;
|
|
8066
|
-
return (axios$
|
|
8101
|
+
return (axios$168, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$168, localVarOperationServerBasePath || basePath);
|
|
8067
8102
|
} };
|
|
8068
8103
|
};
|
|
8069
8104
|
/**
|
|
8070
8105
|
* VersionApi - factory interface
|
|
8071
8106
|
*/
|
|
8072
|
-
const VersionApiFactory = function(configuration, basePath, axios$
|
|
8107
|
+
const VersionApiFactory = function(configuration, basePath, axios$169) {
|
|
8073
8108
|
const localVarFp = VersionApiFp(configuration);
|
|
8074
8109
|
return { getApiVersion(options) {
|
|
8075
|
-
return localVarFp.getApiVersion(options).then((request) => request(axios$
|
|
8110
|
+
return localVarFp.getApiVersion(options).then((request) => request(axios$169, basePath));
|
|
8076
8111
|
} };
|
|
8077
8112
|
};
|
|
8078
8113
|
/**
|
|
@@ -8681,189 +8716,189 @@ const VirtualControllerApiFp = function(configuration) {
|
|
|
8681
8716
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options);
|
|
8682
8717
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8683
8718
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
8684
|
-
return (axios$
|
|
8719
|
+
return (axios$170, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$170, localVarOperationServerBasePath || basePath);
|
|
8685
8720
|
},
|
|
8686
8721
|
async addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
|
|
8687
8722
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options);
|
|
8688
8723
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8689
8724
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
8690
|
-
return (axios$
|
|
8725
|
+
return (axios$171, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$171, localVarOperationServerBasePath || basePath);
|
|
8691
8726
|
},
|
|
8692
8727
|
async addVirtualControllerSafetyZone(cell, controller, safetyZone, options) {
|
|
8693
8728
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerSafetyZone(cell, controller, safetyZone, options);
|
|
8694
8729
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8695
8730
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerSafetyZone"]?.[localVarOperationServerIndex]?.url;
|
|
8696
|
-
return (axios$
|
|
8731
|
+
return (axios$172, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$172, localVarOperationServerBasePath || basePath);
|
|
8697
8732
|
},
|
|
8698
8733
|
async addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
8699
8734
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options);
|
|
8700
8735
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8701
8736
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.addVirtualControllerTcp"]?.[localVarOperationServerIndex]?.url;
|
|
8702
|
-
return (axios$
|
|
8737
|
+
return (axios$173, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$173, localVarOperationServerBasePath || basePath);
|
|
8703
8738
|
},
|
|
8704
8739
|
async deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
8705
8740
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options);
|
|
8706
8741
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8707
8742
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerCoordinateSystem"]?.[localVarOperationServerIndex]?.url;
|
|
8708
|
-
return (axios$
|
|
8743
|
+
return (axios$174, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$174, localVarOperationServerBasePath || basePath);
|
|
8709
8744
|
},
|
|
8710
8745
|
async deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
|
|
8711
8746
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options);
|
|
8712
8747
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8713
8748
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerMotionGroup"]?.[localVarOperationServerIndex]?.url;
|
|
8714
|
-
return (axios$
|
|
8749
|
+
return (axios$175, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$175, localVarOperationServerBasePath || basePath);
|
|
8715
8750
|
},
|
|
8716
8751
|
async deleteVirtualControllerSafetyZone(cell, controller, id, options) {
|
|
8717
8752
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerSafetyZone(cell, controller, id, options);
|
|
8718
8753
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8719
8754
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerSafetyZone"]?.[localVarOperationServerIndex]?.url;
|
|
8720
|
-
return (axios$
|
|
8755
|
+
return (axios$176, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$176, localVarOperationServerBasePath || basePath);
|
|
8721
8756
|
},
|
|
8722
8757
|
async deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
8723
8758
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options);
|
|
8724
8759
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8725
8760
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.deleteVirtualControllerTcp"]?.[localVarOperationServerIndex]?.url;
|
|
8726
|
-
return (axios$
|
|
8761
|
+
return (axios$177, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$177, localVarOperationServerBasePath || basePath);
|
|
8727
8762
|
},
|
|
8728
8763
|
async getEmergencyStop(cell, controller, options) {
|
|
8729
8764
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getEmergencyStop(cell, controller, options);
|
|
8730
8765
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8731
8766
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getEmergencyStop"]?.[localVarOperationServerIndex]?.url;
|
|
8732
|
-
return (axios$
|
|
8767
|
+
return (axios$178, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$178, localVarOperationServerBasePath || basePath);
|
|
8733
8768
|
},
|
|
8734
8769
|
async getMotionGroupState(cell, controller, motionGroup, options) {
|
|
8735
8770
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroupState(cell, controller, motionGroup, options);
|
|
8736
8771
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8737
8772
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
8738
|
-
return (axios$
|
|
8773
|
+
return (axios$179, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$179, localVarOperationServerBasePath || basePath);
|
|
8739
8774
|
},
|
|
8740
8775
|
async getMotionGroups(cell, controller, options) {
|
|
8741
8776
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMotionGroups(cell, controller, options);
|
|
8742
8777
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8743
8778
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getMotionGroups"]?.[localVarOperationServerIndex]?.url;
|
|
8744
|
-
return (axios$
|
|
8779
|
+
return (axios$180, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$180, localVarOperationServerBasePath || basePath);
|
|
8745
8780
|
},
|
|
8746
8781
|
async getOperationMode(cell, controller, options) {
|
|
8747
8782
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getOperationMode(cell, controller, options);
|
|
8748
8783
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8749
8784
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getOperationMode"]?.[localVarOperationServerIndex]?.url;
|
|
8750
|
-
return (axios$
|
|
8785
|
+
return (axios$181, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$181, localVarOperationServerBasePath || basePath);
|
|
8751
8786
|
},
|
|
8752
8787
|
async getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
8753
8788
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerMounting(cell, controller, motionGroup, options);
|
|
8754
8789
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8755
8790
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getVirtualControllerMounting"]?.[localVarOperationServerIndex]?.url;
|
|
8756
|
-
return (axios$
|
|
8791
|
+
return (axios$182, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$182, localVarOperationServerBasePath || basePath);
|
|
8757
8792
|
},
|
|
8758
8793
|
async getVirtualControllerSafetyZones(cell, controller, options) {
|
|
8759
8794
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerSafetyZones(cell, controller, options);
|
|
8760
8795
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8761
8796
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.getVirtualControllerSafetyZones"]?.[localVarOperationServerIndex]?.url;
|
|
8762
|
-
return (axios$
|
|
8797
|
+
return (axios$183, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$183, localVarOperationServerBasePath || basePath);
|
|
8763
8798
|
},
|
|
8764
8799
|
async listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
8765
8800
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerCoordinateSystems(cell, controller, options);
|
|
8766
8801
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8767
8802
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.listVirtualControllerCoordinateSystems"]?.[localVarOperationServerIndex]?.url;
|
|
8768
|
-
return (axios$
|
|
8803
|
+
return (axios$184, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$184, localVarOperationServerBasePath || basePath);
|
|
8769
8804
|
},
|
|
8770
8805
|
async listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
8771
8806
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerTcps(cell, controller, motionGroup, options);
|
|
8772
8807
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8773
8808
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.listVirtualControllerTcps"]?.[localVarOperationServerIndex]?.url;
|
|
8774
|
-
return (axios$
|
|
8809
|
+
return (axios$185, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$185, localVarOperationServerBasePath || basePath);
|
|
8775
8810
|
},
|
|
8776
8811
|
async setEmergencyStop(cell, controller, active, options) {
|
|
8777
8812
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setEmergencyStop(cell, controller, active, options);
|
|
8778
8813
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8779
8814
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setEmergencyStop"]?.[localVarOperationServerIndex]?.url;
|
|
8780
|
-
return (axios$
|
|
8815
|
+
return (axios$186, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$186, localVarOperationServerBasePath || basePath);
|
|
8781
8816
|
},
|
|
8782
8817
|
async setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
8783
8818
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options);
|
|
8784
8819
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8785
8820
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setMotionGroupState"]?.[localVarOperationServerIndex]?.url;
|
|
8786
|
-
return (axios$
|
|
8821
|
+
return (axios$187, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$187, localVarOperationServerBasePath || basePath);
|
|
8787
8822
|
},
|
|
8788
8823
|
async setOperationMode(cell, controller, mode, options) {
|
|
8789
8824
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setOperationMode(cell, controller, mode, options);
|
|
8790
8825
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8791
8826
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setOperationMode"]?.[localVarOperationServerIndex]?.url;
|
|
8792
|
-
return (axios$
|
|
8827
|
+
return (axios$188, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$188, localVarOperationServerBasePath || basePath);
|
|
8793
8828
|
},
|
|
8794
8829
|
async setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
8795
8830
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options);
|
|
8796
8831
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8797
8832
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerApi.setVirtualControllerMounting"]?.[localVarOperationServerIndex]?.url;
|
|
8798
|
-
return (axios$
|
|
8833
|
+
return (axios$189, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$189, localVarOperationServerBasePath || basePath);
|
|
8799
8834
|
}
|
|
8800
8835
|
};
|
|
8801
8836
|
};
|
|
8802
8837
|
/**
|
|
8803
8838
|
* VirtualControllerApi - factory interface
|
|
8804
8839
|
*/
|
|
8805
|
-
const VirtualControllerApiFactory = function(configuration, basePath, axios$
|
|
8840
|
+
const VirtualControllerApiFactory = function(configuration, basePath, axios$190) {
|
|
8806
8841
|
const localVarFp = VirtualControllerApiFp(configuration);
|
|
8807
8842
|
return {
|
|
8808
8843
|
addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options) {
|
|
8809
|
-
return localVarFp.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios$
|
|
8844
|
+
return localVarFp.addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios$190, basePath));
|
|
8810
8845
|
},
|
|
8811
8846
|
addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options) {
|
|
8812
|
-
return localVarFp.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(axios$
|
|
8847
|
+
return localVarFp.addVirtualControllerMotionGroup(cell, controller, addVirtualControllerMotionGroupRequest, options).then((request) => request(axios$190, basePath));
|
|
8813
8848
|
},
|
|
8814
8849
|
addVirtualControllerSafetyZone(cell, controller, safetyZone, options) {
|
|
8815
|
-
return localVarFp.addVirtualControllerSafetyZone(cell, controller, safetyZone, options).then((request) => request(axios$
|
|
8850
|
+
return localVarFp.addVirtualControllerSafetyZone(cell, controller, safetyZone, options).then((request) => request(axios$190, basePath));
|
|
8816
8851
|
},
|
|
8817
8852
|
addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
8818
|
-
return localVarFp.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios$
|
|
8853
|
+
return localVarFp.addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios$190, basePath));
|
|
8819
8854
|
},
|
|
8820
8855
|
deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
8821
|
-
return localVarFp.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios$
|
|
8856
|
+
return localVarFp.deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios$190, basePath));
|
|
8822
8857
|
},
|
|
8823
8858
|
deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options) {
|
|
8824
|
-
return localVarFp.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8859
|
+
return localVarFp.deleteVirtualControllerMotionGroup(cell, controller, motionGroup, options).then((request) => request(axios$190, basePath));
|
|
8825
8860
|
},
|
|
8826
8861
|
deleteVirtualControllerSafetyZone(cell, controller, id, options) {
|
|
8827
|
-
return localVarFp.deleteVirtualControllerSafetyZone(cell, controller, id, options).then((request) => request(axios$
|
|
8862
|
+
return localVarFp.deleteVirtualControllerSafetyZone(cell, controller, id, options).then((request) => request(axios$190, basePath));
|
|
8828
8863
|
},
|
|
8829
8864
|
deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
8830
|
-
return localVarFp.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios$
|
|
8865
|
+
return localVarFp.deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios$190, basePath));
|
|
8831
8866
|
},
|
|
8832
8867
|
getEmergencyStop(cell, controller, options) {
|
|
8833
|
-
return localVarFp.getEmergencyStop(cell, controller, options).then((request) => request(axios$
|
|
8868
|
+
return localVarFp.getEmergencyStop(cell, controller, options).then((request) => request(axios$190, basePath));
|
|
8834
8869
|
},
|
|
8835
8870
|
getMotionGroupState(cell, controller, motionGroup, options) {
|
|
8836
|
-
return localVarFp.getMotionGroupState(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8871
|
+
return localVarFp.getMotionGroupState(cell, controller, motionGroup, options).then((request) => request(axios$190, basePath));
|
|
8837
8872
|
},
|
|
8838
8873
|
getMotionGroups(cell, controller, options) {
|
|
8839
|
-
return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios$
|
|
8874
|
+
return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios$190, basePath));
|
|
8840
8875
|
},
|
|
8841
8876
|
getOperationMode(cell, controller, options) {
|
|
8842
|
-
return localVarFp.getOperationMode(cell, controller, options).then((request) => request(axios$
|
|
8877
|
+
return localVarFp.getOperationMode(cell, controller, options).then((request) => request(axios$190, basePath));
|
|
8843
8878
|
},
|
|
8844
8879
|
getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
8845
|
-
return localVarFp.getVirtualControllerMounting(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8880
|
+
return localVarFp.getVirtualControllerMounting(cell, controller, motionGroup, options).then((request) => request(axios$190, basePath));
|
|
8846
8881
|
},
|
|
8847
8882
|
getVirtualControllerSafetyZones(cell, controller, options) {
|
|
8848
|
-
return localVarFp.getVirtualControllerSafetyZones(cell, controller, options).then((request) => request(axios$
|
|
8883
|
+
return localVarFp.getVirtualControllerSafetyZones(cell, controller, options).then((request) => request(axios$190, basePath));
|
|
8849
8884
|
},
|
|
8850
8885
|
listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
8851
|
-
return localVarFp.listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(axios$
|
|
8886
|
+
return localVarFp.listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(axios$190, basePath));
|
|
8852
8887
|
},
|
|
8853
8888
|
listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
8854
|
-
return localVarFp.listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(axios$
|
|
8889
|
+
return localVarFp.listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(axios$190, basePath));
|
|
8855
8890
|
},
|
|
8856
8891
|
setEmergencyStop(cell, controller, active, options) {
|
|
8857
|
-
return localVarFp.setEmergencyStop(cell, controller, active, options).then((request) => request(axios$
|
|
8892
|
+
return localVarFp.setEmergencyStop(cell, controller, active, options).then((request) => request(axios$190, basePath));
|
|
8858
8893
|
},
|
|
8859
8894
|
setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
8860
|
-
return localVarFp.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(axios$
|
|
8895
|
+
return localVarFp.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(axios$190, basePath));
|
|
8861
8896
|
},
|
|
8862
8897
|
setOperationMode(cell, controller, mode, options) {
|
|
8863
|
-
return localVarFp.setOperationMode(cell, controller, mode, options).then((request) => request(axios$
|
|
8898
|
+
return localVarFp.setOperationMode(cell, controller, mode, options).then((request) => request(axios$190, basePath));
|
|
8864
8899
|
},
|
|
8865
8900
|
setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
8866
|
-
return localVarFp.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(axios$
|
|
8901
|
+
return localVarFp.setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(axios$190, basePath));
|
|
8867
8902
|
}
|
|
8868
8903
|
};
|
|
8869
8904
|
};
|
|
@@ -9243,45 +9278,45 @@ const VirtualControllerBehaviorApiFp = function(configuration) {
|
|
|
9243
9278
|
const localVarAxiosArgs = await localVarAxiosParamCreator.externalJointsStream(cell, controller, externalJointStreamRequest, options);
|
|
9244
9279
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9245
9280
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.externalJointsStream"]?.[localVarOperationServerIndex]?.url;
|
|
9246
|
-
return (axios$
|
|
9281
|
+
return (axios$191, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$191, localVarOperationServerBasePath || basePath);
|
|
9247
9282
|
},
|
|
9248
9283
|
async getCycleTime(cell, controller, options) {
|
|
9249
9284
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getCycleTime(cell, controller, options);
|
|
9250
9285
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9251
9286
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.getCycleTime"]?.[localVarOperationServerIndex]?.url;
|
|
9252
|
-
return (axios$
|
|
9287
|
+
return (axios$192, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$192, localVarOperationServerBasePath || basePath);
|
|
9253
9288
|
},
|
|
9254
9289
|
async getVirtualControllerBehavior(cell, controller, options) {
|
|
9255
9290
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualControllerBehavior(cell, controller, options);
|
|
9256
9291
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9257
9292
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.getVirtualControllerBehavior"]?.[localVarOperationServerIndex]?.url;
|
|
9258
|
-
return (axios$
|
|
9293
|
+
return (axios$193, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$193, localVarOperationServerBasePath || basePath);
|
|
9259
9294
|
},
|
|
9260
9295
|
async setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
9261
9296
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualControllerBehavior(cell, controller, behavior, options);
|
|
9262
9297
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9263
9298
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerBehaviorApi.setVirtualControllerBehavior"]?.[localVarOperationServerIndex]?.url;
|
|
9264
|
-
return (axios$
|
|
9299
|
+
return (axios$194, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$194, localVarOperationServerBasePath || basePath);
|
|
9265
9300
|
}
|
|
9266
9301
|
};
|
|
9267
9302
|
};
|
|
9268
9303
|
/**
|
|
9269
9304
|
* VirtualControllerBehaviorApi - factory interface
|
|
9270
9305
|
*/
|
|
9271
|
-
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$
|
|
9306
|
+
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$195) {
|
|
9272
9307
|
const localVarFp = VirtualControllerBehaviorApiFp(configuration);
|
|
9273
9308
|
return {
|
|
9274
9309
|
externalJointsStream(cell, controller, externalJointStreamRequest, options) {
|
|
9275
|
-
return localVarFp.externalJointsStream(cell, controller, externalJointStreamRequest, options).then((request) => request(axios$
|
|
9310
|
+
return localVarFp.externalJointsStream(cell, controller, externalJointStreamRequest, options).then((request) => request(axios$195, basePath));
|
|
9276
9311
|
},
|
|
9277
9312
|
getCycleTime(cell, controller, options) {
|
|
9278
|
-
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios$
|
|
9313
|
+
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios$195, basePath));
|
|
9279
9314
|
},
|
|
9280
9315
|
getVirtualControllerBehavior(cell, controller, options) {
|
|
9281
|
-
return localVarFp.getVirtualControllerBehavior(cell, controller, options).then((request) => request(axios$
|
|
9316
|
+
return localVarFp.getVirtualControllerBehavior(cell, controller, options).then((request) => request(axios$195, basePath));
|
|
9282
9317
|
},
|
|
9283
9318
|
setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
9284
|
-
return localVarFp.setVirtualControllerBehavior(cell, controller, behavior, options).then((request) => request(axios$
|
|
9319
|
+
return localVarFp.setVirtualControllerBehavior(cell, controller, behavior, options).then((request) => request(axios$195, basePath));
|
|
9285
9320
|
}
|
|
9286
9321
|
};
|
|
9287
9322
|
};
|
|
@@ -9443,36 +9478,36 @@ const VirtualControllerInputsOutputsApiFp = function(configuration) {
|
|
|
9443
9478
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listIOs(cell, controller, ios, options);
|
|
9444
9479
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9445
9480
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.listIOs"]?.[localVarOperationServerIndex]?.url;
|
|
9446
|
-
return (axios$
|
|
9481
|
+
return (axios$196, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$196, localVarOperationServerBasePath || basePath);
|
|
9447
9482
|
},
|
|
9448
9483
|
async listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
9449
9484
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options);
|
|
9450
9485
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9451
9486
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.listVirtualControllerIODescriptions"]?.[localVarOperationServerIndex]?.url;
|
|
9452
|
-
return (axios$
|
|
9487
|
+
return (axios$197, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$197, localVarOperationServerBasePath || basePath);
|
|
9453
9488
|
},
|
|
9454
9489
|
async setIOValues(cell, controller, iOValue, options) {
|
|
9455
9490
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setIOValues(cell, controller, iOValue, options);
|
|
9456
9491
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9457
9492
|
const localVarOperationServerBasePath = operationServerMap["VirtualControllerInputsOutputsApi.setIOValues"]?.[localVarOperationServerIndex]?.url;
|
|
9458
|
-
return (axios$
|
|
9493
|
+
return (axios$198, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$198, localVarOperationServerBasePath || basePath);
|
|
9459
9494
|
}
|
|
9460
9495
|
};
|
|
9461
9496
|
};
|
|
9462
9497
|
/**
|
|
9463
9498
|
* VirtualControllerInputsOutputsApi - factory interface
|
|
9464
9499
|
*/
|
|
9465
|
-
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$
|
|
9500
|
+
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$199) {
|
|
9466
9501
|
const localVarFp = VirtualControllerInputsOutputsApiFp(configuration);
|
|
9467
9502
|
return {
|
|
9468
9503
|
listIOs(cell, controller, ios, options) {
|
|
9469
|
-
return localVarFp.listIOs(cell, controller, ios, options).then((request) => request(axios$
|
|
9504
|
+
return localVarFp.listIOs(cell, controller, ios, options).then((request) => request(axios$199, basePath));
|
|
9470
9505
|
},
|
|
9471
9506
|
listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
9472
|
-
return localVarFp.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$
|
|
9507
|
+
return localVarFp.listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios$199, basePath));
|
|
9473
9508
|
},
|
|
9474
9509
|
setIOValues(cell, controller, iOValue, options) {
|
|
9475
|
-
return localVarFp.setIOValues(cell, controller, iOValue, options).then((request) => request(axios$
|
|
9510
|
+
return localVarFp.setIOValues(cell, controller, iOValue, options).then((request) => request(axios$199, basePath));
|
|
9476
9511
|
}
|
|
9477
9512
|
};
|
|
9478
9513
|
};
|
|
@@ -9639,6 +9674,12 @@ var Configuration = class {
|
|
|
9639
9674
|
};
|
|
9640
9675
|
//#endregion
|
|
9641
9676
|
exports.AbbControllerKindEnum = AbbControllerKindEnum;
|
|
9677
|
+
exports.ActionChunkRequestMessageTypeEnum = ActionChunkRequestMessageTypeEnum;
|
|
9678
|
+
exports.ActionChunkResponseKindEnum = ActionChunkResponseKindEnum;
|
|
9679
|
+
exports.ActionChunkStreamingApi = ActionChunkStreamingApi;
|
|
9680
|
+
exports.ActionChunkStreamingApiAxiosParamCreator = ActionChunkStreamingApiAxiosParamCreator;
|
|
9681
|
+
exports.ActionChunkStreamingApiFactory = ActionChunkStreamingApiFactory;
|
|
9682
|
+
exports.ActionChunkStreamingApiFp = ActionChunkStreamingApiFp;
|
|
9642
9683
|
exports.ApplicationApi = ApplicationApi;
|
|
9643
9684
|
exports.ApplicationApiAxiosParamCreator = ApplicationApiAxiosParamCreator;
|
|
9644
9685
|
exports.ApplicationApiFactory = ApplicationApiFactory;
|
|
@@ -9736,6 +9777,8 @@ exports.IOIntegerValueValueTypeEnum = IOIntegerValueValueTypeEnum;
|
|
|
9736
9777
|
exports.IOOrigin = IOOrigin;
|
|
9737
9778
|
exports.IOValueType = IOValueType;
|
|
9738
9779
|
exports.InconsistentTrajectorySizeErrorKindEnum = InconsistentTrajectorySizeErrorKindEnum;
|
|
9780
|
+
exports.InitializeActionChunksRequestMessageTypeEnum = InitializeActionChunksRequestMessageTypeEnum;
|
|
9781
|
+
exports.InitializeActionChunksResponseKindEnum = InitializeActionChunksResponseKindEnum;
|
|
9739
9782
|
exports.InitializeJoggingRequestMessageTypeEnum = InitializeJoggingRequestMessageTypeEnum;
|
|
9740
9783
|
exports.InitializeJoggingResponseKindEnum = InitializeJoggingResponseKindEnum;
|
|
9741
9784
|
exports.InitializeMovementRequestMessageTypeEnum = InitializeMovementRequestMessageTypeEnum;
|
|
@@ -9757,8 +9800,7 @@ exports.JointLimitExceededErrorKindEnum = JointLimitExceededErrorKindEnum;
|
|
|
9757
9800
|
exports.JointTypeEnum = JointTypeEnum;
|
|
9758
9801
|
exports.JointVelocityRequestMessageTypeEnum = JointVelocityRequestMessageTypeEnum;
|
|
9759
9802
|
exports.JointVelocityResponseKindEnum = JointVelocityResponseKindEnum;
|
|
9760
|
-
exports.
|
|
9761
|
-
exports.JointWaypointsResponseKindEnum = JointWaypointsResponseKindEnum;
|
|
9803
|
+
exports.JointWaypointKindEnum = JointWaypointKindEnum;
|
|
9762
9804
|
exports.KinematicBranchElbow = KinematicBranchElbow;
|
|
9763
9805
|
exports.KinematicBranchShoulder = KinematicBranchShoulder;
|
|
9764
9806
|
exports.KinematicBranchWrist = KinematicBranchWrist;
|
|
@@ -9792,7 +9834,8 @@ exports.NOVACloudApiAxiosParamCreator = NOVACloudApiAxiosParamCreator;
|
|
|
9792
9834
|
exports.NOVACloudApiFactory = NOVACloudApiFactory;
|
|
9793
9835
|
exports.NOVACloudApiFp = NOVACloudApiFp;
|
|
9794
9836
|
exports.NanValueErrorKindEnum = NanValueErrorKindEnum;
|
|
9795
|
-
exports.
|
|
9837
|
+
exports.NetworkBackend = NetworkBackend;
|
|
9838
|
+
exports.NetworkLinkState = NetworkLinkState;
|
|
9796
9839
|
exports.OperatingState = OperatingState;
|
|
9797
9840
|
exports.OperationMode = OperationMode;
|
|
9798
9841
|
exports.OrientationType = OrientationType;
|
|
@@ -9803,6 +9846,8 @@ exports.PathDirectionConstrainedCartesianPTPPathDefinitionNameEnum = PathDirecti
|
|
|
9803
9846
|
exports.PathDirectionConstrainedJointPTPPathDefinitionNameEnum = PathDirectionConstrainedJointPTPPathDefinitionNameEnum;
|
|
9804
9847
|
exports.PathJointPTPPathDefinitionNameEnum = PathJointPTPPathDefinitionNameEnum;
|
|
9805
9848
|
exports.PathLinePathDefinitionNameEnum = PathLinePathDefinitionNameEnum;
|
|
9849
|
+
exports.PauseActionChunksRequestMessageTypeEnum = PauseActionChunksRequestMessageTypeEnum;
|
|
9850
|
+
exports.PauseActionChunksResponseKindEnum = PauseActionChunksResponseKindEnum;
|
|
9806
9851
|
exports.PauseJoggingRequestMessageTypeEnum = PauseJoggingRequestMessageTypeEnum;
|
|
9807
9852
|
exports.PauseJoggingResponseKindEnum = PauseJoggingResponseKindEnum;
|
|
9808
9853
|
exports.PauseMovementRequestMessageTypeEnum = PauseMovementRequestMessageTypeEnum;
|
|
@@ -9810,8 +9855,7 @@ exports.PauseMovementResponseKindEnum = PauseMovementResponseKindEnum;
|
|
|
9810
9855
|
exports.PlaneShapeTypeEnum = PlaneShapeTypeEnum;
|
|
9811
9856
|
exports.PlaybackSpeedRequestMessageTypeEnum = PlaybackSpeedRequestMessageTypeEnum;
|
|
9812
9857
|
exports.PlaybackSpeedResponseKindEnum = PlaybackSpeedResponseKindEnum;
|
|
9813
|
-
exports.
|
|
9814
|
-
exports.PoseWaypointsResponseKindEnum = PoseWaypointsResponseKindEnum;
|
|
9858
|
+
exports.PoseWaypointKindEnum = PoseWaypointKindEnum;
|
|
9815
9859
|
exports.ProfinetIODirection = ProfinetIODirection;
|
|
9816
9860
|
exports.ProfinetIOTypeEnum = ProfinetIOTypeEnum;
|
|
9817
9861
|
exports.ProgramApi = ProgramApi;
|
|
@@ -9847,6 +9891,8 @@ exports.SphereShapeTypeEnum = SphereShapeTypeEnum;
|
|
|
9847
9891
|
exports.StartMovementRequestMessageTypeEnum = StartMovementRequestMessageTypeEnum;
|
|
9848
9892
|
exports.StartMovementResponseKindEnum = StartMovementResponseKindEnum;
|
|
9849
9893
|
exports.StaubliControllerKindEnum = StaubliControllerKindEnum;
|
|
9894
|
+
exports.StopActionChunksRequestMessageTypeEnum = StopActionChunksRequestMessageTypeEnum;
|
|
9895
|
+
exports.StopActionChunksResponseKindEnum = StopActionChunksResponseKindEnum;
|
|
9850
9896
|
exports.StorageKeySourceEnum = StorageKeySourceEnum;
|
|
9851
9897
|
exports.StoreCollisionComponentsApi = StoreCollisionComponentsApi;
|
|
9852
9898
|
exports.StoreCollisionComponentsApiAxiosParamCreator = StoreCollisionComponentsApiAxiosParamCreator;
|
|
@@ -9867,6 +9913,7 @@ exports.SystemApiFp = SystemApiFp;
|
|
|
9867
9913
|
exports.TcpRequiredErrorKindEnum = TcpRequiredErrorKindEnum;
|
|
9868
9914
|
exports.TcpVelocityRequestMessageTypeEnum = TcpVelocityRequestMessageTypeEnum;
|
|
9869
9915
|
exports.TcpVelocityResponseKindEnum = TcpVelocityResponseKindEnum;
|
|
9916
|
+
exports.TechmanControllerKindEnum = TechmanControllerKindEnum;
|
|
9870
9917
|
exports.ToolValueSourceEnum = ToolValueSourceEnum;
|
|
9871
9918
|
exports.TorqueExceededErrorKindEnum = TorqueExceededErrorKindEnum;
|
|
9872
9919
|
exports.TrajectoryCachingApi = TrajectoryCachingApi;
|
|
@@ -9893,6 +9940,8 @@ exports.UnitType = UnitType;
|
|
|
9893
9940
|
exports.UnitreeControllerKindEnum = UnitreeControllerKindEnum;
|
|
9894
9941
|
exports.UnitreeControllerRobotTypeEnum = UnitreeControllerRobotTypeEnum;
|
|
9895
9942
|
exports.UniversalrobotsControllerKindEnum = UniversalrobotsControllerKindEnum;
|
|
9943
|
+
exports.UnpauseActionChunksRequestMessageTypeEnum = UnpauseActionChunksRequestMessageTypeEnum;
|
|
9944
|
+
exports.UnpauseActionChunksResponseKindEnum = UnpauseActionChunksResponseKindEnum;
|
|
9896
9945
|
exports.VersionApi = VersionApi;
|
|
9897
9946
|
exports.VersionApiAxiosParamCreator = VersionApiAxiosParamCreator;
|
|
9898
9947
|
exports.VersionApiFactory = VersionApiFactory;
|