@wandelbots/nova-api 25.7.0-dev.18 → 25.7.0-dev.3
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/package.json +1 -1
- package/v1/api.d.ts +7 -7
- package/v1/api.js +5 -5
- package/v1/api.ts +7 -7
- package/v1/base.d.ts +1 -1
- package/v1/base.js +1 -1
- package/v1/base.ts +1 -1
- package/v1/common.d.ts +1 -1
- package/v1/common.js +1 -1
- package/v1/common.ts +1 -1
- package/v1/configuration.d.ts +1 -1
- package/v1/configuration.js +1 -1
- package/v1/configuration.ts +1 -1
- package/v1/index.d.ts +1 -1
- package/v1/index.js +1 -1
- package/v1/index.ts +1 -1
- package/v2/api.d.ts +253 -325
- package/v2/api.js +175 -254
- package/v2/api.js.map +1 -1
- package/v2/api.ts +364 -486
package/v2/api.js
CHANGED
|
@@ -86,6 +86,9 @@ export const Direction = {
|
|
|
86
86
|
DirectionForward: 'DIRECTION_FORWARD',
|
|
87
87
|
DirectionBackward: 'DIRECTION_BACKWARD'
|
|
88
88
|
};
|
|
89
|
+
export const EndOfTrajectoryKindEnum = {
|
|
90
|
+
EndOfTrajectory: 'END_OF_TRAJECTORY'
|
|
91
|
+
};
|
|
89
92
|
export const FanucControllerKindEnum = {
|
|
90
93
|
FanucController: 'FanucController'
|
|
91
94
|
};
|
|
@@ -150,21 +153,6 @@ export const IntegerValueValueTypeEnum = {
|
|
|
150
153
|
export const JoggingDetailsKindEnum = {
|
|
151
154
|
Jogging: 'JOGGING'
|
|
152
155
|
};
|
|
153
|
-
export const JoggingPausedByUserKindEnum = {
|
|
154
|
-
PausedByUser: 'PAUSED_BY_USER'
|
|
155
|
-
};
|
|
156
|
-
export const JoggingPausedNearCollisionKindEnum = {
|
|
157
|
-
PausedNearCollision: 'PAUSED_NEAR_COLLISION'
|
|
158
|
-
};
|
|
159
|
-
export const JoggingPausedNearJointLimitKindEnum = {
|
|
160
|
-
PausedNearJointLimit: 'PAUSED_NEAR_JOINT_LIMIT'
|
|
161
|
-
};
|
|
162
|
-
export const JoggingPausedOnIOKindEnum = {
|
|
163
|
-
PausedOnIo: 'PAUSED_ON_IO'
|
|
164
|
-
};
|
|
165
|
-
export const JoggingRunningKindEnum = {
|
|
166
|
-
Running: 'RUNNING'
|
|
167
|
-
};
|
|
168
156
|
export const JointVelocityRequestMessageTypeEnum = {
|
|
169
157
|
JointVelocityRequest: 'JointVelocityRequest'
|
|
170
158
|
};
|
|
@@ -287,6 +275,21 @@ export const PauseMovementRequestMessageTypeEnum = {
|
|
|
287
275
|
export const PauseMovementResponseKindEnum = {
|
|
288
276
|
PauseReceived: 'PAUSE_RECEIVED'
|
|
289
277
|
};
|
|
278
|
+
export const PausedByRequestKindEnum = {
|
|
279
|
+
PausedByUser: 'PAUSED_BY_USER'
|
|
280
|
+
};
|
|
281
|
+
export const PausedByUserKindEnum = {
|
|
282
|
+
PausedByUser: 'PAUSED_BY_USER'
|
|
283
|
+
};
|
|
284
|
+
export const PausedNearCollisionKindEnum = {
|
|
285
|
+
PausedNearCollision: 'PAUSED_NEAR_COLLISION'
|
|
286
|
+
};
|
|
287
|
+
export const PausedNearJointLimitKindEnum = {
|
|
288
|
+
PausedNearJointLimit: 'PAUSED_NEAR_JOINT_LIMIT'
|
|
289
|
+
};
|
|
290
|
+
export const PausedOnIOKindEnum = {
|
|
291
|
+
PausedOnIo: 'PAUSED_ON_IO'
|
|
292
|
+
};
|
|
290
293
|
export const PlaneShapeTypeEnum = {
|
|
291
294
|
Plane: 'plane'
|
|
292
295
|
};
|
|
@@ -323,6 +326,12 @@ export const RobotSystemMode = {
|
|
|
323
326
|
RobotSystemModeControl: 'ROBOT_SYSTEM_MODE_CONTROL',
|
|
324
327
|
RobotSystemModeFreeDrive: 'ROBOT_SYSTEM_MODE_FREE_DRIVE'
|
|
325
328
|
};
|
|
329
|
+
export const RunningKindEnum = {
|
|
330
|
+
Running: 'RUNNING'
|
|
331
|
+
};
|
|
332
|
+
export const Running1KindEnum = {
|
|
333
|
+
Running: 'RUNNING'
|
|
334
|
+
};
|
|
326
335
|
/**
|
|
327
336
|
* Current safety state of the configured robot controller. Operation modes in which the attached motion groups can be moved are: - SAFETY_STATE_NORMAL - SAFETY_STATE_REDUCED All other modes are considered as non-operational.
|
|
328
337
|
* @export
|
|
@@ -428,24 +437,9 @@ export const TrajectoryDataMessageTypeEnum = {
|
|
|
428
437
|
export const TrajectoryDetailsKindEnum = {
|
|
429
438
|
Trajectory: 'TRAJECTORY'
|
|
430
439
|
};
|
|
431
|
-
export const TrajectoryEndedKindEnum = {
|
|
432
|
-
EndOfTrajectory: 'END_OF_TRAJECTORY'
|
|
433
|
-
};
|
|
434
440
|
export const TrajectoryIdMessageTypeEnum = {
|
|
435
441
|
TrajectoryId: 'TrajectoryId'
|
|
436
442
|
};
|
|
437
|
-
export const TrajectoryPausedByUserKindEnum = {
|
|
438
|
-
PausedByUser: 'PAUSED_BY_USER'
|
|
439
|
-
};
|
|
440
|
-
export const TrajectoryPausedOnIOKindEnum = {
|
|
441
|
-
PausedOnIo: 'PAUSED_ON_IO'
|
|
442
|
-
};
|
|
443
|
-
export const TrajectoryRunningKindEnum = {
|
|
444
|
-
Running: 'RUNNING'
|
|
445
|
-
};
|
|
446
|
-
export const TrajectoryWaitForIOKindEnum = {
|
|
447
|
-
WaitForIo: 'WAIT_FOR_IO'
|
|
448
|
-
};
|
|
449
443
|
/**
|
|
450
444
|
* The unit of input/output value.
|
|
451
445
|
* @export
|
|
@@ -583,6 +577,9 @@ export const VirtualControllerTypes = {
|
|
|
583
577
|
YaskawaHc10dtp: 'yaskawa-hc10dtp',
|
|
584
578
|
YaskawaHc20dtp: 'yaskawa-hc20dtp'
|
|
585
579
|
};
|
|
580
|
+
export const WaitForIOKindEnum = {
|
|
581
|
+
WaitForIo: 'WAIT_FOR_IO'
|
|
582
|
+
};
|
|
586
583
|
export const YaskawaControllerKindEnum = {
|
|
587
584
|
YaskawaController: 'YaskawaController'
|
|
588
585
|
};
|
|
@@ -1780,45 +1777,6 @@ export const ControllerApiAxiosParamCreator = function (configuration) {
|
|
|
1780
1777
|
options: localVarRequestOptions,
|
|
1781
1778
|
};
|
|
1782
1779
|
},
|
|
1783
|
-
/**
|
|
1784
|
-
* Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](getMotionGroupDescription) to get more information about the motion group.
|
|
1785
|
-
* @summary Description
|
|
1786
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1787
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
1788
|
-
* @param {*} [options] Override http request option.
|
|
1789
|
-
* @throws {RequiredError}
|
|
1790
|
-
*/
|
|
1791
|
-
getControllerDescription: async (cell, controller, options = {}) => {
|
|
1792
|
-
// verify required parameter 'cell' is not null or undefined
|
|
1793
|
-
assertParamExists('getControllerDescription', 'cell', cell);
|
|
1794
|
-
// verify required parameter 'controller' is not null or undefined
|
|
1795
|
-
assertParamExists('getControllerDescription', 'controller', controller);
|
|
1796
|
-
const localVarPath = `/cells/{cell}/controllers/{controller}/description`
|
|
1797
|
-
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
1798
|
-
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
|
|
1799
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1800
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1801
|
-
let baseOptions;
|
|
1802
|
-
if (configuration) {
|
|
1803
|
-
baseOptions = configuration.baseOptions;
|
|
1804
|
-
}
|
|
1805
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
1806
|
-
const localVarHeaderParameter = {};
|
|
1807
|
-
const localVarQueryParameter = {};
|
|
1808
|
-
// authentication BasicAuth required
|
|
1809
|
-
// http basic authentication required
|
|
1810
|
-
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1811
|
-
// authentication BearerAuth required
|
|
1812
|
-
// http bearer authentication required
|
|
1813
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1814
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1815
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1816
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
1817
|
-
return {
|
|
1818
|
-
url: toPathString(localVarUrlObj),
|
|
1819
|
-
options: localVarRequestOptions,
|
|
1820
|
-
};
|
|
1821
|
-
},
|
|
1822
1780
|
/**
|
|
1823
1781
|
* Request a coordinate system specification for a given identifier. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with \"On\" + the unique identifier of the robot controller.
|
|
1824
1782
|
* @summary Coordinate System
|
|
@@ -1984,18 +1942,18 @@ export const ControllerApiAxiosParamCreator = function (configuration) {
|
|
|
1984
1942
|
};
|
|
1985
1943
|
},
|
|
1986
1944
|
/**
|
|
1987
|
-
* Receive
|
|
1988
|
-
* @summary Virtual
|
|
1945
|
+
* Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **NOTE** > > The output generated by this endpoint can be too large for the site to handle, and may produce an error or incorrect output. > Use `curl` in combination with `> output.json` to capture the output, or use an API client like Postman.
|
|
1946
|
+
* @summary Virtual Robot Configuration
|
|
1989
1947
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1990
1948
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
1991
1949
|
* @param {*} [options] Override http request option.
|
|
1992
1950
|
* @throws {RequiredError}
|
|
1993
1951
|
*/
|
|
1994
|
-
|
|
1952
|
+
getVirtualRobotConfiguration: async (cell, controller, options = {}) => {
|
|
1995
1953
|
// verify required parameter 'cell' is not null or undefined
|
|
1996
|
-
assertParamExists('
|
|
1954
|
+
assertParamExists('getVirtualRobotConfiguration', 'cell', cell);
|
|
1997
1955
|
// verify required parameter 'controller' is not null or undefined
|
|
1998
|
-
assertParamExists('
|
|
1956
|
+
assertParamExists('getVirtualRobotConfiguration', 'controller', controller);
|
|
1999
1957
|
const localVarPath = `/cells/{cell}/controllers/{controller}/virtual-robot-configuration`
|
|
2000
1958
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
2001
1959
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
|
|
@@ -2332,20 +2290,6 @@ export const ControllerApiFp = function (configuration) {
|
|
|
2332
2290
|
const localVarOperationServerBasePath = operationServerMap['ControllerApi.deleteRobotController']?.[localVarOperationServerIndex]?.url;
|
|
2333
2291
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2334
2292
|
},
|
|
2335
|
-
/**
|
|
2336
|
-
* Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](getMotionGroupDescription) to get more information about the motion group.
|
|
2337
|
-
* @summary Description
|
|
2338
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2339
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
2340
|
-
* @param {*} [options] Override http request option.
|
|
2341
|
-
* @throws {RequiredError}
|
|
2342
|
-
*/
|
|
2343
|
-
async getControllerDescription(cell, controller, options) {
|
|
2344
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getControllerDescription(cell, controller, options);
|
|
2345
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2346
|
-
const localVarOperationServerBasePath = operationServerMap['ControllerApi.getControllerDescription']?.[localVarOperationServerIndex]?.url;
|
|
2347
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2348
|
-
},
|
|
2349
2293
|
/**
|
|
2350
2294
|
* Request a coordinate system specification for a given identifier. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with \"On\" + the unique identifier of the robot controller.
|
|
2351
2295
|
* @summary Coordinate System
|
|
@@ -2405,17 +2349,17 @@ export const ControllerApiFp = function (configuration) {
|
|
|
2405
2349
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2406
2350
|
},
|
|
2407
2351
|
/**
|
|
2408
|
-
* Receive
|
|
2409
|
-
* @summary Virtual
|
|
2352
|
+
* Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **NOTE** > > The output generated by this endpoint can be too large for the site to handle, and may produce an error or incorrect output. > Use `curl` in combination with `> output.json` to capture the output, or use an API client like Postman.
|
|
2353
|
+
* @summary Virtual Robot Configuration
|
|
2410
2354
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2411
2355
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
2412
2356
|
* @param {*} [options] Override http request option.
|
|
2413
2357
|
* @throws {RequiredError}
|
|
2414
2358
|
*/
|
|
2415
|
-
async
|
|
2416
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
2359
|
+
async getVirtualRobotConfiguration(cell, controller, options) {
|
|
2360
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualRobotConfiguration(cell, controller, options);
|
|
2417
2361
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
2418
|
-
const localVarOperationServerBasePath = operationServerMap['ControllerApi.
|
|
2362
|
+
const localVarOperationServerBasePath = operationServerMap['ControllerApi.getVirtualRobotConfiguration']?.[localVarOperationServerIndex]?.url;
|
|
2419
2363
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2420
2364
|
},
|
|
2421
2365
|
/**
|
|
@@ -2551,17 +2495,6 @@ export const ControllerApiFactory = function (configuration, basePath, axios) {
|
|
|
2551
2495
|
deleteRobotController(cell, controller, completionTimeout, options) {
|
|
2552
2496
|
return localVarFp.deleteRobotController(cell, controller, completionTimeout, options).then((request) => request(axios, basePath));
|
|
2553
2497
|
},
|
|
2554
|
-
/**
|
|
2555
|
-
* Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](getMotionGroupDescription) to get more information about the motion group.
|
|
2556
|
-
* @summary Description
|
|
2557
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2558
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
2559
|
-
* @param {*} [options] Override http request option.
|
|
2560
|
-
* @throws {RequiredError}
|
|
2561
|
-
*/
|
|
2562
|
-
getControllerDescription(cell, controller, options) {
|
|
2563
|
-
return localVarFp.getControllerDescription(cell, controller, options).then((request) => request(axios, basePath));
|
|
2564
|
-
},
|
|
2565
2498
|
/**
|
|
2566
2499
|
* Request a coordinate system specification for a given identifier. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with \"On\" + the unique identifier of the robot controller.
|
|
2567
2500
|
* @summary Coordinate System
|
|
@@ -2609,15 +2542,15 @@ export const ControllerApiFactory = function (configuration, basePath, axios) {
|
|
|
2609
2542
|
return localVarFp.getRobotController(cell, controller, options).then((request) => request(axios, basePath));
|
|
2610
2543
|
},
|
|
2611
2544
|
/**
|
|
2612
|
-
* Receive
|
|
2613
|
-
* @summary Virtual
|
|
2545
|
+
* Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **NOTE** > > The output generated by this endpoint can be too large for the site to handle, and may produce an error or incorrect output. > Use `curl` in combination with `> output.json` to capture the output, or use an API client like Postman.
|
|
2546
|
+
* @summary Virtual Robot Configuration
|
|
2614
2547
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2615
2548
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
2616
2549
|
* @param {*} [options] Override http request option.
|
|
2617
2550
|
* @throws {RequiredError}
|
|
2618
2551
|
*/
|
|
2619
|
-
|
|
2620
|
-
return localVarFp.
|
|
2552
|
+
getVirtualRobotConfiguration(cell, controller, options) {
|
|
2553
|
+
return localVarFp.getVirtualRobotConfiguration(cell, controller, options).then((request) => request(axios, basePath));
|
|
2621
2554
|
},
|
|
2622
2555
|
/**
|
|
2623
2556
|
* Lists all specifications of coordinate systems from robot controllers. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with \"On\" + the unique identifier of the robot controller.
|
|
@@ -2737,18 +2670,6 @@ export class ControllerApi extends BaseAPI {
|
|
|
2737
2670
|
deleteRobotController(cell, controller, completionTimeout, options) {
|
|
2738
2671
|
return ControllerApiFp(this.configuration).deleteRobotController(cell, controller, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
2739
2672
|
}
|
|
2740
|
-
/**
|
|
2741
|
-
* Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](getMotionGroupDescription) to get more information about the motion group.
|
|
2742
|
-
* @summary Description
|
|
2743
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2744
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
2745
|
-
* @param {*} [options] Override http request option.
|
|
2746
|
-
* @throws {RequiredError}
|
|
2747
|
-
* @memberof ControllerApi
|
|
2748
|
-
*/
|
|
2749
|
-
getControllerDescription(cell, controller, options) {
|
|
2750
|
-
return ControllerApiFp(this.configuration).getControllerDescription(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
2751
|
-
}
|
|
2752
2673
|
/**
|
|
2753
2674
|
* Request a coordinate system specification for a given identifier. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with \"On\" + the unique identifier of the robot controller.
|
|
2754
2675
|
* @summary Coordinate System
|
|
@@ -2800,16 +2721,16 @@ export class ControllerApi extends BaseAPI {
|
|
|
2800
2721
|
return ControllerApiFp(this.configuration).getRobotController(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
2801
2722
|
}
|
|
2802
2723
|
/**
|
|
2803
|
-
* Receive
|
|
2804
|
-
* @summary Virtual
|
|
2724
|
+
* Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **NOTE** > > The output generated by this endpoint can be too large for the site to handle, and may produce an error or incorrect output. > Use `curl` in combination with `> output.json` to capture the output, or use an API client like Postman.
|
|
2725
|
+
* @summary Virtual Robot Configuration
|
|
2805
2726
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2806
2727
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
2807
2728
|
* @param {*} [options] Override http request option.
|
|
2808
2729
|
* @throws {RequiredError}
|
|
2809
2730
|
* @memberof ControllerApi
|
|
2810
2731
|
*/
|
|
2811
|
-
|
|
2812
|
-
return ControllerApiFp(this.configuration).
|
|
2732
|
+
getVirtualRobotConfiguration(cell, controller, options) {
|
|
2733
|
+
return ControllerApiFp(this.configuration).getVirtualRobotConfiguration(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
2813
2734
|
}
|
|
2814
2735
|
/**
|
|
2815
2736
|
* Lists all specifications of coordinate systems from robot controllers. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with \"On\" + the unique identifier of the robot controller.
|
|
@@ -7474,15 +7395,15 @@ export const VirtualControllerApiAxiosParamCreator = function (configuration) {
|
|
|
7474
7395
|
* @param {*} [options] Override http request option.
|
|
7475
7396
|
* @throws {RequiredError}
|
|
7476
7397
|
*/
|
|
7477
|
-
|
|
7398
|
+
addVirtualRobotCoordinateSystem: async (cell, controller, coordinateSystem, coordinateSystemData, options = {}) => {
|
|
7478
7399
|
// verify required parameter 'cell' is not null or undefined
|
|
7479
|
-
assertParamExists('
|
|
7400
|
+
assertParamExists('addVirtualRobotCoordinateSystem', 'cell', cell);
|
|
7480
7401
|
// verify required parameter 'controller' is not null or undefined
|
|
7481
|
-
assertParamExists('
|
|
7402
|
+
assertParamExists('addVirtualRobotCoordinateSystem', 'controller', controller);
|
|
7482
7403
|
// verify required parameter 'coordinateSystem' is not null or undefined
|
|
7483
|
-
assertParamExists('
|
|
7404
|
+
assertParamExists('addVirtualRobotCoordinateSystem', 'coordinateSystem', coordinateSystem);
|
|
7484
7405
|
// verify required parameter 'coordinateSystemData' is not null or undefined
|
|
7485
|
-
assertParamExists('
|
|
7406
|
+
assertParamExists('addVirtualRobotCoordinateSystem', 'coordinateSystemData', coordinateSystemData);
|
|
7486
7407
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/coordinate-systems/{coordinate-system}`
|
|
7487
7408
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
7488
7409
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)))
|
|
@@ -7523,17 +7444,17 @@ export const VirtualControllerApiAxiosParamCreator = function (configuration) {
|
|
|
7523
7444
|
* @param {*} [options] Override http request option.
|
|
7524
7445
|
* @throws {RequiredError}
|
|
7525
7446
|
*/
|
|
7526
|
-
|
|
7447
|
+
addVirtualRobotTcp: async (cell, controller, motionGroup, tcp, robotTcpData, options = {}) => {
|
|
7527
7448
|
// verify required parameter 'cell' is not null or undefined
|
|
7528
|
-
assertParamExists('
|
|
7449
|
+
assertParamExists('addVirtualRobotTcp', 'cell', cell);
|
|
7529
7450
|
// verify required parameter 'controller' is not null or undefined
|
|
7530
|
-
assertParamExists('
|
|
7451
|
+
assertParamExists('addVirtualRobotTcp', 'controller', controller);
|
|
7531
7452
|
// verify required parameter 'motionGroup' is not null or undefined
|
|
7532
|
-
assertParamExists('
|
|
7453
|
+
assertParamExists('addVirtualRobotTcp', 'motionGroup', motionGroup);
|
|
7533
7454
|
// verify required parameter 'tcp' is not null or undefined
|
|
7534
|
-
assertParamExists('
|
|
7455
|
+
assertParamExists('addVirtualRobotTcp', 'tcp', tcp);
|
|
7535
7456
|
// verify required parameter 'robotTcpData' is not null or undefined
|
|
7536
|
-
assertParamExists('
|
|
7457
|
+
assertParamExists('addVirtualRobotTcp', 'robotTcpData', robotTcpData);
|
|
7537
7458
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/motion-groups/{motion-group}/tcps/{tcp}`
|
|
7538
7459
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
7539
7460
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)))
|
|
@@ -7574,13 +7495,13 @@ export const VirtualControllerApiAxiosParamCreator = function (configuration) {
|
|
|
7574
7495
|
* @param {*} [options] Override http request option.
|
|
7575
7496
|
* @throws {RequiredError}
|
|
7576
7497
|
*/
|
|
7577
|
-
|
|
7498
|
+
deleteVirtualRobotCoordinateSystem: async (cell, controller, coordinateSystem, deleteDependent, options = {}) => {
|
|
7578
7499
|
// verify required parameter 'cell' is not null or undefined
|
|
7579
|
-
assertParamExists('
|
|
7500
|
+
assertParamExists('deleteVirtualRobotCoordinateSystem', 'cell', cell);
|
|
7580
7501
|
// verify required parameter 'controller' is not null or undefined
|
|
7581
|
-
assertParamExists('
|
|
7502
|
+
assertParamExists('deleteVirtualRobotCoordinateSystem', 'controller', controller);
|
|
7582
7503
|
// verify required parameter 'coordinateSystem' is not null or undefined
|
|
7583
|
-
assertParamExists('
|
|
7504
|
+
assertParamExists('deleteVirtualRobotCoordinateSystem', 'coordinateSystem', coordinateSystem);
|
|
7584
7505
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/coordinate-systems/{coordinate-system}`
|
|
7585
7506
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
7586
7507
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)))
|
|
@@ -7621,15 +7542,15 @@ export const VirtualControllerApiAxiosParamCreator = function (configuration) {
|
|
|
7621
7542
|
* @param {*} [options] Override http request option.
|
|
7622
7543
|
* @throws {RequiredError}
|
|
7623
7544
|
*/
|
|
7624
|
-
|
|
7545
|
+
deleteVirtualRobotTcp: async (cell, controller, motionGroup, tcp, options = {}) => {
|
|
7625
7546
|
// verify required parameter 'cell' is not null or undefined
|
|
7626
|
-
assertParamExists('
|
|
7547
|
+
assertParamExists('deleteVirtualRobotTcp', 'cell', cell);
|
|
7627
7548
|
// verify required parameter 'controller' is not null or undefined
|
|
7628
|
-
assertParamExists('
|
|
7549
|
+
assertParamExists('deleteVirtualRobotTcp', 'controller', controller);
|
|
7629
7550
|
// verify required parameter 'motionGroup' is not null or undefined
|
|
7630
|
-
assertParamExists('
|
|
7551
|
+
assertParamExists('deleteVirtualRobotTcp', 'motionGroup', motionGroup);
|
|
7631
7552
|
// verify required parameter 'tcp' is not null or undefined
|
|
7632
|
-
assertParamExists('
|
|
7553
|
+
assertParamExists('deleteVirtualRobotTcp', 'tcp', tcp);
|
|
7633
7554
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/motion-groups/{motion-group}/tcps/{tcp}`
|
|
7634
7555
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
7635
7556
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)))
|
|
@@ -7827,13 +7748,13 @@ export const VirtualControllerApiAxiosParamCreator = function (configuration) {
|
|
|
7827
7748
|
* @param {*} [options] Override http request option.
|
|
7828
7749
|
* @throws {RequiredError}
|
|
7829
7750
|
*/
|
|
7830
|
-
|
|
7751
|
+
getVirtualRobotMounting: async (cell, controller, motionGroup, options = {}) => {
|
|
7831
7752
|
// verify required parameter 'cell' is not null or undefined
|
|
7832
|
-
assertParamExists('
|
|
7753
|
+
assertParamExists('getVirtualRobotMounting', 'cell', cell);
|
|
7833
7754
|
// verify required parameter 'controller' is not null or undefined
|
|
7834
|
-
assertParamExists('
|
|
7755
|
+
assertParamExists('getVirtualRobotMounting', 'controller', controller);
|
|
7835
7756
|
// verify required parameter 'motionGroup' is not null or undefined
|
|
7836
|
-
assertParamExists('
|
|
7757
|
+
assertParamExists('getVirtualRobotMounting', 'motionGroup', motionGroup);
|
|
7837
7758
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/motion-groups/{motion-group}/mounting`
|
|
7838
7759
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
7839
7760
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)))
|
|
@@ -7869,11 +7790,11 @@ export const VirtualControllerApiAxiosParamCreator = function (configuration) {
|
|
|
7869
7790
|
* @param {*} [options] Override http request option.
|
|
7870
7791
|
* @throws {RequiredError}
|
|
7871
7792
|
*/
|
|
7872
|
-
|
|
7793
|
+
listVirtualRobotCoordinateSystems: async (cell, controller, options = {}) => {
|
|
7873
7794
|
// verify required parameter 'cell' is not null or undefined
|
|
7874
|
-
assertParamExists('
|
|
7795
|
+
assertParamExists('listVirtualRobotCoordinateSystems', 'cell', cell);
|
|
7875
7796
|
// verify required parameter 'controller' is not null or undefined
|
|
7876
|
-
assertParamExists('
|
|
7797
|
+
assertParamExists('listVirtualRobotCoordinateSystems', 'controller', controller);
|
|
7877
7798
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/coordinate-systems`
|
|
7878
7799
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
7879
7800
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
|
|
@@ -7909,13 +7830,13 @@ export const VirtualControllerApiAxiosParamCreator = function (configuration) {
|
|
|
7909
7830
|
* @param {*} [options] Override http request option.
|
|
7910
7831
|
* @throws {RequiredError}
|
|
7911
7832
|
*/
|
|
7912
|
-
|
|
7833
|
+
listVirtualRobotTcps: async (cell, controller, motionGroup, options = {}) => {
|
|
7913
7834
|
// verify required parameter 'cell' is not null or undefined
|
|
7914
|
-
assertParamExists('
|
|
7835
|
+
assertParamExists('listVirtualRobotTcps', 'cell', cell);
|
|
7915
7836
|
// verify required parameter 'controller' is not null or undefined
|
|
7916
|
-
assertParamExists('
|
|
7837
|
+
assertParamExists('listVirtualRobotTcps', 'controller', controller);
|
|
7917
7838
|
// verify required parameter 'motionGroup' is not null or undefined
|
|
7918
|
-
assertParamExists('
|
|
7839
|
+
assertParamExists('listVirtualRobotTcps', 'motionGroup', motionGroup);
|
|
7919
7840
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/motion-groups/{motion-group}/tcps`
|
|
7920
7841
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
7921
7842
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)))
|
|
@@ -8089,15 +8010,15 @@ export const VirtualControllerApiAxiosParamCreator = function (configuration) {
|
|
|
8089
8010
|
* @param {*} [options] Override http request option.
|
|
8090
8011
|
* @throws {RequiredError}
|
|
8091
8012
|
*/
|
|
8092
|
-
|
|
8013
|
+
setVirtualRobotMounting: async (cell, controller, motionGroup, coordinateSystem, options = {}) => {
|
|
8093
8014
|
// verify required parameter 'cell' is not null or undefined
|
|
8094
|
-
assertParamExists('
|
|
8015
|
+
assertParamExists('setVirtualRobotMounting', 'cell', cell);
|
|
8095
8016
|
// verify required parameter 'controller' is not null or undefined
|
|
8096
|
-
assertParamExists('
|
|
8017
|
+
assertParamExists('setVirtualRobotMounting', 'controller', controller);
|
|
8097
8018
|
// verify required parameter 'motionGroup' is not null or undefined
|
|
8098
|
-
assertParamExists('
|
|
8019
|
+
assertParamExists('setVirtualRobotMounting', 'motionGroup', motionGroup);
|
|
8099
8020
|
// verify required parameter 'coordinateSystem' is not null or undefined
|
|
8100
|
-
assertParamExists('
|
|
8021
|
+
assertParamExists('setVirtualRobotMounting', 'coordinateSystem', coordinateSystem);
|
|
8101
8022
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/motion-groups/{motion-group}/mounting`
|
|
8102
8023
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
8103
8024
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)))
|
|
@@ -8146,10 +8067,10 @@ export const VirtualControllerApiFp = function (configuration) {
|
|
|
8146
8067
|
* @param {*} [options] Override http request option.
|
|
8147
8068
|
* @throws {RequiredError}
|
|
8148
8069
|
*/
|
|
8149
|
-
async
|
|
8150
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
8070
|
+
async addVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options) {
|
|
8071
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options);
|
|
8151
8072
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8152
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.
|
|
8073
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.addVirtualRobotCoordinateSystem']?.[localVarOperationServerIndex]?.url;
|
|
8153
8074
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8154
8075
|
},
|
|
8155
8076
|
/**
|
|
@@ -8163,10 +8084,10 @@ export const VirtualControllerApiFp = function (configuration) {
|
|
|
8163
8084
|
* @param {*} [options] Override http request option.
|
|
8164
8085
|
* @throws {RequiredError}
|
|
8165
8086
|
*/
|
|
8166
|
-
async
|
|
8167
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
8087
|
+
async addVirtualRobotTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
8088
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualRobotTcp(cell, controller, motionGroup, tcp, robotTcpData, options);
|
|
8168
8089
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8169
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.
|
|
8090
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.addVirtualRobotTcp']?.[localVarOperationServerIndex]?.url;
|
|
8170
8091
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8171
8092
|
},
|
|
8172
8093
|
/**
|
|
@@ -8179,10 +8100,10 @@ export const VirtualControllerApiFp = function (configuration) {
|
|
|
8179
8100
|
* @param {*} [options] Override http request option.
|
|
8180
8101
|
* @throws {RequiredError}
|
|
8181
8102
|
*/
|
|
8182
|
-
async
|
|
8183
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
8103
|
+
async deleteVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
8104
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options);
|
|
8184
8105
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8185
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.
|
|
8106
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.deleteVirtualRobotCoordinateSystem']?.[localVarOperationServerIndex]?.url;
|
|
8186
8107
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8187
8108
|
},
|
|
8188
8109
|
/**
|
|
@@ -8195,10 +8116,10 @@ export const VirtualControllerApiFp = function (configuration) {
|
|
|
8195
8116
|
* @param {*} [options] Override http request option.
|
|
8196
8117
|
* @throws {RequiredError}
|
|
8197
8118
|
*/
|
|
8198
|
-
async
|
|
8199
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
8119
|
+
async deleteVirtualRobotTcp(cell, controller, motionGroup, tcp, options) {
|
|
8120
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualRobotTcp(cell, controller, motionGroup, tcp, options);
|
|
8200
8121
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8201
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.
|
|
8122
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.deleteVirtualRobotTcp']?.[localVarOperationServerIndex]?.url;
|
|
8202
8123
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8203
8124
|
},
|
|
8204
8125
|
/**
|
|
@@ -8267,10 +8188,10 @@ export const VirtualControllerApiFp = function (configuration) {
|
|
|
8267
8188
|
* @param {*} [options] Override http request option.
|
|
8268
8189
|
* @throws {RequiredError}
|
|
8269
8190
|
*/
|
|
8270
|
-
async
|
|
8271
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
8191
|
+
async getVirtualRobotMounting(cell, controller, motionGroup, options) {
|
|
8192
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualRobotMounting(cell, controller, motionGroup, options);
|
|
8272
8193
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8273
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.
|
|
8194
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.getVirtualRobotMounting']?.[localVarOperationServerIndex]?.url;
|
|
8274
8195
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8275
8196
|
},
|
|
8276
8197
|
/**
|
|
@@ -8281,10 +8202,10 @@ export const VirtualControllerApiFp = function (configuration) {
|
|
|
8281
8202
|
* @param {*} [options] Override http request option.
|
|
8282
8203
|
* @throws {RequiredError}
|
|
8283
8204
|
*/
|
|
8284
|
-
async
|
|
8285
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
8205
|
+
async listVirtualRobotCoordinateSystems(cell, controller, options) {
|
|
8206
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualRobotCoordinateSystems(cell, controller, options);
|
|
8286
8207
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8287
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.
|
|
8208
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.listVirtualRobotCoordinateSystems']?.[localVarOperationServerIndex]?.url;
|
|
8288
8209
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8289
8210
|
},
|
|
8290
8211
|
/**
|
|
@@ -8296,10 +8217,10 @@ export const VirtualControllerApiFp = function (configuration) {
|
|
|
8296
8217
|
* @param {*} [options] Override http request option.
|
|
8297
8218
|
* @throws {RequiredError}
|
|
8298
8219
|
*/
|
|
8299
|
-
async
|
|
8300
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
8220
|
+
async listVirtualRobotTcps(cell, controller, motionGroup, options) {
|
|
8221
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualRobotTcps(cell, controller, motionGroup, options);
|
|
8301
8222
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8302
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.
|
|
8223
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.listVirtualRobotTcps']?.[localVarOperationServerIndex]?.url;
|
|
8303
8224
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8304
8225
|
},
|
|
8305
8226
|
/**
|
|
@@ -8358,10 +8279,10 @@ export const VirtualControllerApiFp = function (configuration) {
|
|
|
8358
8279
|
* @param {*} [options] Override http request option.
|
|
8359
8280
|
* @throws {RequiredError}
|
|
8360
8281
|
*/
|
|
8361
|
-
async
|
|
8362
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
8282
|
+
async setVirtualRobotMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
8283
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualRobotMounting(cell, controller, motionGroup, coordinateSystem, options);
|
|
8363
8284
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8364
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.
|
|
8285
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.setVirtualRobotMounting']?.[localVarOperationServerIndex]?.url;
|
|
8365
8286
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8366
8287
|
},
|
|
8367
8288
|
};
|
|
@@ -8383,8 +8304,8 @@ export const VirtualControllerApiFactory = function (configuration, basePath, ax
|
|
|
8383
8304
|
* @param {*} [options] Override http request option.
|
|
8384
8305
|
* @throws {RequiredError}
|
|
8385
8306
|
*/
|
|
8386
|
-
|
|
8387
|
-
return localVarFp.
|
|
8307
|
+
addVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options) {
|
|
8308
|
+
return localVarFp.addVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios, basePath));
|
|
8388
8309
|
},
|
|
8389
8310
|
/**
|
|
8390
8311
|
* Adds a new TCP or updates an existing TCP in the motion group. The position and rotation values in the request body are defined within the flange’s coordinate system. > **NOTE** > > Ensure the TCP\'s position is within the robot\'s reach. Refer to the robot’s documentation or data sheet for details like joint limits or reach.
|
|
@@ -8397,8 +8318,8 @@ export const VirtualControllerApiFactory = function (configuration, basePath, ax
|
|
|
8397
8318
|
* @param {*} [options] Override http request option.
|
|
8398
8319
|
* @throws {RequiredError}
|
|
8399
8320
|
*/
|
|
8400
|
-
|
|
8401
|
-
return localVarFp.
|
|
8321
|
+
addVirtualRobotTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
8322
|
+
return localVarFp.addVirtualRobotTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios, basePath));
|
|
8402
8323
|
},
|
|
8403
8324
|
/**
|
|
8404
8325
|
* Deletes a coordinate system from the virtual controller. This will remove the coordinate system from the list of coordinate systems and remove all dependent coordinate systems which use the deleted coordinate system as reference.
|
|
@@ -8410,8 +8331,8 @@ export const VirtualControllerApiFactory = function (configuration, basePath, ax
|
|
|
8410
8331
|
* @param {*} [options] Override http request option.
|
|
8411
8332
|
* @throws {RequiredError}
|
|
8412
8333
|
*/
|
|
8413
|
-
|
|
8414
|
-
return localVarFp.
|
|
8334
|
+
deleteVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
8335
|
+
return localVarFp.deleteVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios, basePath));
|
|
8415
8336
|
},
|
|
8416
8337
|
/**
|
|
8417
8338
|
* Removes the TCP from the motion group. An unknown TCP is a valid input.
|
|
@@ -8423,8 +8344,8 @@ export const VirtualControllerApiFactory = function (configuration, basePath, ax
|
|
|
8423
8344
|
* @param {*} [options] Override http request option.
|
|
8424
8345
|
* @throws {RequiredError}
|
|
8425
8346
|
*/
|
|
8426
|
-
|
|
8427
|
-
return localVarFp.
|
|
8347
|
+
deleteVirtualRobotTcp(cell, controller, motionGroup, tcp, options) {
|
|
8348
|
+
return localVarFp.deleteVirtualRobotTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios, basePath));
|
|
8428
8349
|
},
|
|
8429
8350
|
/**
|
|
8430
8351
|
* Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
|
|
@@ -8480,8 +8401,8 @@ export const VirtualControllerApiFactory = function (configuration, basePath, ax
|
|
|
8480
8401
|
* @param {*} [options] Override http request option.
|
|
8481
8402
|
* @throws {RequiredError}
|
|
8482
8403
|
*/
|
|
8483
|
-
|
|
8484
|
-
return localVarFp.
|
|
8404
|
+
getVirtualRobotMounting(cell, controller, motionGroup, options) {
|
|
8405
|
+
return localVarFp.getVirtualRobotMounting(cell, controller, motionGroup, options).then((request) => request(axios, basePath));
|
|
8485
8406
|
},
|
|
8486
8407
|
/**
|
|
8487
8408
|
* Lists all coordinate systems on the robot controller.
|
|
@@ -8491,8 +8412,8 @@ export const VirtualControllerApiFactory = function (configuration, basePath, ax
|
|
|
8491
8412
|
* @param {*} [options] Override http request option.
|
|
8492
8413
|
* @throws {RequiredError}
|
|
8493
8414
|
*/
|
|
8494
|
-
|
|
8495
|
-
return localVarFp.
|
|
8415
|
+
listVirtualRobotCoordinateSystems(cell, controller, options) {
|
|
8416
|
+
return localVarFp.listVirtualRobotCoordinateSystems(cell, controller, options).then((request) => request(axios, basePath));
|
|
8496
8417
|
},
|
|
8497
8418
|
/**
|
|
8498
8419
|
* Lists TCPs of the motion group. An empty TCP list is valid, for example for external axes.
|
|
@@ -8503,8 +8424,8 @@ export const VirtualControllerApiFactory = function (configuration, basePath, ax
|
|
|
8503
8424
|
* @param {*} [options] Override http request option.
|
|
8504
8425
|
* @throws {RequiredError}
|
|
8505
8426
|
*/
|
|
8506
|
-
|
|
8507
|
-
return localVarFp.
|
|
8427
|
+
listVirtualRobotTcps(cell, controller, motionGroup, options) {
|
|
8428
|
+
return localVarFp.listVirtualRobotTcps(cell, controller, motionGroup, options).then((request) => request(axios, basePath));
|
|
8508
8429
|
},
|
|
8509
8430
|
/**
|
|
8510
8431
|
* Activates or releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions. The stop is executed on physical controllers immediately not gracefully and not on paths. Due to restricted physical behavior of the virtual robot controller, the Emergency Stop is executed on paths. To return to normal operation the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
|
|
@@ -8553,8 +8474,8 @@ export const VirtualControllerApiFactory = function (configuration, basePath, ax
|
|
|
8553
8474
|
* @param {*} [options] Override http request option.
|
|
8554
8475
|
* @throws {RequiredError}
|
|
8555
8476
|
*/
|
|
8556
|
-
|
|
8557
|
-
return localVarFp.
|
|
8477
|
+
setVirtualRobotMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
8478
|
+
return localVarFp.setVirtualRobotMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(axios, basePath));
|
|
8558
8479
|
},
|
|
8559
8480
|
};
|
|
8560
8481
|
};
|
|
@@ -8576,8 +8497,8 @@ export class VirtualControllerApi extends BaseAPI {
|
|
|
8576
8497
|
* @throws {RequiredError}
|
|
8577
8498
|
* @memberof VirtualControllerApi
|
|
8578
8499
|
*/
|
|
8579
|
-
|
|
8580
|
-
return VirtualControllerApiFp(this.configuration).
|
|
8500
|
+
addVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options) {
|
|
8501
|
+
return VirtualControllerApiFp(this.configuration).addVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(this.axios, this.basePath));
|
|
8581
8502
|
}
|
|
8582
8503
|
/**
|
|
8583
8504
|
* Adds a new TCP or updates an existing TCP in the motion group. The position and rotation values in the request body are defined within the flange’s coordinate system. > **NOTE** > > Ensure the TCP\'s position is within the robot\'s reach. Refer to the robot’s documentation or data sheet for details like joint limits or reach.
|
|
@@ -8591,8 +8512,8 @@ export class VirtualControllerApi extends BaseAPI {
|
|
|
8591
8512
|
* @throws {RequiredError}
|
|
8592
8513
|
* @memberof VirtualControllerApi
|
|
8593
8514
|
*/
|
|
8594
|
-
|
|
8595
|
-
return VirtualControllerApiFp(this.configuration).
|
|
8515
|
+
addVirtualRobotTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
8516
|
+
return VirtualControllerApiFp(this.configuration).addVirtualRobotTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(this.axios, this.basePath));
|
|
8596
8517
|
}
|
|
8597
8518
|
/**
|
|
8598
8519
|
* Deletes a coordinate system from the virtual controller. This will remove the coordinate system from the list of coordinate systems and remove all dependent coordinate systems which use the deleted coordinate system as reference.
|
|
@@ -8605,8 +8526,8 @@ export class VirtualControllerApi extends BaseAPI {
|
|
|
8605
8526
|
* @throws {RequiredError}
|
|
8606
8527
|
* @memberof VirtualControllerApi
|
|
8607
8528
|
*/
|
|
8608
|
-
|
|
8609
|
-
return VirtualControllerApiFp(this.configuration).
|
|
8529
|
+
deleteVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
8530
|
+
return VirtualControllerApiFp(this.configuration).deleteVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(this.axios, this.basePath));
|
|
8610
8531
|
}
|
|
8611
8532
|
/**
|
|
8612
8533
|
* Removes the TCP from the motion group. An unknown TCP is a valid input.
|
|
@@ -8619,8 +8540,8 @@ export class VirtualControllerApi extends BaseAPI {
|
|
|
8619
8540
|
* @throws {RequiredError}
|
|
8620
8541
|
* @memberof VirtualControllerApi
|
|
8621
8542
|
*/
|
|
8622
|
-
|
|
8623
|
-
return VirtualControllerApiFp(this.configuration).
|
|
8543
|
+
deleteVirtualRobotTcp(cell, controller, motionGroup, tcp, options) {
|
|
8544
|
+
return VirtualControllerApiFp(this.configuration).deleteVirtualRobotTcp(cell, controller, motionGroup, tcp, options).then((request) => request(this.axios, this.basePath));
|
|
8624
8545
|
}
|
|
8625
8546
|
/**
|
|
8626
8547
|
* Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
|
|
@@ -8681,8 +8602,8 @@ export class VirtualControllerApi extends BaseAPI {
|
|
|
8681
8602
|
* @throws {RequiredError}
|
|
8682
8603
|
* @memberof VirtualControllerApi
|
|
8683
8604
|
*/
|
|
8684
|
-
|
|
8685
|
-
return VirtualControllerApiFp(this.configuration).
|
|
8605
|
+
getVirtualRobotMounting(cell, controller, motionGroup, options) {
|
|
8606
|
+
return VirtualControllerApiFp(this.configuration).getVirtualRobotMounting(cell, controller, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
8686
8607
|
}
|
|
8687
8608
|
/**
|
|
8688
8609
|
* Lists all coordinate systems on the robot controller.
|
|
@@ -8693,8 +8614,8 @@ export class VirtualControllerApi extends BaseAPI {
|
|
|
8693
8614
|
* @throws {RequiredError}
|
|
8694
8615
|
* @memberof VirtualControllerApi
|
|
8695
8616
|
*/
|
|
8696
|
-
|
|
8697
|
-
return VirtualControllerApiFp(this.configuration).
|
|
8617
|
+
listVirtualRobotCoordinateSystems(cell, controller, options) {
|
|
8618
|
+
return VirtualControllerApiFp(this.configuration).listVirtualRobotCoordinateSystems(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
8698
8619
|
}
|
|
8699
8620
|
/**
|
|
8700
8621
|
* Lists TCPs of the motion group. An empty TCP list is valid, for example for external axes.
|
|
@@ -8706,8 +8627,8 @@ export class VirtualControllerApi extends BaseAPI {
|
|
|
8706
8627
|
* @throws {RequiredError}
|
|
8707
8628
|
* @memberof VirtualControllerApi
|
|
8708
8629
|
*/
|
|
8709
|
-
|
|
8710
|
-
return VirtualControllerApiFp(this.configuration).
|
|
8630
|
+
listVirtualRobotTcps(cell, controller, motionGroup, options) {
|
|
8631
|
+
return VirtualControllerApiFp(this.configuration).listVirtualRobotTcps(cell, controller, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
8711
8632
|
}
|
|
8712
8633
|
/**
|
|
8713
8634
|
* Activates or releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions. The stop is executed on physical controllers immediately not gracefully and not on paths. Due to restricted physical behavior of the virtual robot controller, the Emergency Stop is executed on paths. To return to normal operation the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
|
|
@@ -8760,8 +8681,8 @@ export class VirtualControllerApi extends BaseAPI {
|
|
|
8760
8681
|
* @throws {RequiredError}
|
|
8761
8682
|
* @memberof VirtualControllerApi
|
|
8762
8683
|
*/
|
|
8763
|
-
|
|
8764
|
-
return VirtualControllerApiFp(this.configuration).
|
|
8684
|
+
setVirtualRobotMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
8685
|
+
return VirtualControllerApiFp(this.configuration).setVirtualRobotMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
8765
8686
|
}
|
|
8766
8687
|
}
|
|
8767
8688
|
/**
|
|
@@ -8854,18 +8775,18 @@ export const VirtualControllerBehaviorApiAxiosParamCreator = function (configura
|
|
|
8854
8775
|
};
|
|
8855
8776
|
},
|
|
8856
8777
|
/**
|
|
8857
|
-
* Get the current virtual controller behavior - please see the setter [
|
|
8778
|
+
* Get the current virtual controller behavior - please see the setter [setVirtualRobotBehavior](setVirtualRobotBehavior) and the enum for details.
|
|
8858
8779
|
* @summary Get Behavior
|
|
8859
8780
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8860
8781
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
8861
8782
|
* @param {*} [options] Override http request option.
|
|
8862
8783
|
* @throws {RequiredError}
|
|
8863
8784
|
*/
|
|
8864
|
-
|
|
8785
|
+
getVirtualRobotBehavior: async (cell, controller, options = {}) => {
|
|
8865
8786
|
// verify required parameter 'cell' is not null or undefined
|
|
8866
|
-
assertParamExists('
|
|
8787
|
+
assertParamExists('getVirtualRobotBehavior', 'cell', cell);
|
|
8867
8788
|
// verify required parameter 'controller' is not null or undefined
|
|
8868
|
-
assertParamExists('
|
|
8789
|
+
assertParamExists('getVirtualRobotBehavior', 'controller', controller);
|
|
8869
8790
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/behavior`
|
|
8870
8791
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
8871
8792
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
|
|
@@ -8901,11 +8822,11 @@ export const VirtualControllerBehaviorApiAxiosParamCreator = function (configura
|
|
|
8901
8822
|
* @param {*} [options] Override http request option.
|
|
8902
8823
|
* @throws {RequiredError}
|
|
8903
8824
|
*/
|
|
8904
|
-
|
|
8825
|
+
setVirtualRobotBehavior: async (cell, controller, behavior, options = {}) => {
|
|
8905
8826
|
// verify required parameter 'cell' is not null or undefined
|
|
8906
|
-
assertParamExists('
|
|
8827
|
+
assertParamExists('setVirtualRobotBehavior', 'cell', cell);
|
|
8907
8828
|
// verify required parameter 'controller' is not null or undefined
|
|
8908
|
-
assertParamExists('
|
|
8829
|
+
assertParamExists('setVirtualRobotBehavior', 'controller', controller);
|
|
8909
8830
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/behavior`
|
|
8910
8831
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
8911
8832
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
|
|
@@ -8974,17 +8895,17 @@ export const VirtualControllerBehaviorApiFp = function (configuration) {
|
|
|
8974
8895
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8975
8896
|
},
|
|
8976
8897
|
/**
|
|
8977
|
-
* Get the current virtual controller behavior - please see the setter [
|
|
8898
|
+
* Get the current virtual controller behavior - please see the setter [setVirtualRobotBehavior](setVirtualRobotBehavior) and the enum for details.
|
|
8978
8899
|
* @summary Get Behavior
|
|
8979
8900
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8980
8901
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
8981
8902
|
* @param {*} [options] Override http request option.
|
|
8982
8903
|
* @throws {RequiredError}
|
|
8983
8904
|
*/
|
|
8984
|
-
async
|
|
8985
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
8905
|
+
async getVirtualRobotBehavior(cell, controller, options) {
|
|
8906
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualRobotBehavior(cell, controller, options);
|
|
8986
8907
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8987
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerBehaviorApi.
|
|
8908
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerBehaviorApi.getVirtualRobotBehavior']?.[localVarOperationServerIndex]?.url;
|
|
8988
8909
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8989
8910
|
},
|
|
8990
8911
|
/**
|
|
@@ -8996,10 +8917,10 @@ export const VirtualControllerBehaviorApiFp = function (configuration) {
|
|
|
8996
8917
|
* @param {*} [options] Override http request option.
|
|
8997
8918
|
* @throws {RequiredError}
|
|
8998
8919
|
*/
|
|
8999
|
-
async
|
|
9000
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
8920
|
+
async setVirtualRobotBehavior(cell, controller, behavior, options) {
|
|
8921
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualRobotBehavior(cell, controller, behavior, options);
|
|
9001
8922
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9002
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerBehaviorApi.
|
|
8923
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerBehaviorApi.setVirtualRobotBehavior']?.[localVarOperationServerIndex]?.url;
|
|
9003
8924
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
9004
8925
|
},
|
|
9005
8926
|
};
|
|
@@ -9035,15 +8956,15 @@ export const VirtualControllerBehaviorApiFactory = function (configuration, base
|
|
|
9035
8956
|
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios, basePath));
|
|
9036
8957
|
},
|
|
9037
8958
|
/**
|
|
9038
|
-
* Get the current virtual controller behavior - please see the setter [
|
|
8959
|
+
* Get the current virtual controller behavior - please see the setter [setVirtualRobotBehavior](setVirtualRobotBehavior) and the enum for details.
|
|
9039
8960
|
* @summary Get Behavior
|
|
9040
8961
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9041
8962
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
9042
8963
|
* @param {*} [options] Override http request option.
|
|
9043
8964
|
* @throws {RequiredError}
|
|
9044
8965
|
*/
|
|
9045
|
-
|
|
9046
|
-
return localVarFp.
|
|
8966
|
+
getVirtualRobotBehavior(cell, controller, options) {
|
|
8967
|
+
return localVarFp.getVirtualRobotBehavior(cell, controller, options).then((request) => request(axios, basePath));
|
|
9047
8968
|
},
|
|
9048
8969
|
/**
|
|
9049
8970
|
* Set virtual controller behavior.
|
|
@@ -9054,8 +8975,8 @@ export const VirtualControllerBehaviorApiFactory = function (configuration, base
|
|
|
9054
8975
|
* @param {*} [options] Override http request option.
|
|
9055
8976
|
* @throws {RequiredError}
|
|
9056
8977
|
*/
|
|
9057
|
-
|
|
9058
|
-
return localVarFp.
|
|
8978
|
+
setVirtualRobotBehavior(cell, controller, behavior, options) {
|
|
8979
|
+
return localVarFp.setVirtualRobotBehavior(cell, controller, behavior, options).then((request) => request(axios, basePath));
|
|
9059
8980
|
},
|
|
9060
8981
|
};
|
|
9061
8982
|
};
|
|
@@ -9092,7 +9013,7 @@ export class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
9092
9013
|
return VirtualControllerBehaviorApiFp(this.configuration).getCycleTime(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
9093
9014
|
}
|
|
9094
9015
|
/**
|
|
9095
|
-
* Get the current virtual controller behavior - please see the setter [
|
|
9016
|
+
* Get the current virtual controller behavior - please see the setter [setVirtualRobotBehavior](setVirtualRobotBehavior) and the enum for details.
|
|
9096
9017
|
* @summary Get Behavior
|
|
9097
9018
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9098
9019
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9100,8 +9021,8 @@ export class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
9100
9021
|
* @throws {RequiredError}
|
|
9101
9022
|
* @memberof VirtualControllerBehaviorApi
|
|
9102
9023
|
*/
|
|
9103
|
-
|
|
9104
|
-
return VirtualControllerBehaviorApiFp(this.configuration).
|
|
9024
|
+
getVirtualRobotBehavior(cell, controller, options) {
|
|
9025
|
+
return VirtualControllerBehaviorApiFp(this.configuration).getVirtualRobotBehavior(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
9105
9026
|
}
|
|
9106
9027
|
/**
|
|
9107
9028
|
* Set virtual controller behavior.
|
|
@@ -9113,8 +9034,8 @@ export class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
9113
9034
|
* @throws {RequiredError}
|
|
9114
9035
|
* @memberof VirtualControllerBehaviorApi
|
|
9115
9036
|
*/
|
|
9116
|
-
|
|
9117
|
-
return VirtualControllerBehaviorApiFp(this.configuration).
|
|
9037
|
+
setVirtualRobotBehavior(cell, controller, behavior, options) {
|
|
9038
|
+
return VirtualControllerBehaviorApiFp(this.configuration).setVirtualRobotBehavior(cell, controller, behavior, options).then((request) => request(this.axios, this.basePath));
|
|
9118
9039
|
}
|
|
9119
9040
|
}
|
|
9120
9041
|
/**
|
|
@@ -9124,7 +9045,7 @@ export class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
9124
9045
|
export const VirtualControllerInputsOutputsApiAxiosParamCreator = function (configuration) {
|
|
9125
9046
|
return {
|
|
9126
9047
|
/**
|
|
9127
|
-
* Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [
|
|
9048
|
+
* Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualRobotIODescriptions](listVirtualRobotIODescriptions).
|
|
9128
9049
|
* @summary Get Input/Output Values
|
|
9129
9050
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9130
9051
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9180,11 +9101,11 @@ export const VirtualControllerInputsOutputsApiAxiosParamCreator = function (conf
|
|
|
9180
9101
|
* @param {*} [options] Override http request option.
|
|
9181
9102
|
* @throws {RequiredError}
|
|
9182
9103
|
*/
|
|
9183
|
-
|
|
9104
|
+
listVirtualRobotIODescriptions: async (cell, controller, ios, direction, valueType, group, options = {}) => {
|
|
9184
9105
|
// verify required parameter 'cell' is not null or undefined
|
|
9185
|
-
assertParamExists('
|
|
9106
|
+
assertParamExists('listVirtualRobotIODescriptions', 'cell', cell);
|
|
9186
9107
|
// verify required parameter 'controller' is not null or undefined
|
|
9187
|
-
assertParamExists('
|
|
9108
|
+
assertParamExists('listVirtualRobotIODescriptions', 'controller', controller);
|
|
9188
9109
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/ios/description`
|
|
9189
9110
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
9190
9111
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
|
|
@@ -9277,7 +9198,7 @@ export const VirtualControllerInputsOutputsApiFp = function (configuration) {
|
|
|
9277
9198
|
const localVarAxiosParamCreator = VirtualControllerInputsOutputsApiAxiosParamCreator(configuration);
|
|
9278
9199
|
return {
|
|
9279
9200
|
/**
|
|
9280
|
-
* Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [
|
|
9201
|
+
* Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualRobotIODescriptions](listVirtualRobotIODescriptions).
|
|
9281
9202
|
* @summary Get Input/Output Values
|
|
9282
9203
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9283
9204
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9303,10 +9224,10 @@ export const VirtualControllerInputsOutputsApiFp = function (configuration) {
|
|
|
9303
9224
|
* @param {*} [options] Override http request option.
|
|
9304
9225
|
* @throws {RequiredError}
|
|
9305
9226
|
*/
|
|
9306
|
-
async
|
|
9307
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
9227
|
+
async listVirtualRobotIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
9228
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualRobotIODescriptions(cell, controller, ios, direction, valueType, group, options);
|
|
9308
9229
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9309
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerInputsOutputsApi.
|
|
9230
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerInputsOutputsApi.listVirtualRobotIODescriptions']?.[localVarOperationServerIndex]?.url;
|
|
9310
9231
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
9311
9232
|
},
|
|
9312
9233
|
/**
|
|
@@ -9334,7 +9255,7 @@ export const VirtualControllerInputsOutputsApiFactory = function (configuration,
|
|
|
9334
9255
|
const localVarFp = VirtualControllerInputsOutputsApiFp(configuration);
|
|
9335
9256
|
return {
|
|
9336
9257
|
/**
|
|
9337
|
-
* Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [
|
|
9258
|
+
* Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualRobotIODescriptions](listVirtualRobotIODescriptions).
|
|
9338
9259
|
* @summary Get Input/Output Values
|
|
9339
9260
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9340
9261
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9357,8 +9278,8 @@ export const VirtualControllerInputsOutputsApiFactory = function (configuration,
|
|
|
9357
9278
|
* @param {*} [options] Override http request option.
|
|
9358
9279
|
* @throws {RequiredError}
|
|
9359
9280
|
*/
|
|
9360
|
-
|
|
9361
|
-
return localVarFp.
|
|
9281
|
+
listVirtualRobotIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
9282
|
+
return localVarFp.listVirtualRobotIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios, basePath));
|
|
9362
9283
|
},
|
|
9363
9284
|
/**
|
|
9364
9285
|
* Sets a list of values of a virtual controller inputs/outputs.
|
|
@@ -9382,7 +9303,7 @@ export const VirtualControllerInputsOutputsApiFactory = function (configuration,
|
|
|
9382
9303
|
*/
|
|
9383
9304
|
export class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
9384
9305
|
/**
|
|
9385
|
-
* Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [
|
|
9306
|
+
* Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualRobotIODescriptions](listVirtualRobotIODescriptions).
|
|
9386
9307
|
* @summary Get Input/Output Values
|
|
9387
9308
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9388
9309
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -9407,8 +9328,8 @@ export class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
9407
9328
|
* @throws {RequiredError}
|
|
9408
9329
|
* @memberof VirtualControllerInputsOutputsApi
|
|
9409
9330
|
*/
|
|
9410
|
-
|
|
9411
|
-
return VirtualControllerInputsOutputsApiFp(this.configuration).
|
|
9331
|
+
listVirtualRobotIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
9332
|
+
return VirtualControllerInputsOutputsApiFp(this.configuration).listVirtualRobotIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(this.axios, this.basePath));
|
|
9412
9333
|
}
|
|
9413
9334
|
/**
|
|
9414
9335
|
* Sets a list of values of a virtual controller inputs/outputs.
|