@wandelbots/nova-api 25.10.0-dev.6 → 25.10.0-dev.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/v1/index.cjs +94 -471
- package/dist/v1/index.d.cts +272 -4326
- package/dist/v1/index.d.ts +272 -4326
- package/dist/v1/index.js +91 -472
- package/dist/v2/index.cjs +91 -405
- package/dist/v2/index.d.cts +86 -2969
- package/dist/v2/index.d.ts +86 -2969
- package/dist/v2/index.js +88 -406
- package/package.json +1 -1
package/dist/v2/index.cjs
CHANGED
|
@@ -5,21 +5,12 @@ axios = require_defineProperty$1.__toESM(axios);
|
|
|
5
5
|
//#region v2/base.ts
|
|
6
6
|
var import_defineProperty$1 = /* @__PURE__ */ require_defineProperty$1.__toESM(require_defineProperty$1.require_defineProperty(), 1);
|
|
7
7
|
const BASE_PATH = "/api/v2".replace(/\/+$/, "");
|
|
8
|
-
/**
|
|
9
|
-
*
|
|
10
|
-
* @export
|
|
11
|
-
*/
|
|
12
8
|
const COLLECTION_FORMATS = {
|
|
13
9
|
csv: ",",
|
|
14
10
|
ssv: " ",
|
|
15
11
|
tsv: " ",
|
|
16
12
|
pipes: "|"
|
|
17
13
|
};
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @export
|
|
21
|
-
* @class BaseAPI
|
|
22
|
-
*/
|
|
23
14
|
var BaseAPI = class {
|
|
24
15
|
constructor(configuration, basePath = BASE_PATH, axios$1 = axios.default) {
|
|
25
16
|
this.basePath = basePath;
|
|
@@ -31,12 +22,6 @@ var BaseAPI = class {
|
|
|
31
22
|
}
|
|
32
23
|
}
|
|
33
24
|
};
|
|
34
|
-
/**
|
|
35
|
-
*
|
|
36
|
-
* @export
|
|
37
|
-
* @class RequiredError
|
|
38
|
-
* @extends {Error}
|
|
39
|
-
*/
|
|
40
25
|
var RequiredError = class extends Error {
|
|
41
26
|
constructor(field, msg) {
|
|
42
27
|
super(msg);
|
|
@@ -44,41 +29,24 @@ var RequiredError = class extends Error {
|
|
|
44
29
|
this.name = "RequiredError";
|
|
45
30
|
}
|
|
46
31
|
};
|
|
47
|
-
/**
|
|
48
|
-
*
|
|
49
|
-
* @export
|
|
50
|
-
*/
|
|
51
32
|
const operationServerMap = {};
|
|
52
33
|
|
|
53
34
|
//#endregion
|
|
54
35
|
//#region v2/common.ts
|
|
55
|
-
/**
|
|
56
|
-
*
|
|
57
|
-
* @export
|
|
58
|
-
*/
|
|
59
36
|
const DUMMY_BASE_URL = "https://example.com";
|
|
60
37
|
/**
|
|
61
38
|
*
|
|
62
39
|
* @throws {RequiredError}
|
|
63
|
-
* @export
|
|
64
40
|
*/
|
|
65
41
|
const assertParamExists = function(functionName, paramName, paramValue) {
|
|
66
42
|
if (paramValue === null || paramValue === void 0) throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);
|
|
67
43
|
};
|
|
68
|
-
/**
|
|
69
|
-
*
|
|
70
|
-
* @export
|
|
71
|
-
*/
|
|
72
44
|
const setBasicAuthToObject = function(object, configuration) {
|
|
73
45
|
if (configuration && (configuration.username || configuration.password)) object["auth"] = {
|
|
74
46
|
username: configuration.username,
|
|
75
47
|
password: configuration.password
|
|
76
48
|
};
|
|
77
49
|
};
|
|
78
|
-
/**
|
|
79
|
-
*
|
|
80
|
-
* @export
|
|
81
|
-
*/
|
|
82
50
|
const setBearerAuthToObject = async function(object, configuration) {
|
|
83
51
|
if (configuration && configuration.accessToken) object["Authorization"] = "Bearer " + (typeof configuration.accessToken === "function" ? await configuration.accessToken() : await configuration.accessToken);
|
|
84
52
|
};
|
|
@@ -89,34 +57,18 @@ function setFlattenedQueryParams(urlSearchParams, parameter, key = "") {
|
|
|
89
57
|
else if (urlSearchParams.has(key)) urlSearchParams.append(key, parameter);
|
|
90
58
|
else urlSearchParams.set(key, parameter);
|
|
91
59
|
}
|
|
92
|
-
/**
|
|
93
|
-
*
|
|
94
|
-
* @export
|
|
95
|
-
*/
|
|
96
60
|
const setSearchParams = function(url, ...objects) {
|
|
97
61
|
const searchParams = new URLSearchParams(url.search);
|
|
98
62
|
setFlattenedQueryParams(searchParams, objects);
|
|
99
63
|
url.search = searchParams.toString();
|
|
100
64
|
};
|
|
101
|
-
/**
|
|
102
|
-
*
|
|
103
|
-
* @export
|
|
104
|
-
*/
|
|
105
65
|
const serializeDataIfNeeded = function(value, requestOptions, configuration) {
|
|
106
66
|
const nonString = typeof value !== "string";
|
|
107
67
|
return (nonString && configuration && configuration.isJsonMime ? configuration.isJsonMime(requestOptions.headers["Content-Type"]) : nonString) ? JSON.stringify(value !== void 0 ? value : {}) : value || "";
|
|
108
68
|
};
|
|
109
|
-
/**
|
|
110
|
-
*
|
|
111
|
-
* @export
|
|
112
|
-
*/
|
|
113
69
|
const toPathString = function(url) {
|
|
114
70
|
return url.pathname + url.search + url.hash;
|
|
115
71
|
};
|
|
116
|
-
/**
|
|
117
|
-
*
|
|
118
|
-
* @export
|
|
119
|
-
*/
|
|
120
72
|
const createRequestFunction = function(axiosArgs, globalAxios$2, BASE_PATH$1, configuration) {
|
|
121
73
|
return (axios$1 = globalAxios$2, basePath = BASE_PATH$1) => {
|
|
122
74
|
const axiosRequestArgs = {
|
|
@@ -132,8 +84,6 @@ const createRequestFunction = function(axiosArgs, globalAxios$2, BASE_PATH$1, co
|
|
|
132
84
|
const AbbControllerKindEnum = { AbbController: "AbbController" };
|
|
133
85
|
/**
|
|
134
86
|
* ## 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](externalJointsStream).
|
|
135
|
-
* @export
|
|
136
|
-
* @enum {string}
|
|
137
87
|
*/
|
|
138
88
|
const Behavior = {
|
|
139
89
|
BehaviorAutomatic: "BEHAVIOR_AUTOMATIC",
|
|
@@ -157,8 +107,6 @@ const BusIOProfinetBusTypeEnum = { Profinet: "profinet" };
|
|
|
157
107
|
const BusIOProfinetVirtualBusTypeEnum = { ProfinetVirtual: "profinet_virtual" };
|
|
158
108
|
/**
|
|
159
109
|
* Current state of the BUS input/output service.
|
|
160
|
-
* @export
|
|
161
|
-
* @enum {string}
|
|
162
110
|
*/
|
|
163
111
|
const BusIOsStateEnum = {
|
|
164
112
|
BusIosStateUnknown: "BUS_IOS_STATE_UNKNOWN",
|
|
@@ -169,8 +117,6 @@ const BusIOsStateEnum = {
|
|
|
169
117
|
const CapsuleShapeTypeEnum = { Capsule: "capsule" };
|
|
170
118
|
/**
|
|
171
119
|
* Comparator for the comparison of two values. The comparator is used to compare two values and return a boolean result. The default comparator is unknown.
|
|
172
|
-
* @export
|
|
173
|
-
* @enum {string}
|
|
174
120
|
*/
|
|
175
121
|
const Comparator = {
|
|
176
122
|
ComparatorEquals: "COMPARATOR_EQUALS",
|
|
@@ -187,8 +133,6 @@ const ConvexHullShapeTypeEnum = { ConvexHull: "convex_hull" };
|
|
|
187
133
|
const CylinderShapeTypeEnum = { Cylinder: "cylinder" };
|
|
188
134
|
/**
|
|
189
135
|
* The direction in which the trajectory is executed. Default: Forward.
|
|
190
|
-
* @export
|
|
191
|
-
* @enum {string}
|
|
192
136
|
*/
|
|
193
137
|
const Direction = {
|
|
194
138
|
DirectionForward: "DIRECTION_FORWARD",
|
|
@@ -207,8 +151,6 @@ const FloatValueValueTypeEnum = { Float: "float" };
|
|
|
207
151
|
const IOBooleanValueValueTypeEnum = { Boolean: "boolean" };
|
|
208
152
|
/**
|
|
209
153
|
* Identifies the input/output type.
|
|
210
|
-
* @export
|
|
211
|
-
* @enum {string}
|
|
212
154
|
*/
|
|
213
155
|
const IODirection = {
|
|
214
156
|
IoTypeInput: "IO_TYPE_INPUT",
|
|
@@ -218,8 +160,6 @@ const IOFloatValueValueTypeEnum = { Float: "float" };
|
|
|
218
160
|
const IOIntegerValueValueTypeEnum = { Integer: "integer" };
|
|
219
161
|
/**
|
|
220
162
|
* States the source of the input/output signal.
|
|
221
|
-
* @export
|
|
222
|
-
* @enum {string}
|
|
223
163
|
*/
|
|
224
164
|
const IOOrigin = {
|
|
225
165
|
Controller: "CONTROLLER",
|
|
@@ -227,8 +167,6 @@ const IOOrigin = {
|
|
|
227
167
|
};
|
|
228
168
|
/**
|
|
229
169
|
* Data type of the input/output.
|
|
230
|
-
* @export
|
|
231
|
-
* @enum {string}
|
|
232
170
|
*/
|
|
233
171
|
const IOValueType = {
|
|
234
172
|
IoValueBoolean: "IO_VALUE_BOOLEAN",
|
|
@@ -249,11 +187,6 @@ const JoggingRunningKindEnum = { Running: "RUNNING" };
|
|
|
249
187
|
const JointVelocityRequestMessageTypeEnum = { JointVelocityRequest: "JointVelocityRequest" };
|
|
250
188
|
const JointVelocityResponseKindEnum = { JointVelocityReceived: "JOINT_VELOCITY_RECEIVED" };
|
|
251
189
|
const KukaControllerKindEnum = { KukaController: "KukaController" };
|
|
252
|
-
/**
|
|
253
|
-
*
|
|
254
|
-
* @export
|
|
255
|
-
* @enum {string}
|
|
256
|
-
*/
|
|
257
190
|
const LicenseStatusEnum = {
|
|
258
191
|
Ok: "OK",
|
|
259
192
|
Expired: "EXPIRED",
|
|
@@ -261,11 +194,6 @@ const LicenseStatusEnum = {
|
|
|
261
194
|
GracePeriodOver: "GRACE_PERIOD_OVER",
|
|
262
195
|
NotFound: "NOT_FOUND"
|
|
263
196
|
};
|
|
264
|
-
/**
|
|
265
|
-
*
|
|
266
|
-
* @export
|
|
267
|
-
* @enum {string}
|
|
268
|
-
*/
|
|
269
197
|
const Manufacturer = {
|
|
270
198
|
Abb: "abb",
|
|
271
199
|
Fanuc: "fanuc",
|
|
@@ -276,8 +204,6 @@ const Manufacturer = {
|
|
|
276
204
|
const MidpointInsertionAlgorithmAlgorithmNameEnum = { MidpointInsertionAlgorithm: "MidpointInsertionAlgorithm" };
|
|
277
205
|
/**
|
|
278
206
|
* Area of the MODBUS input/output variable. Is used to interpret the corresponding bits correctly.
|
|
279
|
-
* @export
|
|
280
|
-
* @enum {string}
|
|
281
207
|
*/
|
|
282
208
|
const ModbusIOArea = {
|
|
283
209
|
ModbusIoAreaUnknown: "MODBUS_IO_AREA_UNKNOWN",
|
|
@@ -288,8 +214,6 @@ const ModbusIOArea = {
|
|
|
288
214
|
};
|
|
289
215
|
/**
|
|
290
216
|
* Byte order of the MODBUS input/output variable. Used to interpret the corresponding bits correctly.
|
|
291
|
-
* @export
|
|
292
|
-
* @enum {string}
|
|
293
217
|
*/
|
|
294
218
|
const ModbusIOByteOrder = {
|
|
295
219
|
ModbusIoByteOrderUnknown: "MODBUS_IO_BYTE_ORDER_UNKNOWN",
|
|
@@ -300,8 +224,6 @@ const ModbusIOByteOrder = {
|
|
|
300
224
|
};
|
|
301
225
|
/**
|
|
302
226
|
* Value type of the MODBUS input/output variable. Used to interpret the corresponding bits correctly.
|
|
303
|
-
* @export
|
|
304
|
-
* @enum {string}
|
|
305
227
|
*/
|
|
306
228
|
const ModbusIOTypeEnum = {
|
|
307
229
|
ModbusIoTypeUnknown: "MODBUS_IO_TYPE_UNKNOWN",
|
|
@@ -312,8 +234,6 @@ const ModbusIOTypeEnum = {
|
|
|
312
234
|
const MovementErrorResponseKindEnum = { MotionError: "MOTION_ERROR" };
|
|
313
235
|
/**
|
|
314
236
|
* The operating state.
|
|
315
|
-
* @export
|
|
316
|
-
* @enum {string}
|
|
317
237
|
*/
|
|
318
238
|
const OperatingState = {
|
|
319
239
|
Active: "ACTIVE",
|
|
@@ -321,8 +241,6 @@ const OperatingState = {
|
|
|
321
241
|
};
|
|
322
242
|
/**
|
|
323
243
|
* Current operation mode of the configured robot controller. Operation modes in which the attached motion groups can be moved are: - OPERATION_MODE_MANUAL (if enabling switch is pressed) - OPERATION_MODE_MANUAL_T1 (if enabling switch is pressed) - OPERATION_MODE_MANUAL_T2 (if enabling switch is pressed) - OPERATION_MODE_AUTO (without needing to press enabling switch) All other modes are considered as non-operational.
|
|
324
|
-
* @export
|
|
325
|
-
* @enum {string}
|
|
326
244
|
*/
|
|
327
245
|
const OperationMode = {
|
|
328
246
|
OperationModeUnknown: "OPERATION_MODE_UNKNOWN",
|
|
@@ -338,8 +256,6 @@ const OperationMode = {
|
|
|
338
256
|
};
|
|
339
257
|
/**
|
|
340
258
|
* The type of rotation description that is used to specify the orientation. **Rotation Vector notation** * The rotation is represented using an axis-angle representation: > axis = Vector[0:2] > angle = |axis| in [rad] > axis.normalized * angle **Quaternion notation** * The rotation is represented using a unit quaternion: [x, y, z, w]. * The vector part [x, y, z] is the imaginary part of the quaternion, and the scalar part [w] is the real part. **Euler notation** * *extrinsic* fixed external reference system * *intrinsic* reference system fixed to rotation body > angles = Vector[0:2] in [rad]. * ZYX, ZXZ,... - mapping of the given angles values to the (either intrinsic or extrinsic) axes in the stated order. > Example ZYX: Z = Vector[0], Y = Vector[1], X = Vector[2].
|
|
341
|
-
* @export
|
|
342
|
-
* @enum {string}
|
|
343
259
|
*/
|
|
344
260
|
const OrientationType = {
|
|
345
261
|
RotationVector: "ROTATION_VECTOR",
|
|
@@ -383,8 +299,6 @@ const PlaybackSpeedRequestMessageTypeEnum = { PlaybackSpeedRequest: "PlaybackSpe
|
|
|
383
299
|
const PlaybackSpeedResponseKindEnum = { PlaybackSpeedReceived: "PLAYBACK_SPEED_RECEIVED" };
|
|
384
300
|
/**
|
|
385
301
|
* 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.
|
|
386
|
-
* @export
|
|
387
|
-
* @enum {string}
|
|
388
302
|
*/
|
|
389
303
|
const ProfinetIODirection = {
|
|
390
304
|
ProfinetIoDirectionInput: "PROFINET_IO_DIRECTION_INPUT",
|
|
@@ -393,8 +307,6 @@ const ProfinetIODirection = {
|
|
|
393
307
|
};
|
|
394
308
|
/**
|
|
395
309
|
* Value type of the PROFINET input/output variable. Is used to interpret the corresponding bits correctly.
|
|
396
|
-
* @export
|
|
397
|
-
* @enum {string}
|
|
398
310
|
*/
|
|
399
311
|
const ProfinetIOTypeEnum = {
|
|
400
312
|
ProfinetIoTypeUnknown: "PROFINET_IO_TYPE_UNKNOWN",
|
|
@@ -410,8 +322,6 @@ const ProfinetIOTypeEnum = {
|
|
|
410
322
|
};
|
|
411
323
|
/**
|
|
412
324
|
* The state of a program run.
|
|
413
|
-
* @export
|
|
414
|
-
* @enum {string}
|
|
415
325
|
*/
|
|
416
326
|
const ProgramRunState = {
|
|
417
327
|
Preparing: "PREPARING",
|
|
@@ -425,8 +335,6 @@ const RectangleShapeTypeEnum = { Rectangle: "rectangle" };
|
|
|
425
335
|
const RectangularCapsuleShapeTypeEnum = { RectangularCapsule: "rectangular_capsule" };
|
|
426
336
|
/**
|
|
427
337
|
* The channel that defines what a new Wandelbots NOVA version is. * `next` the over all latest version * `stable` newes patch of the current version
|
|
428
|
-
* @export
|
|
429
|
-
* @enum {string}
|
|
430
338
|
*/
|
|
431
339
|
const ReleaseChannel = {
|
|
432
340
|
Stable: "stable",
|
|
@@ -434,8 +342,6 @@ const ReleaseChannel = {
|
|
|
434
342
|
};
|
|
435
343
|
/**
|
|
436
344
|
* Defines the current system mode of the robot system, including NOVA communicating with the robot controller. ### MODE_CONTROLLER_NOT_CONFIGURED No controller with the specified identifier is configured. Call [addRobotController](addRobotController) to register a controller. ### MODE_INITIALIZING Indicates that a connection to the robot controller is established or reestablished in case of a disconnect. On success, the controller is set to MODE_MONITOR. On failure, the initialization process is retried until successful or cancelled by the user. ### MODE_MONITOR Read-only mode with an active controller connection. - Receives robot state and I/O signals - Move requests are rejected - No commands are sent to the controller ### MODE_CONTROL Active control mode. **Movement is possible in this mode** The robot is cyclically commanded to hold its current position. The robot state is received in sync with the controller cycle. Motion and jogging requests are accepted and executed. Input/Output interaction is enabled. ### MODE_FREE_DRIVE Read-only mode with servo motors enabled for manual movement (Free Drive). Move requests are rejected. Not supported by all robots: Use [getSupportedModes](getSupportedModes) to check Free Drive availability.
|
|
437
|
-
* @export
|
|
438
|
-
* @enum {string}
|
|
439
345
|
*/
|
|
440
346
|
const RobotSystemMode = {
|
|
441
347
|
ModeControllerNotConfigured: "MODE_CONTROLLER_NOT_CONFIGURED",
|
|
@@ -446,8 +352,6 @@ const RobotSystemMode = {
|
|
|
446
352
|
};
|
|
447
353
|
/**
|
|
448
354
|
* 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.
|
|
449
|
-
* @export
|
|
450
|
-
* @enum {string}
|
|
451
355
|
*/
|
|
452
356
|
const SafetyStateType = {
|
|
453
357
|
SafetyStateUnknown: "SAFETY_STATE_UNKNOWN",
|
|
@@ -467,22 +371,12 @@ const SafetyStateType = {
|
|
|
467
371
|
SafetyStateRobotEmergencyStop: "SAFETY_STATE_ROBOT_EMERGENCY_STOP",
|
|
468
372
|
SafetyStateViolation: "SAFETY_STATE_VIOLATION"
|
|
469
373
|
};
|
|
470
|
-
/**
|
|
471
|
-
*
|
|
472
|
-
* @export
|
|
473
|
-
* @enum {string}
|
|
474
|
-
*/
|
|
475
374
|
const ServiceGroup = {
|
|
476
375
|
SystemService: "SystemService",
|
|
477
376
|
CellService: "CellService",
|
|
478
377
|
RobotController: "RobotController",
|
|
479
378
|
App: "App"
|
|
480
379
|
};
|
|
481
|
-
/**
|
|
482
|
-
*
|
|
483
|
-
* @export
|
|
484
|
-
* @enum {string}
|
|
485
|
-
*/
|
|
486
380
|
const ServiceStatusPhase = {
|
|
487
381
|
Terminating: "Terminating",
|
|
488
382
|
Initialized: "Initialized",
|
|
@@ -499,30 +393,15 @@ const ServiceStatusPhase = {
|
|
|
499
393
|
Pending: "Pending",
|
|
500
394
|
Evicted: "Evicted"
|
|
501
395
|
};
|
|
502
|
-
/**
|
|
503
|
-
*
|
|
504
|
-
* @export
|
|
505
|
-
* @enum {string}
|
|
506
|
-
*/
|
|
507
396
|
const ServiceStatusSeverity = {
|
|
508
397
|
Info: "INFO",
|
|
509
398
|
Warning: "WARNING",
|
|
510
399
|
Error: "ERROR"
|
|
511
400
|
};
|
|
512
|
-
/**
|
|
513
|
-
*
|
|
514
|
-
* @export
|
|
515
|
-
* @enum {string}
|
|
516
|
-
*/
|
|
517
401
|
const SettableRobotSystemMode = {
|
|
518
402
|
RobotSystemModeMonitor: "ROBOT_SYSTEM_MODE_MONITOR",
|
|
519
403
|
RobotSystemModeControl: "ROBOT_SYSTEM_MODE_CONTROL"
|
|
520
404
|
};
|
|
521
|
-
/**
|
|
522
|
-
*
|
|
523
|
-
* @export
|
|
524
|
-
* @enum {string}
|
|
525
|
-
*/
|
|
526
405
|
const SingularityTypeEnum = {
|
|
527
406
|
Wrist: "WRIST",
|
|
528
407
|
Elbow: "ELBOW",
|
|
@@ -543,8 +422,6 @@ const TrajectoryRunningKindEnum = { Running: "RUNNING" };
|
|
|
543
422
|
const TrajectoryWaitForIOKindEnum = { WaitForIo: "WAIT_FOR_IO" };
|
|
544
423
|
/**
|
|
545
424
|
* The unit of input/output value.
|
|
546
|
-
* @export
|
|
547
|
-
* @enum {string}
|
|
548
425
|
*/
|
|
549
426
|
const UnitType = {
|
|
550
427
|
UnitNone: "UNIT_NONE",
|
|
@@ -560,11 +437,6 @@ const UnitType = {
|
|
|
560
437
|
};
|
|
561
438
|
const UniversalrobotsControllerKindEnum = { UniversalrobotsController: "UniversalrobotsController" };
|
|
562
439
|
const VirtualControllerKindEnum = { VirtualController: "VirtualController" };
|
|
563
|
-
/**
|
|
564
|
-
*
|
|
565
|
-
* @export
|
|
566
|
-
* @enum {string}
|
|
567
|
-
*/
|
|
568
440
|
const VirtualControllerTypes = {
|
|
569
441
|
AbbIrb101003715: "abb-irb1010_037_15",
|
|
570
442
|
AbbIrb110004754: "abb-irb1100_0475_4",
|
|
@@ -587,6 +459,7 @@ const VirtualControllerTypes = {
|
|
|
587
459
|
AbbIrb460020560: "abb-irb4600_205_60",
|
|
588
460
|
AbbIrb460025020: "abb-irb4600_250_20",
|
|
589
461
|
AbbIrb460025540: "abb-irb4600_255_40",
|
|
462
|
+
AbbIrb6730210310: "abb-irb6730_210_310",
|
|
590
463
|
FanucArcMate100iD: "fanuc-arc_mate_100iD",
|
|
591
464
|
FanucArcMate100iD16S: "fanuc-arc_mate_100iD16S",
|
|
592
465
|
FanucArcMate120iD: "fanuc-arc_mate_120iD",
|
|
@@ -624,11 +497,14 @@ const VirtualControllerTypes = {
|
|
|
624
497
|
KukaKr16R20102: "kuka-kr16_r2010_2",
|
|
625
498
|
KukaKr20R1810: "kuka-kr20_r1810",
|
|
626
499
|
KukaKr20R18102: "kuka-kr20_r1810_2",
|
|
500
|
+
KukaKr210R2700Extra: "kuka-kr210_r2700_extra",
|
|
627
501
|
KukaKr210R27002: "kuka-kr210_r2700_2",
|
|
628
502
|
KukaKr210R31002: "kuka-kr210_r3100_2",
|
|
629
503
|
KukaKr210R33002: "kuka-kr210_r3300_2",
|
|
630
504
|
KukaKr240R2700: "kuka-kr240_r2700",
|
|
505
|
+
KukaKr240R2900: "kuka-kr240_r2900",
|
|
631
506
|
KukaKr250R27002: "kuka-kr250_r2700_2",
|
|
507
|
+
KukaKr270R2700: "kuka-kr270_r2700",
|
|
632
508
|
KukaKr30R2100: "kuka-kr30_r2100",
|
|
633
509
|
KukaKr30R3: "kuka-kr30_r3",
|
|
634
510
|
KukaKr360L2403: "kuka-kr360_l240_3",
|
|
@@ -683,7 +559,6 @@ const VirtualControllerTypes = {
|
|
|
683
559
|
const YaskawaControllerKindEnum = { YaskawaController: "YaskawaController" };
|
|
684
560
|
/**
|
|
685
561
|
* ApplicationApi - axios parameter creator
|
|
686
|
-
* @export
|
|
687
562
|
*/
|
|
688
563
|
const ApplicationApiAxiosParamCreator = function(configuration) {
|
|
689
564
|
return {
|
|
@@ -866,7 +741,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
|
|
|
866
741
|
};
|
|
867
742
|
/**
|
|
868
743
|
* ApplicationApi - functional programming interface
|
|
869
|
-
* @export
|
|
870
744
|
*/
|
|
871
745
|
const ApplicationApiFp = function(configuration) {
|
|
872
746
|
const localVarAxiosParamCreator = ApplicationApiAxiosParamCreator(configuration);
|
|
@@ -911,7 +785,6 @@ const ApplicationApiFp = function(configuration) {
|
|
|
911
785
|
};
|
|
912
786
|
/**
|
|
913
787
|
* ApplicationApi - factory interface
|
|
914
|
-
* @export
|
|
915
788
|
*/
|
|
916
789
|
const ApplicationApiFactory = function(configuration, basePath, axios$1) {
|
|
917
790
|
const localVarFp = ApplicationApiFp(configuration);
|
|
@@ -938,9 +811,6 @@ const ApplicationApiFactory = function(configuration, basePath, axios$1) {
|
|
|
938
811
|
};
|
|
939
812
|
/**
|
|
940
813
|
* ApplicationApi - object-oriented interface
|
|
941
|
-
* @export
|
|
942
|
-
* @class ApplicationApi
|
|
943
|
-
* @extends {BaseAPI}
|
|
944
814
|
*/
|
|
945
815
|
var ApplicationApi = class extends BaseAPI {
|
|
946
816
|
/**
|
|
@@ -951,7 +821,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
951
821
|
* @param {number} [completionTimeout]
|
|
952
822
|
* @param {*} [options] Override http request option.
|
|
953
823
|
* @throws {RequiredError}
|
|
954
|
-
* @memberof ApplicationApi
|
|
955
824
|
*/
|
|
956
825
|
addApp(cell, app, completionTimeout, options) {
|
|
957
826
|
return ApplicationApiFp(this.configuration).addApp(cell, app, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -963,7 +832,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
963
832
|
* @param {number} [completionTimeout]
|
|
964
833
|
* @param {*} [options] Override http request option.
|
|
965
834
|
* @throws {RequiredError}
|
|
966
|
-
* @memberof ApplicationApi
|
|
967
835
|
*/
|
|
968
836
|
clearApps(cell, completionTimeout, options) {
|
|
969
837
|
return ApplicationApiFp(this.configuration).clearApps(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -976,7 +844,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
976
844
|
* @param {number} [completionTimeout]
|
|
977
845
|
* @param {*} [options] Override http request option.
|
|
978
846
|
* @throws {RequiredError}
|
|
979
|
-
* @memberof ApplicationApi
|
|
980
847
|
*/
|
|
981
848
|
deleteApp(cell, app, completionTimeout, options) {
|
|
982
849
|
return ApplicationApiFp(this.configuration).deleteApp(cell, app, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -988,7 +855,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
988
855
|
* @param {string} app
|
|
989
856
|
* @param {*} [options] Override http request option.
|
|
990
857
|
* @throws {RequiredError}
|
|
991
|
-
* @memberof ApplicationApi
|
|
992
858
|
*/
|
|
993
859
|
getApp(cell, app, options) {
|
|
994
860
|
return ApplicationApiFp(this.configuration).getApp(cell, app, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -999,7 +865,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
999
865
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1000
866
|
* @param {*} [options] Override http request option.
|
|
1001
867
|
* @throws {RequiredError}
|
|
1002
|
-
* @memberof ApplicationApi
|
|
1003
868
|
*/
|
|
1004
869
|
listApps(cell, options) {
|
|
1005
870
|
return ApplicationApiFp(this.configuration).listApps(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1013,7 +878,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
1013
878
|
* @param {number} [completionTimeout]
|
|
1014
879
|
* @param {*} [options] Override http request option.
|
|
1015
880
|
* @throws {RequiredError}
|
|
1016
|
-
* @memberof ApplicationApi
|
|
1017
881
|
*/
|
|
1018
882
|
updateApp(cell, app, app2, completionTimeout, options) {
|
|
1019
883
|
return ApplicationApiFp(this.configuration).updateApp(cell, app, app2, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1021,7 +885,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
1021
885
|
};
|
|
1022
886
|
/**
|
|
1023
887
|
* BUSInputsOutputsApi - axios parameter creator
|
|
1024
|
-
* @export
|
|
1025
888
|
*/
|
|
1026
889
|
const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
|
|
1027
890
|
return {
|
|
@@ -1485,7 +1348,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
|
|
|
1485
1348
|
};
|
|
1486
1349
|
/**
|
|
1487
1350
|
* BUSInputsOutputsApi - functional programming interface
|
|
1488
|
-
* @export
|
|
1489
1351
|
*/
|
|
1490
1352
|
const BUSInputsOutputsApiFp = function(configuration) {
|
|
1491
1353
|
const localVarAxiosParamCreator = BUSInputsOutputsApiAxiosParamCreator(configuration);
|
|
@@ -1590,7 +1452,6 @@ const BUSInputsOutputsApiFp = function(configuration) {
|
|
|
1590
1452
|
};
|
|
1591
1453
|
/**
|
|
1592
1454
|
* BUSInputsOutputsApi - factory interface
|
|
1593
|
-
* @export
|
|
1594
1455
|
*/
|
|
1595
1456
|
const BUSInputsOutputsApiFactory = function(configuration, basePath, axios$1) {
|
|
1596
1457
|
const localVarFp = BUSInputsOutputsApiFp(configuration);
|
|
@@ -1647,9 +1508,6 @@ const BUSInputsOutputsApiFactory = function(configuration, basePath, axios$1) {
|
|
|
1647
1508
|
};
|
|
1648
1509
|
/**
|
|
1649
1510
|
* BUSInputsOutputsApi - object-oriented interface
|
|
1650
|
-
* @export
|
|
1651
|
-
* @class BUSInputsOutputsApi
|
|
1652
|
-
* @extends {BaseAPI}
|
|
1653
1511
|
*/
|
|
1654
1512
|
var BUSInputsOutputsApi = class extends BaseAPI {
|
|
1655
1513
|
/**
|
|
@@ -1660,7 +1518,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1660
1518
|
* @param {number} [completionTimeout]
|
|
1661
1519
|
* @param {*} [options] Override http request option.
|
|
1662
1520
|
* @throws {RequiredError}
|
|
1663
|
-
* @memberof BUSInputsOutputsApi
|
|
1664
1521
|
*/
|
|
1665
1522
|
addBusIOService(cell, busIOType, completionTimeout, options) {
|
|
1666
1523
|
return BUSInputsOutputsApiFp(this.configuration).addBusIOService(cell, busIOType, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1673,7 +1530,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1673
1530
|
* @param {ModbusIOData} modbusIOData
|
|
1674
1531
|
* @param {*} [options] Override http request option.
|
|
1675
1532
|
* @throws {RequiredError}
|
|
1676
|
-
* @memberof BUSInputsOutputsApi
|
|
1677
1533
|
*/
|
|
1678
1534
|
addModbusIO(cell, io, modbusIOData, options) {
|
|
1679
1535
|
return BUSInputsOutputsApiFp(this.configuration).addModbusIO(cell, io, modbusIOData, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1686,7 +1542,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1686
1542
|
* @param {ProfinetIOData} profinetIOData
|
|
1687
1543
|
* @param {*} [options] Override http request option.
|
|
1688
1544
|
* @throws {RequiredError}
|
|
1689
|
-
* @memberof BUSInputsOutputsApi
|
|
1690
1545
|
*/
|
|
1691
1546
|
addProfinetIO(cell, io, profinetIOData, options) {
|
|
1692
1547
|
return BUSInputsOutputsApiFp(this.configuration).addProfinetIO(cell, io, profinetIOData, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1698,7 +1553,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1698
1553
|
* @param {number} [completionTimeout]
|
|
1699
1554
|
* @param {*} [options] Override http request option.
|
|
1700
1555
|
* @throws {RequiredError}
|
|
1701
|
-
* @memberof BUSInputsOutputsApi
|
|
1702
1556
|
*/
|
|
1703
1557
|
clearBusIOService(cell, completionTimeout, options) {
|
|
1704
1558
|
return BUSInputsOutputsApiFp(this.configuration).clearBusIOService(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1710,7 +1564,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1710
1564
|
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
1711
1565
|
* @param {*} [options] Override http request option.
|
|
1712
1566
|
* @throws {RequiredError}
|
|
1713
|
-
* @memberof BUSInputsOutputsApi
|
|
1714
1567
|
*/
|
|
1715
1568
|
deleteModbusIO(cell, io, options) {
|
|
1716
1569
|
return BUSInputsOutputsApiFp(this.configuration).deleteModbusIO(cell, io, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1722,7 +1575,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1722
1575
|
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
1723
1576
|
* @param {*} [options] Override http request option.
|
|
1724
1577
|
* @throws {RequiredError}
|
|
1725
|
-
* @memberof BUSInputsOutputsApi
|
|
1726
1578
|
*/
|
|
1727
1579
|
deleteProfinetIO(cell, io, options) {
|
|
1728
1580
|
return BUSInputsOutputsApiFp(this.configuration).deleteProfinetIO(cell, io, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1733,7 +1585,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1733
1585
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1734
1586
|
* @param {*} [options] Override http request option.
|
|
1735
1587
|
* @throws {RequiredError}
|
|
1736
|
-
* @memberof BUSInputsOutputsApi
|
|
1737
1588
|
*/
|
|
1738
1589
|
getBusIOService(cell, options) {
|
|
1739
1590
|
return BUSInputsOutputsApiFp(this.configuration).getBusIOService(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1744,7 +1595,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1744
1595
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1745
1596
|
* @param {*} [options] Override http request option.
|
|
1746
1597
|
* @throws {RequiredError}
|
|
1747
|
-
* @memberof BUSInputsOutputsApi
|
|
1748
1598
|
*/
|
|
1749
1599
|
getBusIOState(cell, options) {
|
|
1750
1600
|
return BUSInputsOutputsApiFp(this.configuration).getBusIOState(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1756,7 +1606,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1756
1606
|
* @param {Array<string>} [ios]
|
|
1757
1607
|
* @param {*} [options] Override http request option.
|
|
1758
1608
|
* @throws {RequiredError}
|
|
1759
|
-
* @memberof BUSInputsOutputsApi
|
|
1760
1609
|
*/
|
|
1761
1610
|
getBusIOValues(cell, ios, options) {
|
|
1762
1611
|
return BUSInputsOutputsApiFp(this.configuration).getBusIOValues(cell, ios, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1767,7 +1616,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1767
1616
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1768
1617
|
* @param {*} [options] Override http request option.
|
|
1769
1618
|
* @throws {RequiredError}
|
|
1770
|
-
* @memberof BUSInputsOutputsApi
|
|
1771
1619
|
*/
|
|
1772
1620
|
getProfinetDescription(cell, options) {
|
|
1773
1621
|
return BUSInputsOutputsApiFp(this.configuration).getProfinetDescription(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1780,7 +1628,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1780
1628
|
* @param {number} [outputOffset]
|
|
1781
1629
|
* @param {*} [options] Override http request option.
|
|
1782
1630
|
* @throws {RequiredError}
|
|
1783
|
-
* @memberof BUSInputsOutputsApi
|
|
1784
1631
|
*/
|
|
1785
1632
|
getProfinetIOsFromFile(cell, inputOffset, outputOffset, options) {
|
|
1786
1633
|
return BUSInputsOutputsApiFp(this.configuration).getProfinetIOsFromFile(cell, inputOffset, outputOffset, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1791,7 +1638,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1791
1638
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1792
1639
|
* @param {*} [options] Override http request option.
|
|
1793
1640
|
* @throws {RequiredError}
|
|
1794
|
-
* @memberof BUSInputsOutputsApi
|
|
1795
1641
|
*/
|
|
1796
1642
|
listBusIODescriptions(cell, options) {
|
|
1797
1643
|
return BUSInputsOutputsApiFp(this.configuration).listBusIODescriptions(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1802,7 +1648,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1802
1648
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1803
1649
|
* @param {*} [options] Override http request option.
|
|
1804
1650
|
* @throws {RequiredError}
|
|
1805
|
-
* @memberof BUSInputsOutputsApi
|
|
1806
1651
|
*/
|
|
1807
1652
|
listModbusIOs(cell, options) {
|
|
1808
1653
|
return BUSInputsOutputsApiFp(this.configuration).listModbusIOs(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1813,7 +1658,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1813
1658
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1814
1659
|
* @param {*} [options] Override http request option.
|
|
1815
1660
|
* @throws {RequiredError}
|
|
1816
|
-
* @memberof BUSInputsOutputsApi
|
|
1817
1661
|
*/
|
|
1818
1662
|
listProfinetIOs(cell, options) {
|
|
1819
1663
|
return BUSInputsOutputsApiFp(this.configuration).listProfinetIOs(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1825,7 +1669,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1825
1669
|
* @param {Array<IOValue>} iOValue
|
|
1826
1670
|
* @param {*} [options] Override http request option.
|
|
1827
1671
|
* @throws {RequiredError}
|
|
1828
|
-
* @memberof BUSInputsOutputsApi
|
|
1829
1672
|
*/
|
|
1830
1673
|
setBusIOValues(cell, iOValue, options) {
|
|
1831
1674
|
return BUSInputsOutputsApiFp(this.configuration).setBusIOValues(cell, iOValue, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1837,7 +1680,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1837
1680
|
* @param {ProfinetInputOutputConfig} profinetInputOutputConfig
|
|
1838
1681
|
* @param {*} [options] Override http request option.
|
|
1839
1682
|
* @throws {RequiredError}
|
|
1840
|
-
* @memberof BUSInputsOutputsApi
|
|
1841
1683
|
*/
|
|
1842
1684
|
setProfinetIOsFromFile(cell, profinetInputOutputConfig, options) {
|
|
1843
1685
|
return BUSInputsOutputsApiFp(this.configuration).setProfinetIOsFromFile(cell, profinetInputOutputConfig, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1845,7 +1687,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1845
1687
|
};
|
|
1846
1688
|
/**
|
|
1847
1689
|
* CellApi - axios parameter creator
|
|
1848
|
-
* @export
|
|
1849
1690
|
*/
|
|
1850
1691
|
const CellApiAxiosParamCreator = function(configuration) {
|
|
1851
1692
|
return {
|
|
@@ -2049,7 +1890,6 @@ const CellApiAxiosParamCreator = function(configuration) {
|
|
|
2049
1890
|
};
|
|
2050
1891
|
/**
|
|
2051
1892
|
* CellApi - functional programming interface
|
|
2052
|
-
* @export
|
|
2053
1893
|
*/
|
|
2054
1894
|
const CellApiFp = function(configuration) {
|
|
2055
1895
|
const localVarAxiosParamCreator = CellApiAxiosParamCreator(configuration);
|
|
@@ -2100,7 +1940,6 @@ const CellApiFp = function(configuration) {
|
|
|
2100
1940
|
};
|
|
2101
1941
|
/**
|
|
2102
1942
|
* CellApi - factory interface
|
|
2103
|
-
* @export
|
|
2104
1943
|
*/
|
|
2105
1944
|
const CellApiFactory = function(configuration, basePath, axios$1) {
|
|
2106
1945
|
const localVarFp = CellApiFp(configuration);
|
|
@@ -2130,9 +1969,6 @@ const CellApiFactory = function(configuration, basePath, axios$1) {
|
|
|
2130
1969
|
};
|
|
2131
1970
|
/**
|
|
2132
1971
|
* CellApi - object-oriented interface
|
|
2133
|
-
* @export
|
|
2134
|
-
* @class CellApi
|
|
2135
|
-
* @extends {BaseAPI}
|
|
2136
1972
|
*/
|
|
2137
1973
|
var CellApi = class extends BaseAPI {
|
|
2138
1974
|
/**
|
|
@@ -2142,7 +1978,6 @@ var CellApi = class extends BaseAPI {
|
|
|
2142
1978
|
* @param {number} [completionTimeout]
|
|
2143
1979
|
* @param {*} [options] Override http request option.
|
|
2144
1980
|
* @throws {RequiredError}
|
|
2145
|
-
* @memberof CellApi
|
|
2146
1981
|
*/
|
|
2147
1982
|
deleteCell(cell, completionTimeout, options) {
|
|
2148
1983
|
return CellApiFp(this.configuration).deleteCell(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2154,7 +1989,6 @@ var CellApi = class extends BaseAPI {
|
|
|
2154
1989
|
* @param {number} [completionTimeout]
|
|
2155
1990
|
* @param {*} [options] Override http request option.
|
|
2156
1991
|
* @throws {RequiredError}
|
|
2157
|
-
* @memberof CellApi
|
|
2158
1992
|
*/
|
|
2159
1993
|
deployCell(cell, completionTimeout, options) {
|
|
2160
1994
|
return CellApiFp(this.configuration).deployCell(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2165,7 +1999,6 @@ var CellApi = class extends BaseAPI {
|
|
|
2165
1999
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2166
2000
|
* @param {*} [options] Override http request option.
|
|
2167
2001
|
* @throws {RequiredError}
|
|
2168
|
-
* @memberof CellApi
|
|
2169
2002
|
*/
|
|
2170
2003
|
getCell(cell, options) {
|
|
2171
2004
|
return CellApiFp(this.configuration).getCell(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2176,7 +2009,6 @@ var CellApi = class extends BaseAPI {
|
|
|
2176
2009
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2177
2010
|
* @param {*} [options] Override http request option.
|
|
2178
2011
|
* @throws {RequiredError}
|
|
2179
|
-
* @memberof CellApi
|
|
2180
2012
|
*/
|
|
2181
2013
|
getCellStatus(cell, options) {
|
|
2182
2014
|
return CellApiFp(this.configuration).getCellStatus(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2186,7 +2018,6 @@ var CellApi = class extends BaseAPI {
|
|
|
2186
2018
|
* @summary List Cells
|
|
2187
2019
|
* @param {*} [options] Override http request option.
|
|
2188
2020
|
* @throws {RequiredError}
|
|
2189
|
-
* @memberof CellApi
|
|
2190
2021
|
*/
|
|
2191
2022
|
listCells(options) {
|
|
2192
2023
|
return CellApiFp(this.configuration).listCells(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2198,7 +2029,6 @@ var CellApi = class extends BaseAPI {
|
|
|
2198
2029
|
* @param {OperatingState} operatingState Set state of the cell. Active or inactive.
|
|
2199
2030
|
* @param {*} [options] Override http request option.
|
|
2200
2031
|
* @throws {RequiredError}
|
|
2201
|
-
* @memberof CellApi
|
|
2202
2032
|
*/
|
|
2203
2033
|
setCellStatus(cell, operatingState, options) {
|
|
2204
2034
|
return CellApiFp(this.configuration).setCellStatus(cell, operatingState, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2211,7 +2041,6 @@ var CellApi = class extends BaseAPI {
|
|
|
2211
2041
|
* @param {number} [completionTimeout]
|
|
2212
2042
|
* @param {*} [options] Override http request option.
|
|
2213
2043
|
* @throws {RequiredError}
|
|
2214
|
-
* @memberof CellApi
|
|
2215
2044
|
*/
|
|
2216
2045
|
updateCell(cell, cell2, completionTimeout, options) {
|
|
2217
2046
|
return CellApiFp(this.configuration).updateCell(cell, cell2, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2219,7 +2048,6 @@ var CellApi = class extends BaseAPI {
|
|
|
2219
2048
|
};
|
|
2220
2049
|
/**
|
|
2221
2050
|
* ControllerApi - axios parameter creator
|
|
2222
|
-
* @export
|
|
2223
2051
|
*/
|
|
2224
2052
|
const ControllerApiAxiosParamCreator = function(configuration) {
|
|
2225
2053
|
return {
|
|
@@ -2634,7 +2462,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
|
|
|
2634
2462
|
};
|
|
2635
2463
|
/**
|
|
2636
2464
|
* ControllerApi - functional programming interface
|
|
2637
|
-
* @export
|
|
2638
2465
|
*/
|
|
2639
2466
|
const ControllerApiFp = function(configuration) {
|
|
2640
2467
|
const localVarAxiosParamCreator = ControllerApiAxiosParamCreator(configuration);
|
|
@@ -2727,7 +2554,6 @@ const ControllerApiFp = function(configuration) {
|
|
|
2727
2554
|
};
|
|
2728
2555
|
/**
|
|
2729
2556
|
* ControllerApi - factory interface
|
|
2730
|
-
* @export
|
|
2731
2557
|
*/
|
|
2732
2558
|
const ControllerApiFactory = function(configuration, basePath, axios$1) {
|
|
2733
2559
|
const localVarFp = ControllerApiFp(configuration);
|
|
@@ -2778,9 +2604,6 @@ const ControllerApiFactory = function(configuration, basePath, axios$1) {
|
|
|
2778
2604
|
};
|
|
2779
2605
|
/**
|
|
2780
2606
|
* ControllerApi - object-oriented interface
|
|
2781
|
-
* @export
|
|
2782
|
-
* @class ControllerApi
|
|
2783
|
-
* @extends {BaseAPI}
|
|
2784
2607
|
*/
|
|
2785
2608
|
var ControllerApi = class extends BaseAPI {
|
|
2786
2609
|
/**
|
|
@@ -2791,7 +2614,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2791
2614
|
* @param {number} [completionTimeout]
|
|
2792
2615
|
* @param {*} [options] Override http request option.
|
|
2793
2616
|
* @throws {RequiredError}
|
|
2794
|
-
* @memberof ControllerApi
|
|
2795
2617
|
*/
|
|
2796
2618
|
addRobotController(cell, robotController, completionTimeout, options) {
|
|
2797
2619
|
return ControllerApiFp(this.configuration).addRobotController(cell, robotController, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2803,7 +2625,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2803
2625
|
* @param {number} [completionTimeout]
|
|
2804
2626
|
* @param {*} [options] Override http request option.
|
|
2805
2627
|
* @throws {RequiredError}
|
|
2806
|
-
* @memberof ControllerApi
|
|
2807
2628
|
*/
|
|
2808
2629
|
clearRobotControllers(cell, completionTimeout, options) {
|
|
2809
2630
|
return ControllerApiFp(this.configuration).clearRobotControllers(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2816,7 +2637,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2816
2637
|
* @param {number} [completionTimeout]
|
|
2817
2638
|
* @param {*} [options] Override http request option.
|
|
2818
2639
|
* @throws {RequiredError}
|
|
2819
|
-
* @memberof ControllerApi
|
|
2820
2640
|
*/
|
|
2821
2641
|
deleteRobotController(cell, controller, completionTimeout, options) {
|
|
2822
2642
|
return ControllerApiFp(this.configuration).deleteRobotController(cell, controller, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2828,7 +2648,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2828
2648
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
2829
2649
|
* @param {*} [options] Override http request option.
|
|
2830
2650
|
* @throws {RequiredError}
|
|
2831
|
-
* @memberof ControllerApi
|
|
2832
2651
|
*/
|
|
2833
2652
|
getControllerDescription(cell, controller, options) {
|
|
2834
2653
|
return ControllerApiFp(this.configuration).getControllerDescription(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2842,7 +2661,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2842
2661
|
* @param {OrientationType} [orientationType]
|
|
2843
2662
|
* @param {*} [options] Override http request option.
|
|
2844
2663
|
* @throws {RequiredError}
|
|
2845
|
-
* @memberof ControllerApi
|
|
2846
2664
|
*/
|
|
2847
2665
|
getCoordinateSystem(cell, controller, coordinateSystem, orientationType, options) {
|
|
2848
2666
|
return ControllerApiFp(this.configuration).getCoordinateSystem(cell, controller, coordinateSystem, orientationType, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2854,7 +2672,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2854
2672
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
2855
2673
|
* @param {*} [options] Override http request option.
|
|
2856
2674
|
* @throws {RequiredError}
|
|
2857
|
-
* @memberof ControllerApi
|
|
2858
2675
|
*/
|
|
2859
2676
|
getCurrentRobotControllerState(cell, controller, options) {
|
|
2860
2677
|
return ControllerApiFp(this.configuration).getCurrentRobotControllerState(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2866,7 +2683,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2866
2683
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
2867
2684
|
* @param {*} [options] Override http request option.
|
|
2868
2685
|
* @throws {RequiredError}
|
|
2869
|
-
* @memberof ControllerApi
|
|
2870
2686
|
*/
|
|
2871
2687
|
getRobotController(cell, controller, options) {
|
|
2872
2688
|
return ControllerApiFp(this.configuration).getRobotController(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2878,7 +2694,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2878
2694
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
2879
2695
|
* @param {*} [options] Override http request option.
|
|
2880
2696
|
* @throws {RequiredError}
|
|
2881
|
-
* @memberof ControllerApi
|
|
2882
2697
|
*/
|
|
2883
2698
|
getVirtualControllerConfiguration(cell, controller, options) {
|
|
2884
2699
|
return ControllerApiFp(this.configuration).getVirtualControllerConfiguration(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2891,7 +2706,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2891
2706
|
* @param {OrientationType} [orientationType]
|
|
2892
2707
|
* @param {*} [options] Override http request option.
|
|
2893
2708
|
* @throws {RequiredError}
|
|
2894
|
-
* @memberof ControllerApi
|
|
2895
2709
|
*/
|
|
2896
2710
|
listCoordinateSystems(cell, controller, orientationType, options) {
|
|
2897
2711
|
return ControllerApiFp(this.configuration).listCoordinateSystems(cell, controller, orientationType, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2902,7 +2716,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2902
2716
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2903
2717
|
* @param {*} [options] Override http request option.
|
|
2904
2718
|
* @throws {RequiredError}
|
|
2905
|
-
* @memberof ControllerApi
|
|
2906
2719
|
*/
|
|
2907
2720
|
listRobotControllers(cell, options) {
|
|
2908
2721
|
return ControllerApiFp(this.configuration).listRobotControllers(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2915,7 +2728,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2915
2728
|
* @param {SettableRobotSystemMode} mode
|
|
2916
2729
|
* @param {*} [options] Override http request option.
|
|
2917
2730
|
* @throws {RequiredError}
|
|
2918
|
-
* @memberof ControllerApi
|
|
2919
2731
|
*/
|
|
2920
2732
|
setDefaultMode(cell, controller, mode, options) {
|
|
2921
2733
|
return ControllerApiFp(this.configuration).setDefaultMode(cell, controller, mode, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2928,7 +2740,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2928
2740
|
* @param {number} [responseRate]
|
|
2929
2741
|
* @param {*} [options] Override http request option.
|
|
2930
2742
|
* @throws {RequiredError}
|
|
2931
|
-
* @memberof ControllerApi
|
|
2932
2743
|
*/
|
|
2933
2744
|
streamFreeDrive(cell, controller, responseRate, options) {
|
|
2934
2745
|
return ControllerApiFp(this.configuration).streamFreeDrive(cell, controller, responseRate, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2942,7 +2753,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2942
2753
|
* @param {number} [addControllerTimeout]
|
|
2943
2754
|
* @param {*} [options] Override http request option.
|
|
2944
2755
|
* @throws {RequiredError}
|
|
2945
|
-
* @memberof ControllerApi
|
|
2946
2756
|
*/
|
|
2947
2757
|
streamRobotControllerState(cell, controller, responseRate, addControllerTimeout, options) {
|
|
2948
2758
|
return ControllerApiFp(this.configuration).streamRobotControllerState(cell, controller, responseRate, addControllerTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2956,7 +2766,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2956
2766
|
* @param {number} [completionTimeout]
|
|
2957
2767
|
* @param {*} [options] Override http request option.
|
|
2958
2768
|
* @throws {RequiredError}
|
|
2959
|
-
* @memberof ControllerApi
|
|
2960
2769
|
*/
|
|
2961
2770
|
updateRobotController(cell, controller, robotController, completionTimeout, options) {
|
|
2962
2771
|
return ControllerApiFp(this.configuration).updateRobotController(cell, controller, robotController, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2964,7 +2773,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2964
2773
|
};
|
|
2965
2774
|
/**
|
|
2966
2775
|
* ControllerInputsOutputsApi - axios parameter creator
|
|
2967
|
-
* @export
|
|
2968
2776
|
*/
|
|
2969
2777
|
const ControllerInputsOutputsApiAxiosParamCreator = function(configuration) {
|
|
2970
2778
|
return {
|
|
@@ -3124,7 +2932,6 @@ const ControllerInputsOutputsApiAxiosParamCreator = function(configuration) {
|
|
|
3124
2932
|
};
|
|
3125
2933
|
/**
|
|
3126
2934
|
* ControllerInputsOutputsApi - functional programming interface
|
|
3127
|
-
* @export
|
|
3128
2935
|
*/
|
|
3129
2936
|
const ControllerInputsOutputsApiFp = function(configuration) {
|
|
3130
2937
|
const localVarAxiosParamCreator = ControllerInputsOutputsApiAxiosParamCreator(configuration);
|
|
@@ -3163,7 +2970,6 @@ const ControllerInputsOutputsApiFp = function(configuration) {
|
|
|
3163
2970
|
};
|
|
3164
2971
|
/**
|
|
3165
2972
|
* ControllerInputsOutputsApi - factory interface
|
|
3166
|
-
* @export
|
|
3167
2973
|
*/
|
|
3168
2974
|
const ControllerInputsOutputsApiFactory = function(configuration, basePath, axios$1) {
|
|
3169
2975
|
const localVarFp = ControllerInputsOutputsApiFp(configuration);
|
|
@@ -3187,9 +2993,6 @@ const ControllerInputsOutputsApiFactory = function(configuration, basePath, axio
|
|
|
3187
2993
|
};
|
|
3188
2994
|
/**
|
|
3189
2995
|
* ControllerInputsOutputsApi - object-oriented interface
|
|
3190
|
-
* @export
|
|
3191
|
-
* @class ControllerInputsOutputsApi
|
|
3192
|
-
* @extends {BaseAPI}
|
|
3193
2996
|
*/
|
|
3194
2997
|
var ControllerInputsOutputsApi = class extends BaseAPI {
|
|
3195
2998
|
/**
|
|
@@ -3203,7 +3006,6 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
3203
3006
|
* @param {string} [group] Return only inputs/outputs from the specified group.
|
|
3204
3007
|
* @param {*} [options] Override http request option.
|
|
3205
3008
|
* @throws {RequiredError}
|
|
3206
|
-
* @memberof ControllerInputsOutputsApi
|
|
3207
3009
|
*/
|
|
3208
3010
|
listIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
3209
3011
|
return ControllerInputsOutputsApiFp(this.configuration).listIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3216,7 +3018,6 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
3216
3018
|
* @param {Array<string>} [ios]
|
|
3217
3019
|
* @param {*} [options] Override http request option.
|
|
3218
3020
|
* @throws {RequiredError}
|
|
3219
|
-
* @memberof ControllerInputsOutputsApi
|
|
3220
3021
|
*/
|
|
3221
3022
|
listIOValues(cell, controller, ios, options) {
|
|
3222
3023
|
return ControllerInputsOutputsApiFp(this.configuration).listIOValues(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3229,7 +3030,6 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
3229
3030
|
* @param {Array<IOValue>} iOValue
|
|
3230
3031
|
* @param {*} [options] Override http request option.
|
|
3231
3032
|
* @throws {RequiredError}
|
|
3232
|
-
* @memberof ControllerInputsOutputsApi
|
|
3233
3033
|
*/
|
|
3234
3034
|
setOutputValues(cell, controller, iOValue, options) {
|
|
3235
3035
|
return ControllerInputsOutputsApiFp(this.configuration).setOutputValues(cell, controller, iOValue, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3242,7 +3042,6 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
3242
3042
|
* @param {Array<string>} [ios]
|
|
3243
3043
|
* @param {*} [options] Override http request option.
|
|
3244
3044
|
* @throws {RequiredError}
|
|
3245
|
-
* @memberof ControllerInputsOutputsApi
|
|
3246
3045
|
*/
|
|
3247
3046
|
streamIOValues(cell, controller, ios, options) {
|
|
3248
3047
|
return ControllerInputsOutputsApiFp(this.configuration).streamIOValues(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3255,7 +3054,6 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
3255
3054
|
* @param {WaitForIOEventRequest} waitForIOEventRequest
|
|
3256
3055
|
* @param {*} [options] Override http request option.
|
|
3257
3056
|
* @throws {RequiredError}
|
|
3258
|
-
* @memberof ControllerInputsOutputsApi
|
|
3259
3057
|
*/
|
|
3260
3058
|
waitForIOEvent(cell, controller, waitForIOEventRequest, options) {
|
|
3261
3059
|
return ControllerInputsOutputsApiFp(this.configuration).waitForIOEvent(cell, controller, waitForIOEventRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3263,7 +3061,6 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
3263
3061
|
};
|
|
3264
3062
|
/**
|
|
3265
3063
|
* JoggingApi - axios parameter creator
|
|
3266
|
-
* @export
|
|
3267
3064
|
*/
|
|
3268
3065
|
const JoggingApiAxiosParamCreator = function(configuration) {
|
|
3269
3066
|
return { executeJogging: async (cell, controller, executeJoggingRequest, options = {}) => {
|
|
@@ -3300,7 +3097,6 @@ const JoggingApiAxiosParamCreator = function(configuration) {
|
|
|
3300
3097
|
};
|
|
3301
3098
|
/**
|
|
3302
3099
|
* JoggingApi - functional programming interface
|
|
3303
|
-
* @export
|
|
3304
3100
|
*/
|
|
3305
3101
|
const JoggingApiFp = function(configuration) {
|
|
3306
3102
|
const localVarAxiosParamCreator = JoggingApiAxiosParamCreator(configuration);
|
|
@@ -3313,7 +3109,6 @@ const JoggingApiFp = function(configuration) {
|
|
|
3313
3109
|
};
|
|
3314
3110
|
/**
|
|
3315
3111
|
* JoggingApi - factory interface
|
|
3316
|
-
* @export
|
|
3317
3112
|
*/
|
|
3318
3113
|
const JoggingApiFactory = function(configuration, basePath, axios$1) {
|
|
3319
3114
|
const localVarFp = JoggingApiFp(configuration);
|
|
@@ -3323,9 +3118,6 @@ const JoggingApiFactory = function(configuration, basePath, axios$1) {
|
|
|
3323
3118
|
};
|
|
3324
3119
|
/**
|
|
3325
3120
|
* JoggingApi - object-oriented interface
|
|
3326
|
-
* @export
|
|
3327
|
-
* @class JoggingApi
|
|
3328
|
-
* @extends {BaseAPI}
|
|
3329
3121
|
*/
|
|
3330
3122
|
var JoggingApi = class extends BaseAPI {
|
|
3331
3123
|
/**
|
|
@@ -3336,7 +3128,6 @@ var JoggingApi = class extends BaseAPI {
|
|
|
3336
3128
|
* @param {ExecuteJoggingRequest} executeJoggingRequest
|
|
3337
3129
|
* @param {*} [options] Override http request option.
|
|
3338
3130
|
* @throws {RequiredError}
|
|
3339
|
-
* @memberof JoggingApi
|
|
3340
3131
|
*/
|
|
3341
3132
|
executeJogging(cell, controller, executeJoggingRequest, options) {
|
|
3342
3133
|
return JoggingApiFp(this.configuration).executeJogging(cell, controller, executeJoggingRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3344,7 +3135,6 @@ var JoggingApi = class extends BaseAPI {
|
|
|
3344
3135
|
};
|
|
3345
3136
|
/**
|
|
3346
3137
|
* KinematicsApi - axios parameter creator
|
|
3347
|
-
* @export
|
|
3348
3138
|
*/
|
|
3349
3139
|
const KinematicsApiAxiosParamCreator = function(configuration) {
|
|
3350
3140
|
return {
|
|
@@ -3412,7 +3202,6 @@ const KinematicsApiAxiosParamCreator = function(configuration) {
|
|
|
3412
3202
|
};
|
|
3413
3203
|
/**
|
|
3414
3204
|
* KinematicsApi - functional programming interface
|
|
3415
|
-
* @export
|
|
3416
3205
|
*/
|
|
3417
3206
|
const KinematicsApiFp = function(configuration) {
|
|
3418
3207
|
const localVarAxiosParamCreator = KinematicsApiAxiosParamCreator(configuration);
|
|
@@ -3433,7 +3222,6 @@ const KinematicsApiFp = function(configuration) {
|
|
|
3433
3222
|
};
|
|
3434
3223
|
/**
|
|
3435
3224
|
* KinematicsApi - factory interface
|
|
3436
|
-
* @export
|
|
3437
3225
|
*/
|
|
3438
3226
|
const KinematicsApiFactory = function(configuration, basePath, axios$1) {
|
|
3439
3227
|
const localVarFp = KinematicsApiFp(configuration);
|
|
@@ -3448,9 +3236,6 @@ const KinematicsApiFactory = function(configuration, basePath, axios$1) {
|
|
|
3448
3236
|
};
|
|
3449
3237
|
/**
|
|
3450
3238
|
* KinematicsApi - object-oriented interface
|
|
3451
|
-
* @export
|
|
3452
|
-
* @class KinematicsApi
|
|
3453
|
-
* @extends {BaseAPI}
|
|
3454
3239
|
*/
|
|
3455
3240
|
var KinematicsApi = class extends BaseAPI {
|
|
3456
3241
|
/**
|
|
@@ -3460,7 +3245,6 @@ var KinematicsApi = class extends BaseAPI {
|
|
|
3460
3245
|
* @param {ForwardKinematicsRequest} forwardKinematicsRequest
|
|
3461
3246
|
* @param {*} [options] Override http request option.
|
|
3462
3247
|
* @throws {RequiredError}
|
|
3463
|
-
* @memberof KinematicsApi
|
|
3464
3248
|
*/
|
|
3465
3249
|
forwardKinematics(cell, forwardKinematicsRequest, options) {
|
|
3466
3250
|
return KinematicsApiFp(this.configuration).forwardKinematics(cell, forwardKinematicsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3472,7 +3256,6 @@ var KinematicsApi = class extends BaseAPI {
|
|
|
3472
3256
|
* @param {InverseKinematicsRequest} inverseKinematicsRequest
|
|
3473
3257
|
* @param {*} [options] Override http request option.
|
|
3474
3258
|
* @throws {RequiredError}
|
|
3475
|
-
* @memberof KinematicsApi
|
|
3476
3259
|
*/
|
|
3477
3260
|
inverseKinematics(cell, inverseKinematicsRequest, options) {
|
|
3478
3261
|
return KinematicsApiFp(this.configuration).inverseKinematics(cell, inverseKinematicsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3480,7 +3263,6 @@ var KinematicsApi = class extends BaseAPI {
|
|
|
3480
3263
|
};
|
|
3481
3264
|
/**
|
|
3482
3265
|
* LicenseApi - axios parameter creator
|
|
3483
|
-
* @export
|
|
3484
3266
|
*/
|
|
3485
3267
|
const LicenseApiAxiosParamCreator = function(configuration) {
|
|
3486
3268
|
return {
|
|
@@ -3591,7 +3373,6 @@ const LicenseApiAxiosParamCreator = function(configuration) {
|
|
|
3591
3373
|
};
|
|
3592
3374
|
/**
|
|
3593
3375
|
* LicenseApi - functional programming interface
|
|
3594
|
-
* @export
|
|
3595
3376
|
*/
|
|
3596
3377
|
const LicenseApiFp = function(configuration) {
|
|
3597
3378
|
const localVarAxiosParamCreator = LicenseApiAxiosParamCreator(configuration);
|
|
@@ -3624,7 +3405,6 @@ const LicenseApiFp = function(configuration) {
|
|
|
3624
3405
|
};
|
|
3625
3406
|
/**
|
|
3626
3407
|
* LicenseApi - factory interface
|
|
3627
|
-
* @export
|
|
3628
3408
|
*/
|
|
3629
3409
|
const LicenseApiFactory = function(configuration, basePath, axios$1) {
|
|
3630
3410
|
const localVarFp = LicenseApiFp(configuration);
|
|
@@ -3645,9 +3425,6 @@ const LicenseApiFactory = function(configuration, basePath, axios$1) {
|
|
|
3645
3425
|
};
|
|
3646
3426
|
/**
|
|
3647
3427
|
* LicenseApi - object-oriented interface
|
|
3648
|
-
* @export
|
|
3649
|
-
* @class LicenseApi
|
|
3650
|
-
* @extends {BaseAPI}
|
|
3651
3428
|
*/
|
|
3652
3429
|
var LicenseApi = class extends BaseAPI {
|
|
3653
3430
|
/**
|
|
@@ -3656,7 +3433,6 @@ var LicenseApi = class extends BaseAPI {
|
|
|
3656
3433
|
* @param {ActivateLicenseRequest} activateLicenseRequest
|
|
3657
3434
|
* @param {*} [options] Override http request option.
|
|
3658
3435
|
* @throws {RequiredError}
|
|
3659
|
-
* @memberof LicenseApi
|
|
3660
3436
|
*/
|
|
3661
3437
|
activateLicense(activateLicenseRequest, options) {
|
|
3662
3438
|
return LicenseApiFp(this.configuration).activateLicense(activateLicenseRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3666,7 +3442,6 @@ var LicenseApi = class extends BaseAPI {
|
|
|
3666
3442
|
* @summary Deactivate license
|
|
3667
3443
|
* @param {*} [options] Override http request option.
|
|
3668
3444
|
* @throws {RequiredError}
|
|
3669
|
-
* @memberof LicenseApi
|
|
3670
3445
|
*/
|
|
3671
3446
|
deactivateLicense(options) {
|
|
3672
3447
|
return LicenseApiFp(this.configuration).deactivateLicense(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3676,7 +3451,6 @@ var LicenseApi = class extends BaseAPI {
|
|
|
3676
3451
|
* @summary Get license
|
|
3677
3452
|
* @param {*} [options] Override http request option.
|
|
3678
3453
|
* @throws {RequiredError}
|
|
3679
|
-
* @memberof LicenseApi
|
|
3680
3454
|
*/
|
|
3681
3455
|
getLicense(options) {
|
|
3682
3456
|
return LicenseApiFp(this.configuration).getLicense(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3686,7 +3460,6 @@ var LicenseApi = class extends BaseAPI {
|
|
|
3686
3460
|
* @summary Get license status
|
|
3687
3461
|
* @param {*} [options] Override http request option.
|
|
3688
3462
|
* @throws {RequiredError}
|
|
3689
|
-
* @memberof LicenseApi
|
|
3690
3463
|
*/
|
|
3691
3464
|
getLicenseStatus(options) {
|
|
3692
3465
|
return LicenseApiFp(this.configuration).getLicenseStatus(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3694,7 +3467,6 @@ var LicenseApi = class extends BaseAPI {
|
|
|
3694
3467
|
};
|
|
3695
3468
|
/**
|
|
3696
3469
|
* MotionGroupApi - axios parameter creator
|
|
3697
|
-
* @export
|
|
3698
3470
|
*/
|
|
3699
3471
|
const MotionGroupApiAxiosParamCreator = function(configuration) {
|
|
3700
3472
|
return {
|
|
@@ -3792,7 +3564,6 @@ const MotionGroupApiAxiosParamCreator = function(configuration) {
|
|
|
3792
3564
|
};
|
|
3793
3565
|
/**
|
|
3794
3566
|
* MotionGroupApi - functional programming interface
|
|
3795
|
-
* @export
|
|
3796
3567
|
*/
|
|
3797
3568
|
const MotionGroupApiFp = function(configuration) {
|
|
3798
3569
|
const localVarAxiosParamCreator = MotionGroupApiAxiosParamCreator(configuration);
|
|
@@ -3819,7 +3590,6 @@ const MotionGroupApiFp = function(configuration) {
|
|
|
3819
3590
|
};
|
|
3820
3591
|
/**
|
|
3821
3592
|
* MotionGroupApi - factory interface
|
|
3822
|
-
* @export
|
|
3823
3593
|
*/
|
|
3824
3594
|
const MotionGroupApiFactory = function(configuration, basePath, axios$1) {
|
|
3825
3595
|
const localVarFp = MotionGroupApiFp(configuration);
|
|
@@ -3837,9 +3607,6 @@ const MotionGroupApiFactory = function(configuration, basePath, axios$1) {
|
|
|
3837
3607
|
};
|
|
3838
3608
|
/**
|
|
3839
3609
|
* MotionGroupApi - object-oriented interface
|
|
3840
|
-
* @export
|
|
3841
|
-
* @class MotionGroupApi
|
|
3842
|
-
* @extends {BaseAPI}
|
|
3843
3610
|
*/
|
|
3844
3611
|
var MotionGroupApi = class extends BaseAPI {
|
|
3845
3612
|
/**
|
|
@@ -3851,7 +3618,6 @@ var MotionGroupApi = class extends BaseAPI {
|
|
|
3851
3618
|
* @param {string} [responseCoordinateSystem] Unique identifier addressing a coordinate system to which the responses should be converted. If not set, world coordinate system is used.
|
|
3852
3619
|
* @param {*} [options] Override http request option.
|
|
3853
3620
|
* @throws {RequiredError}
|
|
3854
|
-
* @memberof MotionGroupApi
|
|
3855
3621
|
*/
|
|
3856
3622
|
getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options) {
|
|
3857
3623
|
return MotionGroupApiFp(this.configuration).getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3864,7 +3630,6 @@ var MotionGroupApi = class extends BaseAPI {
|
|
|
3864
3630
|
* @param {string} motionGroup The motion-group identifier.
|
|
3865
3631
|
* @param {*} [options] Override http request option.
|
|
3866
3632
|
* @throws {RequiredError}
|
|
3867
|
-
* @memberof MotionGroupApi
|
|
3868
3633
|
*/
|
|
3869
3634
|
getMotionGroupDescription(cell, controller, motionGroup, options) {
|
|
3870
3635
|
return MotionGroupApiFp(this.configuration).getMotionGroupDescription(cell, controller, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3879,7 +3644,6 @@ var MotionGroupApi = class extends BaseAPI {
|
|
|
3879
3644
|
* @param {string} [responseCoordinateSystem] Unique identifier addressing a coordinate system to which the cartesian data of the responses should be converted. Default is the world coordinate system.
|
|
3880
3645
|
* @param {*} [options] Override http request option.
|
|
3881
3646
|
* @throws {RequiredError}
|
|
3882
|
-
* @memberof MotionGroupApi
|
|
3883
3647
|
*/
|
|
3884
3648
|
streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options) {
|
|
3885
3649
|
return MotionGroupApiFp(this.configuration).streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3887,7 +3651,6 @@ var MotionGroupApi = class extends BaseAPI {
|
|
|
3887
3651
|
};
|
|
3888
3652
|
/**
|
|
3889
3653
|
* MotionGroupModelsApi - axios parameter creator
|
|
3890
|
-
* @export
|
|
3891
3654
|
*/
|
|
3892
3655
|
const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
3893
3656
|
return {
|
|
@@ -3947,7 +3710,6 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
3947
3710
|
};
|
|
3948
3711
|
/**
|
|
3949
3712
|
* MotionGroupModelsApi - functional programming interface
|
|
3950
|
-
* @export
|
|
3951
3713
|
*/
|
|
3952
3714
|
const MotionGroupModelsApiFp = function(configuration) {
|
|
3953
3715
|
const localVarAxiosParamCreator = MotionGroupModelsApiAxiosParamCreator(configuration);
|
|
@@ -3968,7 +3730,6 @@ const MotionGroupModelsApiFp = function(configuration) {
|
|
|
3968
3730
|
};
|
|
3969
3731
|
/**
|
|
3970
3732
|
* MotionGroupModelsApi - factory interface
|
|
3971
|
-
* @export
|
|
3972
3733
|
*/
|
|
3973
3734
|
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$1) {
|
|
3974
3735
|
const localVarFp = MotionGroupModelsApiFp(configuration);
|
|
@@ -3983,9 +3744,6 @@ const MotionGroupModelsApiFactory = function(configuration, basePath, axios$1) {
|
|
|
3983
3744
|
};
|
|
3984
3745
|
/**
|
|
3985
3746
|
* MotionGroupModelsApi - object-oriented interface
|
|
3986
|
-
* @export
|
|
3987
|
-
* @class MotionGroupModelsApi
|
|
3988
|
-
* @extends {BaseAPI}
|
|
3989
3747
|
*/
|
|
3990
3748
|
var MotionGroupModelsApi = class extends BaseAPI {
|
|
3991
3749
|
/**
|
|
@@ -3994,7 +3752,6 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
3994
3752
|
* @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](getOptimizerConfiguration).
|
|
3995
3753
|
* @param {*} [options] Override http request option.
|
|
3996
3754
|
* @throws {RequiredError}
|
|
3997
|
-
* @memberof MotionGroupModelsApi
|
|
3998
3755
|
*/
|
|
3999
3756
|
getMotionGroupCollisionModel(motionGroupModel, options) {
|
|
4000
3757
|
return MotionGroupModelsApiFp(this.configuration).getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4004,7 +3761,6 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
4004
3761
|
* @summary Motion Group Models
|
|
4005
3762
|
* @param {*} [options] Override http request option.
|
|
4006
3763
|
* @throws {RequiredError}
|
|
4007
|
-
* @memberof MotionGroupModelsApi
|
|
4008
3764
|
*/
|
|
4009
3765
|
getMotionGroupModels(options) {
|
|
4010
3766
|
return MotionGroupModelsApiFp(this.configuration).getMotionGroupModels(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4012,7 +3768,6 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
4012
3768
|
};
|
|
4013
3769
|
/**
|
|
4014
3770
|
* ProgramApi - axios parameter creator
|
|
4015
|
-
* @export
|
|
4016
3771
|
*/
|
|
4017
3772
|
const ProgramApiAxiosParamCreator = function(configuration) {
|
|
4018
3773
|
return {
|
|
@@ -4134,7 +3889,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
|
|
|
4134
3889
|
};
|
|
4135
3890
|
/**
|
|
4136
3891
|
* ProgramApi - functional programming interface
|
|
4137
|
-
* @export
|
|
4138
3892
|
*/
|
|
4139
3893
|
const ProgramApiFp = function(configuration) {
|
|
4140
3894
|
const localVarAxiosParamCreator = ProgramApiAxiosParamCreator(configuration);
|
|
@@ -4167,7 +3921,6 @@ const ProgramApiFp = function(configuration) {
|
|
|
4167
3921
|
};
|
|
4168
3922
|
/**
|
|
4169
3923
|
* ProgramApi - factory interface
|
|
4170
|
-
* @export
|
|
4171
3924
|
*/
|
|
4172
3925
|
const ProgramApiFactory = function(configuration, basePath, axios$1) {
|
|
4173
3926
|
const localVarFp = ProgramApiFp(configuration);
|
|
@@ -4188,9 +3941,6 @@ const ProgramApiFactory = function(configuration, basePath, axios$1) {
|
|
|
4188
3941
|
};
|
|
4189
3942
|
/**
|
|
4190
3943
|
* ProgramApi - object-oriented interface
|
|
4191
|
-
* @export
|
|
4192
|
-
* @class ProgramApi
|
|
4193
|
-
* @extends {BaseAPI}
|
|
4194
3944
|
*/
|
|
4195
3945
|
var ProgramApi = class extends BaseAPI {
|
|
4196
3946
|
/**
|
|
@@ -4200,7 +3950,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
4200
3950
|
* @param {string} program
|
|
4201
3951
|
* @param {*} [options] Override http request option.
|
|
4202
3952
|
* @throws {RequiredError}
|
|
4203
|
-
* @memberof ProgramApi
|
|
4204
3953
|
*/
|
|
4205
3954
|
getProgram(cell, program, options) {
|
|
4206
3955
|
return ProgramApiFp(this.configuration).getProgram(cell, program, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4211,7 +3960,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
4211
3960
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4212
3961
|
* @param {*} [options] Override http request option.
|
|
4213
3962
|
* @throws {RequiredError}
|
|
4214
|
-
* @memberof ProgramApi
|
|
4215
3963
|
*/
|
|
4216
3964
|
listPrograms(cell, options) {
|
|
4217
3965
|
return ProgramApiFp(this.configuration).listPrograms(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4224,7 +3972,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
4224
3972
|
* @param {ProgramStartRequest} programStartRequest
|
|
4225
3973
|
* @param {*} [options] Override http request option.
|
|
4226
3974
|
* @throws {RequiredError}
|
|
4227
|
-
* @memberof ProgramApi
|
|
4228
3975
|
*/
|
|
4229
3976
|
startProgram(cell, program, programStartRequest, options) {
|
|
4230
3977
|
return ProgramApiFp(this.configuration).startProgram(cell, program, programStartRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4236,7 +3983,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
4236
3983
|
* @param {string} program
|
|
4237
3984
|
* @param {*} [options] Override http request option.
|
|
4238
3985
|
* @throws {RequiredError}
|
|
4239
|
-
* @memberof ProgramApi
|
|
4240
3986
|
*/
|
|
4241
3987
|
stopProgram(cell, program, options) {
|
|
4242
3988
|
return ProgramApiFp(this.configuration).stopProgram(cell, program, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4244,7 +3990,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
4244
3990
|
};
|
|
4245
3991
|
/**
|
|
4246
3992
|
* StoreCollisionComponentsApi - axios parameter creator
|
|
4247
|
-
* @export
|
|
4248
3993
|
*/
|
|
4249
3994
|
const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
4250
3995
|
return {
|
|
@@ -4675,7 +4420,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
|
4675
4420
|
};
|
|
4676
4421
|
/**
|
|
4677
4422
|
* StoreCollisionComponentsApi - functional programming interface
|
|
4678
|
-
* @export
|
|
4679
4423
|
*/
|
|
4680
4424
|
const StoreCollisionComponentsApiFp = function(configuration) {
|
|
4681
4425
|
const localVarAxiosParamCreator = StoreCollisionComponentsApiAxiosParamCreator(configuration);
|
|
@@ -4774,7 +4518,6 @@ const StoreCollisionComponentsApiFp = function(configuration) {
|
|
|
4774
4518
|
};
|
|
4775
4519
|
/**
|
|
4776
4520
|
* StoreCollisionComponentsApi - factory interface
|
|
4777
|
-
* @export
|
|
4778
4521
|
*/
|
|
4779
4522
|
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$1) {
|
|
4780
4523
|
const localVarFp = StoreCollisionComponentsApiFp(configuration);
|
|
@@ -4828,9 +4571,6 @@ const StoreCollisionComponentsApiFactory = function(configuration, basePath, axi
|
|
|
4828
4571
|
};
|
|
4829
4572
|
/**
|
|
4830
4573
|
* StoreCollisionComponentsApi - object-oriented interface
|
|
4831
|
-
* @export
|
|
4832
|
-
* @class StoreCollisionComponentsApi
|
|
4833
|
-
* @extends {BaseAPI}
|
|
4834
4574
|
*/
|
|
4835
4575
|
var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
4836
4576
|
/**
|
|
@@ -4840,7 +4580,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4840
4580
|
* @param {string} collider Unique identifier addressing a collider.
|
|
4841
4581
|
* @param {*} [options] Override http request option.
|
|
4842
4582
|
* @throws {RequiredError}
|
|
4843
|
-
* @memberof StoreCollisionComponentsApi
|
|
4844
4583
|
*/
|
|
4845
4584
|
deleteStoredCollider(cell, collider, options) {
|
|
4846
4585
|
return StoreCollisionComponentsApiFp(this.configuration).deleteStoredCollider(cell, collider, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4852,7 +4591,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4852
4591
|
* @param {string} linkChain Unique identifier addressing a collision link chain.
|
|
4853
4592
|
* @param {*} [options] Override http request option.
|
|
4854
4593
|
* @throws {RequiredError}
|
|
4855
|
-
* @memberof StoreCollisionComponentsApi
|
|
4856
4594
|
*/
|
|
4857
4595
|
deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
4858
4596
|
return StoreCollisionComponentsApiFp(this.configuration).deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4864,7 +4602,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4864
4602
|
* @param {string} tool Unique identifier addressing a collision tool.
|
|
4865
4603
|
* @param {*} [options] Override http request option.
|
|
4866
4604
|
* @throws {RequiredError}
|
|
4867
|
-
* @memberof StoreCollisionComponentsApi
|
|
4868
4605
|
*/
|
|
4869
4606
|
deleteStoredCollisionTool(cell, tool, options) {
|
|
4870
4607
|
return StoreCollisionComponentsApiFp(this.configuration).deleteStoredCollisionTool(cell, tool, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4876,7 +4613,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4876
4613
|
* @param {string} collider Unique identifier addressing a collider.
|
|
4877
4614
|
* @param {*} [options] Override http request option.
|
|
4878
4615
|
* @throws {RequiredError}
|
|
4879
|
-
* @memberof StoreCollisionComponentsApi
|
|
4880
4616
|
*/
|
|
4881
4617
|
getStoredCollider(cell, collider, options) {
|
|
4882
4618
|
return StoreCollisionComponentsApiFp(this.configuration).getStoredCollider(cell, collider, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4888,7 +4624,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4888
4624
|
* @param {string} linkChain Unique identifier addressing a collision link chain.
|
|
4889
4625
|
* @param {*} [options] Override http request option.
|
|
4890
4626
|
* @throws {RequiredError}
|
|
4891
|
-
* @memberof StoreCollisionComponentsApi
|
|
4892
4627
|
*/
|
|
4893
4628
|
getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
4894
4629
|
return StoreCollisionComponentsApiFp(this.configuration).getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4900,7 +4635,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4900
4635
|
* @param {string} tool Unique identifier addressing a collision tool.
|
|
4901
4636
|
* @param {*} [options] Override http request option.
|
|
4902
4637
|
* @throws {RequiredError}
|
|
4903
|
-
* @memberof StoreCollisionComponentsApi
|
|
4904
4638
|
*/
|
|
4905
4639
|
getStoredCollisionTool(cell, tool, options) {
|
|
4906
4640
|
return StoreCollisionComponentsApiFp(this.configuration).getStoredCollisionTool(cell, tool, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4911,7 +4645,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4911
4645
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4912
4646
|
* @param {*} [options] Override http request option.
|
|
4913
4647
|
* @throws {RequiredError}
|
|
4914
|
-
* @memberof StoreCollisionComponentsApi
|
|
4915
4648
|
*/
|
|
4916
4649
|
listCollisionLinkChains(cell, options) {
|
|
4917
4650
|
return StoreCollisionComponentsApiFp(this.configuration).listCollisionLinkChains(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4922,7 +4655,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4922
4655
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4923
4656
|
* @param {*} [options] Override http request option.
|
|
4924
4657
|
* @throws {RequiredError}
|
|
4925
|
-
* @memberof StoreCollisionComponentsApi
|
|
4926
4658
|
*/
|
|
4927
4659
|
listCollisionLinkChainsKeys(cell, options) {
|
|
4928
4660
|
return StoreCollisionComponentsApiFp(this.configuration).listCollisionLinkChainsKeys(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4933,7 +4665,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4933
4665
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4934
4666
|
* @param {*} [options] Override http request option.
|
|
4935
4667
|
* @throws {RequiredError}
|
|
4936
|
-
* @memberof StoreCollisionComponentsApi
|
|
4937
4668
|
*/
|
|
4938
4669
|
listStoredColliders(cell, options) {
|
|
4939
4670
|
return StoreCollisionComponentsApiFp(this.configuration).listStoredColliders(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4944,7 +4675,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4944
4675
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4945
4676
|
* @param {*} [options] Override http request option.
|
|
4946
4677
|
* @throws {RequiredError}
|
|
4947
|
-
* @memberof StoreCollisionComponentsApi
|
|
4948
4678
|
*/
|
|
4949
4679
|
listStoredCollidersKeys(cell, options) {
|
|
4950
4680
|
return StoreCollisionComponentsApiFp(this.configuration).listStoredCollidersKeys(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4955,7 +4685,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4955
4685
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4956
4686
|
* @param {*} [options] Override http request option.
|
|
4957
4687
|
* @throws {RequiredError}
|
|
4958
|
-
* @memberof StoreCollisionComponentsApi
|
|
4959
4688
|
*/
|
|
4960
4689
|
listStoredCollisionTools(cell, options) {
|
|
4961
4690
|
return StoreCollisionComponentsApiFp(this.configuration).listStoredCollisionTools(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4966,7 +4695,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4966
4695
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4967
4696
|
* @param {*} [options] Override http request option.
|
|
4968
4697
|
* @throws {RequiredError}
|
|
4969
|
-
* @memberof StoreCollisionComponentsApi
|
|
4970
4698
|
*/
|
|
4971
4699
|
listStoredCollisionToolsKeys(cell, options) {
|
|
4972
4700
|
return StoreCollisionComponentsApiFp(this.configuration).listStoredCollisionToolsKeys(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4979,7 +4707,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4979
4707
|
* @param {Collider} collider2
|
|
4980
4708
|
* @param {*} [options] Override http request option.
|
|
4981
4709
|
* @throws {RequiredError}
|
|
4982
|
-
* @memberof StoreCollisionComponentsApi
|
|
4983
4710
|
*/
|
|
4984
4711
|
storeCollider(cell, collider, collider2, options) {
|
|
4985
4712
|
return StoreCollisionComponentsApiFp(this.configuration).storeCollider(cell, collider, collider2, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4992,7 +4719,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4992
4719
|
* @param {Array<{ [key: string]: Collider; }>} collider
|
|
4993
4720
|
* @param {*} [options] Override http request option.
|
|
4994
4721
|
* @throws {RequiredError}
|
|
4995
|
-
* @memberof StoreCollisionComponentsApi
|
|
4996
4722
|
*/
|
|
4997
4723
|
storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
4998
4724
|
return StoreCollisionComponentsApiFp(this.configuration).storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5005,7 +4731,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
5005
4731
|
* @param {{ [key: string]: Collider; }} requestBody
|
|
5006
4732
|
* @param {*} [options] Override http request option.
|
|
5007
4733
|
* @throws {RequiredError}
|
|
5008
|
-
* @memberof StoreCollisionComponentsApi
|
|
5009
4734
|
*/
|
|
5010
4735
|
storeCollisionTool(cell, tool, requestBody, options) {
|
|
5011
4736
|
return StoreCollisionComponentsApiFp(this.configuration).storeCollisionTool(cell, tool, requestBody, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5013,7 +4738,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
5013
4738
|
};
|
|
5014
4739
|
/**
|
|
5015
4740
|
* StoreCollisionSetupsApi - axios parameter creator
|
|
5016
|
-
* @export
|
|
5017
4741
|
*/
|
|
5018
4742
|
const StoreCollisionSetupsApiAxiosParamCreator = function(configuration) {
|
|
5019
4743
|
return {
|
|
@@ -5162,7 +4886,6 @@ const StoreCollisionSetupsApiAxiosParamCreator = function(configuration) {
|
|
|
5162
4886
|
};
|
|
5163
4887
|
/**
|
|
5164
4888
|
* StoreCollisionSetupsApi - functional programming interface
|
|
5165
|
-
* @export
|
|
5166
4889
|
*/
|
|
5167
4890
|
const StoreCollisionSetupsApiFp = function(configuration) {
|
|
5168
4891
|
const localVarAxiosParamCreator = StoreCollisionSetupsApiAxiosParamCreator(configuration);
|
|
@@ -5201,7 +4924,6 @@ const StoreCollisionSetupsApiFp = function(configuration) {
|
|
|
5201
4924
|
};
|
|
5202
4925
|
/**
|
|
5203
4926
|
* StoreCollisionSetupsApi - factory interface
|
|
5204
|
-
* @export
|
|
5205
4927
|
*/
|
|
5206
4928
|
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$1) {
|
|
5207
4929
|
const localVarFp = StoreCollisionSetupsApiFp(configuration);
|
|
@@ -5225,9 +4947,6 @@ const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$1
|
|
|
5225
4947
|
};
|
|
5226
4948
|
/**
|
|
5227
4949
|
* StoreCollisionSetupsApi - object-oriented interface
|
|
5228
|
-
* @export
|
|
5229
|
-
* @class StoreCollisionSetupsApi
|
|
5230
|
-
* @extends {BaseAPI}
|
|
5231
4950
|
*/
|
|
5232
4951
|
var StoreCollisionSetupsApi = class extends BaseAPI {
|
|
5233
4952
|
/**
|
|
@@ -5237,7 +4956,6 @@ var StoreCollisionSetupsApi = class extends BaseAPI {
|
|
|
5237
4956
|
* @param {string} setup Identifier of the collision setup
|
|
5238
4957
|
* @param {*} [options] Override http request option.
|
|
5239
4958
|
* @throws {RequiredError}
|
|
5240
|
-
* @memberof StoreCollisionSetupsApi
|
|
5241
4959
|
*/
|
|
5242
4960
|
deleteStoredCollisionSetup(cell, setup, options) {
|
|
5243
4961
|
return StoreCollisionSetupsApiFp(this.configuration).deleteStoredCollisionSetup(cell, setup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5249,7 +4967,6 @@ var StoreCollisionSetupsApi = class extends BaseAPI {
|
|
|
5249
4967
|
* @param {string} setup Identifier of the collision setup
|
|
5250
4968
|
* @param {*} [options] Override http request option.
|
|
5251
4969
|
* @throws {RequiredError}
|
|
5252
|
-
* @memberof StoreCollisionSetupsApi
|
|
5253
4970
|
*/
|
|
5254
4971
|
getStoredCollisionSetup(cell, setup, options) {
|
|
5255
4972
|
return StoreCollisionSetupsApiFp(this.configuration).getStoredCollisionSetup(cell, setup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5260,7 +4977,6 @@ var StoreCollisionSetupsApi = class extends BaseAPI {
|
|
|
5260
4977
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5261
4978
|
* @param {*} [options] Override http request option.
|
|
5262
4979
|
* @throws {RequiredError}
|
|
5263
|
-
* @memberof StoreCollisionSetupsApi
|
|
5264
4980
|
*/
|
|
5265
4981
|
listStoredCollisionSetups(cell, options) {
|
|
5266
4982
|
return StoreCollisionSetupsApiFp(this.configuration).listStoredCollisionSetups(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5271,7 +4987,6 @@ var StoreCollisionSetupsApi = class extends BaseAPI {
|
|
|
5271
4987
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5272
4988
|
* @param {*} [options] Override http request option.
|
|
5273
4989
|
* @throws {RequiredError}
|
|
5274
|
-
* @memberof StoreCollisionSetupsApi
|
|
5275
4990
|
*/
|
|
5276
4991
|
listStoredCollisionSetupsKeys(cell, options) {
|
|
5277
4992
|
return StoreCollisionSetupsApiFp(this.configuration).listStoredCollisionSetupsKeys(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5284,7 +4999,6 @@ var StoreCollisionSetupsApi = class extends BaseAPI {
|
|
|
5284
4999
|
* @param {CollisionSetup} collisionSetup
|
|
5285
5000
|
* @param {*} [options] Override http request option.
|
|
5286
5001
|
* @throws {RequiredError}
|
|
5287
|
-
* @memberof StoreCollisionSetupsApi
|
|
5288
5002
|
*/
|
|
5289
5003
|
storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
5290
5004
|
return StoreCollisionSetupsApiFp(this.configuration).storeCollisionSetup(cell, setup, collisionSetup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5292,7 +5006,6 @@ var StoreCollisionSetupsApi = class extends BaseAPI {
|
|
|
5292
5006
|
};
|
|
5293
5007
|
/**
|
|
5294
5008
|
* StoreObjectApi - axios parameter creator
|
|
5295
|
-
* @export
|
|
5296
5009
|
*/
|
|
5297
5010
|
const StoreObjectApiAxiosParamCreator = function(configuration) {
|
|
5298
5011
|
return {
|
|
@@ -5471,7 +5184,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
|
|
|
5471
5184
|
};
|
|
5472
5185
|
/**
|
|
5473
5186
|
* StoreObjectApi - functional programming interface
|
|
5474
|
-
* @export
|
|
5475
5187
|
*/
|
|
5476
5188
|
const StoreObjectApiFp = function(configuration) {
|
|
5477
5189
|
const localVarAxiosParamCreator = StoreObjectApiAxiosParamCreator(configuration);
|
|
@@ -5516,7 +5228,6 @@ const StoreObjectApiFp = function(configuration) {
|
|
|
5516
5228
|
};
|
|
5517
5229
|
/**
|
|
5518
5230
|
* StoreObjectApi - factory interface
|
|
5519
|
-
* @export
|
|
5520
5231
|
*/
|
|
5521
5232
|
const StoreObjectApiFactory = function(configuration, basePath, axios$1) {
|
|
5522
5233
|
const localVarFp = StoreObjectApiFp(configuration);
|
|
@@ -5543,9 +5254,6 @@ const StoreObjectApiFactory = function(configuration, basePath, axios$1) {
|
|
|
5543
5254
|
};
|
|
5544
5255
|
/**
|
|
5545
5256
|
* StoreObjectApi - object-oriented interface
|
|
5546
|
-
* @export
|
|
5547
|
-
* @class StoreObjectApi
|
|
5548
|
-
* @extends {BaseAPI}
|
|
5549
5257
|
*/
|
|
5550
5258
|
var StoreObjectApi = class extends BaseAPI {
|
|
5551
5259
|
/**
|
|
@@ -5554,7 +5262,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
5554
5262
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5555
5263
|
* @param {*} [options] Override http request option.
|
|
5556
5264
|
* @throws {RequiredError}
|
|
5557
|
-
* @memberof StoreObjectApi
|
|
5558
5265
|
*/
|
|
5559
5266
|
clearAllObjects(cell, options) {
|
|
5560
5267
|
return StoreObjectApiFp(this.configuration).clearAllObjects(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5566,7 +5273,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
5566
5273
|
* @param {string} key
|
|
5567
5274
|
* @param {*} [options] Override http request option.
|
|
5568
5275
|
* @throws {RequiredError}
|
|
5569
|
-
* @memberof StoreObjectApi
|
|
5570
5276
|
*/
|
|
5571
5277
|
deleteObject(cell, key, options) {
|
|
5572
5278
|
return StoreObjectApiFp(this.configuration).deleteObject(cell, key, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5578,7 +5284,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
5578
5284
|
* @param {string} key
|
|
5579
5285
|
* @param {*} [options] Override http request option.
|
|
5580
5286
|
* @throws {RequiredError}
|
|
5581
|
-
* @memberof StoreObjectApi
|
|
5582
5287
|
*/
|
|
5583
5288
|
getObject(cell, key, options) {
|
|
5584
5289
|
return StoreObjectApiFp(this.configuration).getObject(cell, key, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5590,7 +5295,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
5590
5295
|
* @param {string} key
|
|
5591
5296
|
* @param {*} [options] Override http request option.
|
|
5592
5297
|
* @throws {RequiredError}
|
|
5593
|
-
* @memberof StoreObjectApi
|
|
5594
5298
|
*/
|
|
5595
5299
|
getObjectMetadata(cell, key, options) {
|
|
5596
5300
|
return StoreObjectApiFp(this.configuration).getObjectMetadata(cell, key, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5601,7 +5305,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
5601
5305
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5602
5306
|
* @param {*} [options] Override http request option.
|
|
5603
5307
|
* @throws {RequiredError}
|
|
5604
|
-
* @memberof StoreObjectApi
|
|
5605
5308
|
*/
|
|
5606
5309
|
listAllObjectKeys(cell, options) {
|
|
5607
5310
|
return StoreObjectApiFp(this.configuration).listAllObjectKeys(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5615,7 +5318,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
5615
5318
|
* @param {any} [anyValue]
|
|
5616
5319
|
* @param {*} [options] Override http request option.
|
|
5617
5320
|
* @throws {RequiredError}
|
|
5618
|
-
* @memberof StoreObjectApi
|
|
5619
5321
|
*/
|
|
5620
5322
|
storeObject(cell, key, xMetadata, anyValue, options) {
|
|
5621
5323
|
return StoreObjectApiFp(this.configuration).storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5623,7 +5325,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
5623
5325
|
};
|
|
5624
5326
|
/**
|
|
5625
5327
|
* SystemApi - axios parameter creator
|
|
5626
|
-
* @export
|
|
5627
5328
|
*/
|
|
5628
5329
|
const SystemApiAxiosParamCreator = function(configuration) {
|
|
5629
5330
|
return {
|
|
@@ -5870,7 +5571,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
|
|
|
5870
5571
|
};
|
|
5871
5572
|
/**
|
|
5872
5573
|
* SystemApi - functional programming interface
|
|
5873
|
-
* @export
|
|
5874
5574
|
*/
|
|
5875
5575
|
const SystemApiFp = function(configuration) {
|
|
5876
5576
|
const localVarAxiosParamCreator = SystemApiAxiosParamCreator(configuration);
|
|
@@ -5933,7 +5633,6 @@ const SystemApiFp = function(configuration) {
|
|
|
5933
5633
|
};
|
|
5934
5634
|
/**
|
|
5935
5635
|
* SystemApi - factory interface
|
|
5936
|
-
* @export
|
|
5937
5636
|
*/
|
|
5938
5637
|
const SystemApiFactory = function(configuration, basePath, axios$1) {
|
|
5939
5638
|
const localVarFp = SystemApiFp(configuration);
|
|
@@ -5969,9 +5668,6 @@ const SystemApiFactory = function(configuration, basePath, axios$1) {
|
|
|
5969
5668
|
};
|
|
5970
5669
|
/**
|
|
5971
5670
|
* SystemApi - object-oriented interface
|
|
5972
|
-
* @export
|
|
5973
|
-
* @class SystemApi
|
|
5974
|
-
* @extends {BaseAPI}
|
|
5975
5671
|
*/
|
|
5976
5672
|
var SystemApi = class extends BaseAPI {
|
|
5977
5673
|
/**
|
|
@@ -5981,7 +5677,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
5981
5677
|
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
5982
5678
|
* @param {*} [options] Override http request option.
|
|
5983
5679
|
* @throws {RequiredError}
|
|
5984
|
-
* @memberof SystemApi
|
|
5985
5680
|
*/
|
|
5986
5681
|
backupConfiguration(resources, metadata, options) {
|
|
5987
5682
|
return SystemApiFp(this.configuration).backupConfiguration(resources, metadata, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5992,7 +5687,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
5992
5687
|
* @param {ReleaseChannel} channel
|
|
5993
5688
|
* @param {*} [options] Override http request option.
|
|
5994
5689
|
* @throws {RequiredError}
|
|
5995
|
-
* @memberof SystemApi
|
|
5996
5690
|
*/
|
|
5997
5691
|
checkNovaVersionUpdate(channel, options) {
|
|
5998
5692
|
return SystemApiFp(this.configuration).checkNovaVersionUpdate(channel, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6003,7 +5697,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
6003
5697
|
* @param {string} operationId
|
|
6004
5698
|
* @param {*} [options] Override http request option.
|
|
6005
5699
|
* @throws {RequiredError}
|
|
6006
|
-
* @memberof SystemApi
|
|
6007
5700
|
*/
|
|
6008
5701
|
getConfigurationBackupStatus(operationId, options) {
|
|
6009
5702
|
return SystemApiFp(this.configuration).getConfigurationBackupStatus(operationId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6013,7 +5706,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
6013
5706
|
* @summary Download Diagnosis Package
|
|
6014
5707
|
* @param {*} [options] Override http request option.
|
|
6015
5708
|
* @throws {RequiredError}
|
|
6016
|
-
* @memberof SystemApi
|
|
6017
5709
|
*/
|
|
6018
5710
|
getDiagnosePackage(options) {
|
|
6019
5711
|
return SystemApiFp(this.configuration).getDiagnosePackage(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6023,7 +5715,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
6023
5715
|
* @summary Wandelbots NOVA status
|
|
6024
5716
|
* @param {*} [options] Override http request option.
|
|
6025
5717
|
* @throws {RequiredError}
|
|
6026
|
-
* @memberof SystemApi
|
|
6027
5718
|
*/
|
|
6028
5719
|
getSystemStatus(options) {
|
|
6029
5720
|
return SystemApiFp(this.configuration).getSystemStatus(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6033,7 +5724,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
6033
5724
|
* @summary Wandelbots NOVA Version
|
|
6034
5725
|
* @param {*} [options] Override http request option.
|
|
6035
5726
|
* @throws {RequiredError}
|
|
6036
|
-
* @memberof SystemApi
|
|
6037
5727
|
*/
|
|
6038
5728
|
getSystemVersion(options) {
|
|
6039
5729
|
return SystemApiFp(this.configuration).getSystemVersion(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6043,7 +5733,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
6043
5733
|
* @summary List Configuration Resources
|
|
6044
5734
|
* @param {*} [options] Override http request option.
|
|
6045
5735
|
* @throws {RequiredError}
|
|
6046
|
-
* @memberof SystemApi
|
|
6047
5736
|
*/
|
|
6048
5737
|
listConfigurationResources(options) {
|
|
6049
5738
|
return SystemApiFp(this.configuration).listConfigurationResources(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6055,7 +5744,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
6055
5744
|
* @param {File} body Backup file stream containing the configuration to restore.
|
|
6056
5745
|
* @param {*} [options] Override http request option.
|
|
6057
5746
|
* @throws {RequiredError}
|
|
6058
|
-
* @memberof SystemApi
|
|
6059
5747
|
*/
|
|
6060
5748
|
restoreConfiguration(resources, body, options) {
|
|
6061
5749
|
return SystemApiFp(this.configuration).restoreConfiguration(resources, body, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6066,7 +5754,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
6066
5754
|
* @param {UpdateNovaVersionRequest} updateNovaVersionRequest
|
|
6067
5755
|
* @param {*} [options] Override http request option.
|
|
6068
5756
|
* @throws {RequiredError}
|
|
6069
|
-
* @memberof SystemApi
|
|
6070
5757
|
*/
|
|
6071
5758
|
updateNovaVersion(updateNovaVersionRequest, options) {
|
|
6072
5759
|
return SystemApiFp(this.configuration).updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6074,7 +5761,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
6074
5761
|
};
|
|
6075
5762
|
/**
|
|
6076
5763
|
* TrajectoryCachingApi - axios parameter creator
|
|
6077
|
-
* @export
|
|
6078
5764
|
*/
|
|
6079
5765
|
const TrajectoryCachingApiAxiosParamCreator = function(configuration) {
|
|
6080
5766
|
return {
|
|
@@ -6227,7 +5913,6 @@ const TrajectoryCachingApiAxiosParamCreator = function(configuration) {
|
|
|
6227
5913
|
};
|
|
6228
5914
|
/**
|
|
6229
5915
|
* TrajectoryCachingApi - functional programming interface
|
|
6230
|
-
* @export
|
|
6231
5916
|
*/
|
|
6232
5917
|
const TrajectoryCachingApiFp = function(configuration) {
|
|
6233
5918
|
const localVarAxiosParamCreator = TrajectoryCachingApiAxiosParamCreator(configuration);
|
|
@@ -6266,7 +5951,6 @@ const TrajectoryCachingApiFp = function(configuration) {
|
|
|
6266
5951
|
};
|
|
6267
5952
|
/**
|
|
6268
5953
|
* TrajectoryCachingApi - factory interface
|
|
6269
|
-
* @export
|
|
6270
5954
|
*/
|
|
6271
5955
|
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$1) {
|
|
6272
5956
|
const localVarFp = TrajectoryCachingApiFp(configuration);
|
|
@@ -6290,9 +5974,6 @@ const TrajectoryCachingApiFactory = function(configuration, basePath, axios$1) {
|
|
|
6290
5974
|
};
|
|
6291
5975
|
/**
|
|
6292
5976
|
* TrajectoryCachingApi - object-oriented interface
|
|
6293
|
-
* @export
|
|
6294
|
-
* @class TrajectoryCachingApi
|
|
6295
|
-
* @extends {BaseAPI}
|
|
6296
5977
|
*/
|
|
6297
5978
|
var TrajectoryCachingApi = class extends BaseAPI {
|
|
6298
5979
|
/**
|
|
@@ -6303,7 +5984,6 @@ var TrajectoryCachingApi = class extends BaseAPI {
|
|
|
6303
5984
|
* @param {AddTrajectoryRequest} addTrajectoryRequest
|
|
6304
5985
|
* @param {*} [options] Override http request option.
|
|
6305
5986
|
* @throws {RequiredError}
|
|
6306
|
-
* @memberof TrajectoryCachingApi
|
|
6307
5987
|
*/
|
|
6308
5988
|
addTrajectory(cell, controller, addTrajectoryRequest, options) {
|
|
6309
5989
|
return TrajectoryCachingApiFp(this.configuration).addTrajectory(cell, controller, addTrajectoryRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6315,7 +5995,6 @@ var TrajectoryCachingApi = class extends BaseAPI {
|
|
|
6315
5995
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
6316
5996
|
* @param {*} [options] Override http request option.
|
|
6317
5997
|
* @throws {RequiredError}
|
|
6318
|
-
* @memberof TrajectoryCachingApi
|
|
6319
5998
|
*/
|
|
6320
5999
|
clearTrajectories(cell, controller, options) {
|
|
6321
6000
|
return TrajectoryCachingApiFp(this.configuration).clearTrajectories(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6328,7 +6007,6 @@ var TrajectoryCachingApi = class extends BaseAPI {
|
|
|
6328
6007
|
* @param {string} trajectory This represents the unique identifier of a trajectory. Every executable or partially executable trajectory is cached and an unique identifier is returned. Indicate the unique identifier to execute the trajectory or retrieve information on the trajectory.
|
|
6329
6008
|
* @param {*} [options] Override http request option.
|
|
6330
6009
|
* @throws {RequiredError}
|
|
6331
|
-
* @memberof TrajectoryCachingApi
|
|
6332
6010
|
*/
|
|
6333
6011
|
deleteTrajectory(cell, controller, trajectory, options) {
|
|
6334
6012
|
return TrajectoryCachingApiFp(this.configuration).deleteTrajectory(cell, controller, trajectory, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6341,7 +6019,6 @@ var TrajectoryCachingApi = class extends BaseAPI {
|
|
|
6341
6019
|
* @param {string} trajectory This represents the unique identifier of a trajectory. Every executable or partially executable trajectory is cached and an unique identifier is returned. Indicate the unique identifier to execute the trajectory or retrieve information on the trajectory.
|
|
6342
6020
|
* @param {*} [options] Override http request option.
|
|
6343
6021
|
* @throws {RequiredError}
|
|
6344
|
-
* @memberof TrajectoryCachingApi
|
|
6345
6022
|
*/
|
|
6346
6023
|
getTrajectory(cell, controller, trajectory, options) {
|
|
6347
6024
|
return TrajectoryCachingApiFp(this.configuration).getTrajectory(cell, controller, trajectory, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6353,7 +6030,6 @@ var TrajectoryCachingApi = class extends BaseAPI {
|
|
|
6353
6030
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
6354
6031
|
* @param {*} [options] Override http request option.
|
|
6355
6032
|
* @throws {RequiredError}
|
|
6356
|
-
* @memberof TrajectoryCachingApi
|
|
6357
6033
|
*/
|
|
6358
6034
|
listTrajectories(cell, controller, options) {
|
|
6359
6035
|
return TrajectoryCachingApiFp(this.configuration).listTrajectories(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6361,7 +6037,6 @@ var TrajectoryCachingApi = class extends BaseAPI {
|
|
|
6361
6037
|
};
|
|
6362
6038
|
/**
|
|
6363
6039
|
* TrajectoryExecutionApi - axios parameter creator
|
|
6364
|
-
* @export
|
|
6365
6040
|
*/
|
|
6366
6041
|
const TrajectoryExecutionApiAxiosParamCreator = function(configuration) {
|
|
6367
6042
|
return { executeTrajectory: async (cell, controller, executeTrajectoryRequest, options = {}) => {
|
|
@@ -6398,7 +6073,6 @@ const TrajectoryExecutionApiAxiosParamCreator = function(configuration) {
|
|
|
6398
6073
|
};
|
|
6399
6074
|
/**
|
|
6400
6075
|
* TrajectoryExecutionApi - functional programming interface
|
|
6401
|
-
* @export
|
|
6402
6076
|
*/
|
|
6403
6077
|
const TrajectoryExecutionApiFp = function(configuration) {
|
|
6404
6078
|
const localVarAxiosParamCreator = TrajectoryExecutionApiAxiosParamCreator(configuration);
|
|
@@ -6411,7 +6085,6 @@ const TrajectoryExecutionApiFp = function(configuration) {
|
|
|
6411
6085
|
};
|
|
6412
6086
|
/**
|
|
6413
6087
|
* TrajectoryExecutionApi - factory interface
|
|
6414
|
-
* @export
|
|
6415
6088
|
*/
|
|
6416
6089
|
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$1) {
|
|
6417
6090
|
const localVarFp = TrajectoryExecutionApiFp(configuration);
|
|
@@ -6421,9 +6094,6 @@ const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$1)
|
|
|
6421
6094
|
};
|
|
6422
6095
|
/**
|
|
6423
6096
|
* TrajectoryExecutionApi - object-oriented interface
|
|
6424
|
-
* @export
|
|
6425
|
-
* @class TrajectoryExecutionApi
|
|
6426
|
-
* @extends {BaseAPI}
|
|
6427
6097
|
*/
|
|
6428
6098
|
var TrajectoryExecutionApi = class extends BaseAPI {
|
|
6429
6099
|
/**
|
|
@@ -6434,7 +6104,6 @@ var TrajectoryExecutionApi = class extends BaseAPI {
|
|
|
6434
6104
|
* @param {ExecuteTrajectoryRequest} executeTrajectoryRequest
|
|
6435
6105
|
* @param {*} [options] Override http request option.
|
|
6436
6106
|
* @throws {RequiredError}
|
|
6437
|
-
* @memberof TrajectoryExecutionApi
|
|
6438
6107
|
*/
|
|
6439
6108
|
executeTrajectory(cell, controller, executeTrajectoryRequest, options) {
|
|
6440
6109
|
return TrajectoryExecutionApiFp(this.configuration).executeTrajectory(cell, controller, executeTrajectoryRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6442,7 +6111,6 @@ var TrajectoryExecutionApi = class extends BaseAPI {
|
|
|
6442
6111
|
};
|
|
6443
6112
|
/**
|
|
6444
6113
|
* TrajectoryPlanningApi - axios parameter creator
|
|
6445
|
-
* @export
|
|
6446
6114
|
*/
|
|
6447
6115
|
const TrajectoryPlanningApiAxiosParamCreator = function(configuration) {
|
|
6448
6116
|
return {
|
|
@@ -6510,7 +6178,6 @@ const TrajectoryPlanningApiAxiosParamCreator = function(configuration) {
|
|
|
6510
6178
|
};
|
|
6511
6179
|
/**
|
|
6512
6180
|
* TrajectoryPlanningApi - functional programming interface
|
|
6513
|
-
* @export
|
|
6514
6181
|
*/
|
|
6515
6182
|
const TrajectoryPlanningApiFp = function(configuration) {
|
|
6516
6183
|
const localVarAxiosParamCreator = TrajectoryPlanningApiAxiosParamCreator(configuration);
|
|
@@ -6531,7 +6198,6 @@ const TrajectoryPlanningApiFp = function(configuration) {
|
|
|
6531
6198
|
};
|
|
6532
6199
|
/**
|
|
6533
6200
|
* TrajectoryPlanningApi - factory interface
|
|
6534
|
-
* @export
|
|
6535
6201
|
*/
|
|
6536
6202
|
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$1) {
|
|
6537
6203
|
const localVarFp = TrajectoryPlanningApiFp(configuration);
|
|
@@ -6546,9 +6212,6 @@ const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$1)
|
|
|
6546
6212
|
};
|
|
6547
6213
|
/**
|
|
6548
6214
|
* TrajectoryPlanningApi - object-oriented interface
|
|
6549
|
-
* @export
|
|
6550
|
-
* @class TrajectoryPlanningApi
|
|
6551
|
-
* @extends {BaseAPI}
|
|
6552
6215
|
*/
|
|
6553
6216
|
var TrajectoryPlanningApi = class extends BaseAPI {
|
|
6554
6217
|
/**
|
|
@@ -6558,7 +6221,6 @@ var TrajectoryPlanningApi = class extends BaseAPI {
|
|
|
6558
6221
|
* @param {PlanCollisionFreeRequest} planCollisionFreeRequest
|
|
6559
6222
|
* @param {*} [options] Override http request option.
|
|
6560
6223
|
* @throws {RequiredError}
|
|
6561
|
-
* @memberof TrajectoryPlanningApi
|
|
6562
6224
|
*/
|
|
6563
6225
|
planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
6564
6226
|
return TrajectoryPlanningApiFp(this.configuration).planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6570,15 +6232,78 @@ var TrajectoryPlanningApi = class extends BaseAPI {
|
|
|
6570
6232
|
* @param {PlanTrajectoryRequest} planTrajectoryRequest
|
|
6571
6233
|
* @param {*} [options] Override http request option.
|
|
6572
6234
|
* @throws {RequiredError}
|
|
6573
|
-
* @memberof TrajectoryPlanningApi
|
|
6574
6235
|
*/
|
|
6575
6236
|
planTrajectory(cell, planTrajectoryRequest, options) {
|
|
6576
6237
|
return TrajectoryPlanningApiFp(this.configuration).planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(this.axios, this.basePath));
|
|
6577
6238
|
}
|
|
6578
6239
|
};
|
|
6579
6240
|
/**
|
|
6241
|
+
* VersionApi - axios parameter creator
|
|
6242
|
+
*/
|
|
6243
|
+
const VersionApiAxiosParamCreator = function(configuration) {
|
|
6244
|
+
return { getApiVersion: async (options = {}) => {
|
|
6245
|
+
const localVarUrlObj = new URL(`/version`, DUMMY_BASE_URL);
|
|
6246
|
+
let baseOptions;
|
|
6247
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
6248
|
+
const localVarRequestOptions = {
|
|
6249
|
+
method: "GET",
|
|
6250
|
+
...baseOptions,
|
|
6251
|
+
...options
|
|
6252
|
+
};
|
|
6253
|
+
const localVarHeaderParameter = {};
|
|
6254
|
+
const localVarQueryParameter = {};
|
|
6255
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6256
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6257
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6258
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6259
|
+
localVarRequestOptions.headers = {
|
|
6260
|
+
...localVarHeaderParameter,
|
|
6261
|
+
...headersFromBaseOptions,
|
|
6262
|
+
...options.headers
|
|
6263
|
+
};
|
|
6264
|
+
return {
|
|
6265
|
+
url: toPathString(localVarUrlObj),
|
|
6266
|
+
options: localVarRequestOptions
|
|
6267
|
+
};
|
|
6268
|
+
} };
|
|
6269
|
+
};
|
|
6270
|
+
/**
|
|
6271
|
+
* VersionApi - functional programming interface
|
|
6272
|
+
*/
|
|
6273
|
+
const VersionApiFp = function(configuration) {
|
|
6274
|
+
const localVarAxiosParamCreator = VersionApiAxiosParamCreator(configuration);
|
|
6275
|
+
return { async getApiVersion(options) {
|
|
6276
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getApiVersion(options);
|
|
6277
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6278
|
+
const localVarOperationServerBasePath = operationServerMap["VersionApi.getApiVersion"]?.[localVarOperationServerIndex]?.url;
|
|
6279
|
+
return (axios$1, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$1, localVarOperationServerBasePath || basePath);
|
|
6280
|
+
} };
|
|
6281
|
+
};
|
|
6282
|
+
/**
|
|
6283
|
+
* VersionApi - factory interface
|
|
6284
|
+
*/
|
|
6285
|
+
const VersionApiFactory = function(configuration, basePath, axios$1) {
|
|
6286
|
+
const localVarFp = VersionApiFp(configuration);
|
|
6287
|
+
return { getApiVersion(options) {
|
|
6288
|
+
return localVarFp.getApiVersion(options).then((request) => request(axios$1, basePath));
|
|
6289
|
+
} };
|
|
6290
|
+
};
|
|
6291
|
+
/**
|
|
6292
|
+
* VersionApi - object-oriented interface
|
|
6293
|
+
*/
|
|
6294
|
+
var VersionApi = class extends BaseAPI {
|
|
6295
|
+
/**
|
|
6296
|
+
* Retrieves the version of the NOVA API.
|
|
6297
|
+
* @summary API Version
|
|
6298
|
+
* @param {*} [options] Override http request option.
|
|
6299
|
+
* @throws {RequiredError}
|
|
6300
|
+
*/
|
|
6301
|
+
getApiVersion(options) {
|
|
6302
|
+
return VersionApiFp(this.configuration).getApiVersion(options).then((request) => request(this.axios, this.basePath));
|
|
6303
|
+
}
|
|
6304
|
+
};
|
|
6305
|
+
/**
|
|
6580
6306
|
* VirtualControllerApi - axios parameter creator
|
|
6581
|
-
* @export
|
|
6582
6307
|
*/
|
|
6583
6308
|
const VirtualControllerApiAxiosParamCreator = function(configuration) {
|
|
6584
6309
|
return {
|
|
@@ -7033,7 +6758,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
|
|
|
7033
6758
|
};
|
|
7034
6759
|
/**
|
|
7035
6760
|
* VirtualControllerApi - functional programming interface
|
|
7036
|
-
* @export
|
|
7037
6761
|
*/
|
|
7038
6762
|
const VirtualControllerApiFp = function(configuration) {
|
|
7039
6763
|
const localVarAxiosParamCreator = VirtualControllerApiAxiosParamCreator(configuration);
|
|
@@ -7132,7 +6856,6 @@ const VirtualControllerApiFp = function(configuration) {
|
|
|
7132
6856
|
};
|
|
7133
6857
|
/**
|
|
7134
6858
|
* VirtualControllerApi - factory interface
|
|
7135
|
-
* @export
|
|
7136
6859
|
*/
|
|
7137
6860
|
const VirtualControllerApiFactory = function(configuration, basePath, axios$1) {
|
|
7138
6861
|
const localVarFp = VirtualControllerApiFp(configuration);
|
|
@@ -7186,9 +6909,6 @@ const VirtualControllerApiFactory = function(configuration, basePath, axios$1) {
|
|
|
7186
6909
|
};
|
|
7187
6910
|
/**
|
|
7188
6911
|
* VirtualControllerApi - object-oriented interface
|
|
7189
|
-
* @export
|
|
7190
|
-
* @class VirtualControllerApi
|
|
7191
|
-
* @extends {BaseAPI}
|
|
7192
6912
|
*/
|
|
7193
6913
|
var VirtualControllerApi = class extends BaseAPI {
|
|
7194
6914
|
/**
|
|
@@ -7200,7 +6920,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7200
6920
|
* @param {CoordinateSystemData} coordinateSystemData
|
|
7201
6921
|
* @param {*} [options] Override http request option.
|
|
7202
6922
|
* @throws {RequiredError}
|
|
7203
|
-
* @memberof VirtualControllerApi
|
|
7204
6923
|
*/
|
|
7205
6924
|
addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options) {
|
|
7206
6925
|
return VirtualControllerApiFp(this.configuration).addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7215,7 +6934,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7215
6934
|
* @param {RobotTcpData} robotTcpData
|
|
7216
6935
|
* @param {*} [options] Override http request option.
|
|
7217
6936
|
* @throws {RequiredError}
|
|
7218
|
-
* @memberof VirtualControllerApi
|
|
7219
6937
|
*/
|
|
7220
6938
|
addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
7221
6939
|
return VirtualControllerApiFp(this.configuration).addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7229,7 +6947,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7229
6947
|
* @param {boolean} [deleteDependent] If true, all dependent coordinate systems will be deleted as well.
|
|
7230
6948
|
* @param {*} [options] Override http request option.
|
|
7231
6949
|
* @throws {RequiredError}
|
|
7232
|
-
* @memberof VirtualControllerApi
|
|
7233
6950
|
*/
|
|
7234
6951
|
deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
7235
6952
|
return VirtualControllerApiFp(this.configuration).deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7243,7 +6960,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7243
6960
|
* @param {string} tcp The unique identifier of a TCP.
|
|
7244
6961
|
* @param {*} [options] Override http request option.
|
|
7245
6962
|
* @throws {RequiredError}
|
|
7246
|
-
* @memberof VirtualControllerApi
|
|
7247
6963
|
*/
|
|
7248
6964
|
deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
7249
6965
|
return VirtualControllerApiFp(this.configuration).deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7255,7 +6971,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7255
6971
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7256
6972
|
* @param {*} [options] Override http request option.
|
|
7257
6973
|
* @throws {RequiredError}
|
|
7258
|
-
* @memberof VirtualControllerApi
|
|
7259
6974
|
*/
|
|
7260
6975
|
getEmergencyStop(cell, controller, options) {
|
|
7261
6976
|
return VirtualControllerApiFp(this.configuration).getEmergencyStop(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7268,7 +6983,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7268
6983
|
* @param {string} motionGroup The motion-group identifier.
|
|
7269
6984
|
* @param {*} [options] Override http request option.
|
|
7270
6985
|
* @throws {RequiredError}
|
|
7271
|
-
* @memberof VirtualControllerApi
|
|
7272
6986
|
*/
|
|
7273
6987
|
getMotionGroupState(cell, controller, motionGroup, options) {
|
|
7274
6988
|
return VirtualControllerApiFp(this.configuration).getMotionGroupState(cell, controller, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7280,7 +6994,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7280
6994
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7281
6995
|
* @param {*} [options] Override http request option.
|
|
7282
6996
|
* @throws {RequiredError}
|
|
7283
|
-
* @memberof VirtualControllerApi
|
|
7284
6997
|
*/
|
|
7285
6998
|
getMotionGroups(cell, controller, options) {
|
|
7286
6999
|
return VirtualControllerApiFp(this.configuration).getMotionGroups(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7292,7 +7005,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7292
7005
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7293
7006
|
* @param {*} [options] Override http request option.
|
|
7294
7007
|
* @throws {RequiredError}
|
|
7295
|
-
* @memberof VirtualControllerApi
|
|
7296
7008
|
*/
|
|
7297
7009
|
getOperationMode(cell, controller, options) {
|
|
7298
7010
|
return VirtualControllerApiFp(this.configuration).getOperationMode(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7305,7 +7017,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7305
7017
|
* @param {string} motionGroup The motion-group identifier.
|
|
7306
7018
|
* @param {*} [options] Override http request option.
|
|
7307
7019
|
* @throws {RequiredError}
|
|
7308
|
-
* @memberof VirtualControllerApi
|
|
7309
7020
|
*/
|
|
7310
7021
|
getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
7311
7022
|
return VirtualControllerApiFp(this.configuration).getVirtualControllerMounting(cell, controller, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7317,7 +7028,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7317
7028
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7318
7029
|
* @param {*} [options] Override http request option.
|
|
7319
7030
|
* @throws {RequiredError}
|
|
7320
|
-
* @memberof VirtualControllerApi
|
|
7321
7031
|
*/
|
|
7322
7032
|
listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
7323
7033
|
return VirtualControllerApiFp(this.configuration).listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7330,7 +7040,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7330
7040
|
* @param {string} motionGroup The motion-group identifier.
|
|
7331
7041
|
* @param {*} [options] Override http request option.
|
|
7332
7042
|
* @throws {RequiredError}
|
|
7333
|
-
* @memberof VirtualControllerApi
|
|
7334
7043
|
*/
|
|
7335
7044
|
listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
7336
7045
|
return VirtualControllerApiFp(this.configuration).listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7343,7 +7052,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7343
7052
|
* @param {boolean} [active]
|
|
7344
7053
|
* @param {*} [options] Override http request option.
|
|
7345
7054
|
* @throws {RequiredError}
|
|
7346
|
-
* @memberof VirtualControllerApi
|
|
7347
7055
|
*/
|
|
7348
7056
|
setEmergencyStop(cell, controller, active, options) {
|
|
7349
7057
|
return VirtualControllerApiFp(this.configuration).setEmergencyStop(cell, controller, active, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7357,7 +7065,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7357
7065
|
* @param {MotionGroupJoints} motionGroupJoints
|
|
7358
7066
|
* @param {*} [options] Override http request option.
|
|
7359
7067
|
* @throws {RequiredError}
|
|
7360
|
-
* @memberof VirtualControllerApi
|
|
7361
7068
|
*/
|
|
7362
7069
|
setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
7363
7070
|
return VirtualControllerApiFp(this.configuration).setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7370,7 +7077,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7370
7077
|
* @param {OperationMode} mode
|
|
7371
7078
|
* @param {*} [options] Override http request option.
|
|
7372
7079
|
* @throws {RequiredError}
|
|
7373
|
-
* @memberof VirtualControllerApi
|
|
7374
7080
|
*/
|
|
7375
7081
|
setOperationMode(cell, controller, mode, options) {
|
|
7376
7082
|
return VirtualControllerApiFp(this.configuration).setOperationMode(cell, controller, mode, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7384,7 +7090,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7384
7090
|
* @param {CoordinateSystem} coordinateSystem
|
|
7385
7091
|
* @param {*} [options] Override http request option.
|
|
7386
7092
|
* @throws {RequiredError}
|
|
7387
|
-
* @memberof VirtualControllerApi
|
|
7388
7093
|
*/
|
|
7389
7094
|
setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
7390
7095
|
return VirtualControllerApiFp(this.configuration).setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7392,7 +7097,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7392
7097
|
};
|
|
7393
7098
|
/**
|
|
7394
7099
|
* VirtualControllerBehaviorApi - axios parameter creator
|
|
7395
|
-
* @export
|
|
7396
7100
|
*/
|
|
7397
7101
|
const VirtualControllerBehaviorApiAxiosParamCreator = function(configuration) {
|
|
7398
7102
|
return {
|
|
@@ -7516,7 +7220,6 @@ const VirtualControllerBehaviorApiAxiosParamCreator = function(configuration) {
|
|
|
7516
7220
|
};
|
|
7517
7221
|
/**
|
|
7518
7222
|
* VirtualControllerBehaviorApi - functional programming interface
|
|
7519
|
-
* @export
|
|
7520
7223
|
*/
|
|
7521
7224
|
const VirtualControllerBehaviorApiFp = function(configuration) {
|
|
7522
7225
|
const localVarAxiosParamCreator = VirtualControllerBehaviorApiAxiosParamCreator(configuration);
|
|
@@ -7549,7 +7252,6 @@ const VirtualControllerBehaviorApiFp = function(configuration) {
|
|
|
7549
7252
|
};
|
|
7550
7253
|
/**
|
|
7551
7254
|
* VirtualControllerBehaviorApi - factory interface
|
|
7552
|
-
* @export
|
|
7553
7255
|
*/
|
|
7554
7256
|
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$1) {
|
|
7555
7257
|
const localVarFp = VirtualControllerBehaviorApiFp(configuration);
|
|
@@ -7570,9 +7272,6 @@ const VirtualControllerBehaviorApiFactory = function(configuration, basePath, ax
|
|
|
7570
7272
|
};
|
|
7571
7273
|
/**
|
|
7572
7274
|
* VirtualControllerBehaviorApi - object-oriented interface
|
|
7573
|
-
* @export
|
|
7574
|
-
* @class VirtualControllerBehaviorApi
|
|
7575
|
-
* @extends {BaseAPI}
|
|
7576
7275
|
*/
|
|
7577
7276
|
var VirtualControllerBehaviorApi = class extends BaseAPI {
|
|
7578
7277
|
/**
|
|
@@ -7583,7 +7282,6 @@ var VirtualControllerBehaviorApi = class extends BaseAPI {
|
|
|
7583
7282
|
* @param {ExternalJointStreamRequest} externalJointStreamRequest
|
|
7584
7283
|
* @param {*} [options] Override http request option.
|
|
7585
7284
|
* @throws {RequiredError}
|
|
7586
|
-
* @memberof VirtualControllerBehaviorApi
|
|
7587
7285
|
*/
|
|
7588
7286
|
externalJointsStream(cell, controller, externalJointStreamRequest, options) {
|
|
7589
7287
|
return VirtualControllerBehaviorApiFp(this.configuration).externalJointsStream(cell, controller, externalJointStreamRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7595,7 +7293,6 @@ var VirtualControllerBehaviorApi = class extends BaseAPI {
|
|
|
7595
7293
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7596
7294
|
* @param {*} [options] Override http request option.
|
|
7597
7295
|
* @throws {RequiredError}
|
|
7598
|
-
* @memberof VirtualControllerBehaviorApi
|
|
7599
7296
|
*/
|
|
7600
7297
|
getCycleTime(cell, controller, options) {
|
|
7601
7298
|
return VirtualControllerBehaviorApiFp(this.configuration).getCycleTime(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7607,7 +7304,6 @@ var VirtualControllerBehaviorApi = class extends BaseAPI {
|
|
|
7607
7304
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7608
7305
|
* @param {*} [options] Override http request option.
|
|
7609
7306
|
* @throws {RequiredError}
|
|
7610
|
-
* @memberof VirtualControllerBehaviorApi
|
|
7611
7307
|
*/
|
|
7612
7308
|
getVirtualControllerBehavior(cell, controller, options) {
|
|
7613
7309
|
return VirtualControllerBehaviorApiFp(this.configuration).getVirtualControllerBehavior(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7620,7 +7316,6 @@ var VirtualControllerBehaviorApi = class extends BaseAPI {
|
|
|
7620
7316
|
* @param {Behavior} [behavior]
|
|
7621
7317
|
* @param {*} [options] Override http request option.
|
|
7622
7318
|
* @throws {RequiredError}
|
|
7623
|
-
* @memberof VirtualControllerBehaviorApi
|
|
7624
7319
|
*/
|
|
7625
7320
|
setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
7626
7321
|
return VirtualControllerBehaviorApiFp(this.configuration).setVirtualControllerBehavior(cell, controller, behavior, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7628,7 +7323,6 @@ var VirtualControllerBehaviorApi = class extends BaseAPI {
|
|
|
7628
7323
|
};
|
|
7629
7324
|
/**
|
|
7630
7325
|
* VirtualControllerInputsOutputsApi - axios parameter creator
|
|
7631
|
-
* @export
|
|
7632
7326
|
*/
|
|
7633
7327
|
const VirtualControllerInputsOutputsApiAxiosParamCreator = function(configuration) {
|
|
7634
7328
|
return {
|
|
@@ -7729,7 +7423,6 @@ const VirtualControllerInputsOutputsApiAxiosParamCreator = function(configuratio
|
|
|
7729
7423
|
};
|
|
7730
7424
|
/**
|
|
7731
7425
|
* VirtualControllerInputsOutputsApi - functional programming interface
|
|
7732
|
-
* @export
|
|
7733
7426
|
*/
|
|
7734
7427
|
const VirtualControllerInputsOutputsApiFp = function(configuration) {
|
|
7735
7428
|
const localVarAxiosParamCreator = VirtualControllerInputsOutputsApiAxiosParamCreator(configuration);
|
|
@@ -7756,7 +7449,6 @@ const VirtualControllerInputsOutputsApiFp = function(configuration) {
|
|
|
7756
7449
|
};
|
|
7757
7450
|
/**
|
|
7758
7451
|
* VirtualControllerInputsOutputsApi - factory interface
|
|
7759
|
-
* @export
|
|
7760
7452
|
*/
|
|
7761
7453
|
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$1) {
|
|
7762
7454
|
const localVarFp = VirtualControllerInputsOutputsApiFp(configuration);
|
|
@@ -7774,9 +7466,6 @@ const VirtualControllerInputsOutputsApiFactory = function(configuration, basePat
|
|
|
7774
7466
|
};
|
|
7775
7467
|
/**
|
|
7776
7468
|
* VirtualControllerInputsOutputsApi - object-oriented interface
|
|
7777
|
-
* @export
|
|
7778
|
-
* @class VirtualControllerInputsOutputsApi
|
|
7779
|
-
* @extends {BaseAPI}
|
|
7780
7469
|
*/
|
|
7781
7470
|
var VirtualControllerInputsOutputsApi = class extends BaseAPI {
|
|
7782
7471
|
/**
|
|
@@ -7787,7 +7476,6 @@ var VirtualControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
7787
7476
|
* @param {Array<string>} ios
|
|
7788
7477
|
* @param {*} [options] Override http request option.
|
|
7789
7478
|
* @throws {RequiredError}
|
|
7790
|
-
* @memberof VirtualControllerInputsOutputsApi
|
|
7791
7479
|
*/
|
|
7792
7480
|
listIOs(cell, controller, ios, options) {
|
|
7793
7481
|
return VirtualControllerInputsOutputsApiFp(this.configuration).listIOs(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7803,7 +7491,6 @@ var VirtualControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
7803
7491
|
* @param {string} [group] Return only inputs/outputs from the specified group.
|
|
7804
7492
|
* @param {*} [options] Override http request option.
|
|
7805
7493
|
* @throws {RequiredError}
|
|
7806
|
-
* @memberof VirtualControllerInputsOutputsApi
|
|
7807
7494
|
*/
|
|
7808
7495
|
listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
7809
7496
|
return VirtualControllerInputsOutputsApiFp(this.configuration).listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7816,7 +7503,6 @@ var VirtualControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
7816
7503
|
* @param {Array<IOValue>} iOValue
|
|
7817
7504
|
* @param {*} [options] Override http request option.
|
|
7818
7505
|
* @throws {RequiredError}
|
|
7819
|
-
* @memberof VirtualControllerInputsOutputsApi
|
|
7820
7506
|
*/
|
|
7821
7507
|
setIOValues(cell, controller, iOValue, options) {
|
|
7822
7508
|
return VirtualControllerInputsOutputsApiFp(this.configuration).setIOValues(cell, controller, iOValue, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7833,7 +7519,6 @@ var Configuration = class {
|
|
|
7833
7519
|
/**
|
|
7834
7520
|
* parameter for apiKey security
|
|
7835
7521
|
* @param name security name
|
|
7836
|
-
* @memberof Configuration
|
|
7837
7522
|
*/
|
|
7838
7523
|
"apiKey",
|
|
7839
7524
|
void 0
|
|
@@ -7842,9 +7527,6 @@ var Configuration = class {
|
|
|
7842
7527
|
this,
|
|
7843
7528
|
/**
|
|
7844
7529
|
* parameter for basic security
|
|
7845
|
-
*
|
|
7846
|
-
* @type {string}
|
|
7847
|
-
* @memberof Configuration
|
|
7848
7530
|
*/
|
|
7849
7531
|
"username",
|
|
7850
7532
|
void 0
|
|
@@ -7853,9 +7535,6 @@ var Configuration = class {
|
|
|
7853
7535
|
this,
|
|
7854
7536
|
/**
|
|
7855
7537
|
* parameter for basic security
|
|
7856
|
-
*
|
|
7857
|
-
* @type {string}
|
|
7858
|
-
* @memberof Configuration
|
|
7859
7538
|
*/
|
|
7860
7539
|
"password",
|
|
7861
7540
|
void 0
|
|
@@ -7866,7 +7545,6 @@ var Configuration = class {
|
|
|
7866
7545
|
* parameter for oauth2 security
|
|
7867
7546
|
* @param name security name
|
|
7868
7547
|
* @param scopes oauth2 scope
|
|
7869
|
-
* @memberof Configuration
|
|
7870
7548
|
*/
|
|
7871
7549
|
"accessToken",
|
|
7872
7550
|
void 0
|
|
@@ -7874,11 +7552,23 @@ var Configuration = class {
|
|
|
7874
7552
|
(0, import_defineProperty.default)(
|
|
7875
7553
|
this,
|
|
7876
7554
|
/**
|
|
7877
|
-
*
|
|
7878
|
-
*
|
|
7879
|
-
* @
|
|
7555
|
+
* parameter for aws4 signature security
|
|
7556
|
+
* @param {Object} AWS4Signature - AWS4 Signature security
|
|
7557
|
+
* @param {string} options.region - aws region
|
|
7558
|
+
* @param {string} options.service - name of the service.
|
|
7559
|
+
* @param {string} credentials.accessKeyId - aws access key id
|
|
7560
|
+
* @param {string} credentials.secretAccessKey - aws access key
|
|
7561
|
+
* @param {string} credentials.sessionToken - aws session token
|
|
7880
7562
|
* @memberof Configuration
|
|
7881
7563
|
*/
|
|
7564
|
+
"awsv4",
|
|
7565
|
+
void 0
|
|
7566
|
+
);
|
|
7567
|
+
(0, import_defineProperty.default)(
|
|
7568
|
+
this,
|
|
7569
|
+
/**
|
|
7570
|
+
* override base path
|
|
7571
|
+
*/
|
|
7882
7572
|
"basePath",
|
|
7883
7573
|
void 0
|
|
7884
7574
|
);
|
|
@@ -7886,9 +7576,6 @@ var Configuration = class {
|
|
|
7886
7576
|
this,
|
|
7887
7577
|
/**
|
|
7888
7578
|
* override server index
|
|
7889
|
-
*
|
|
7890
|
-
* @type {number}
|
|
7891
|
-
* @memberof Configuration
|
|
7892
7579
|
*/
|
|
7893
7580
|
"serverIndex",
|
|
7894
7581
|
void 0
|
|
@@ -7897,9 +7584,6 @@ var Configuration = class {
|
|
|
7897
7584
|
this,
|
|
7898
7585
|
/**
|
|
7899
7586
|
* base options for axios calls
|
|
7900
|
-
*
|
|
7901
|
-
* @type {any}
|
|
7902
|
-
* @memberof Configuration
|
|
7903
7587
|
*/
|
|
7904
7588
|
"baseOptions",
|
|
7905
7589
|
void 0
|
|
@@ -7920,14 +7604,12 @@ var Configuration = class {
|
|
|
7920
7604
|
this.username = param.username;
|
|
7921
7605
|
this.password = param.password;
|
|
7922
7606
|
this.accessToken = param.accessToken;
|
|
7607
|
+
this.awsv4 = param.awsv4;
|
|
7923
7608
|
this.basePath = param.basePath;
|
|
7924
7609
|
this.serverIndex = param.serverIndex;
|
|
7925
7610
|
this.baseOptions = {
|
|
7926
|
-
|
|
7927
|
-
|
|
7928
|
-
"User-Agent": "OpenAPI-Generator/typescript-axios"
|
|
7929
|
-
},
|
|
7930
|
-
...param.baseOptions
|
|
7611
|
+
...param.baseOptions,
|
|
7612
|
+
headers: { ...param.baseOptions?.headers }
|
|
7931
7613
|
};
|
|
7932
7614
|
this.formDataCtor = param.formDataCtor;
|
|
7933
7615
|
}
|
|
@@ -8128,6 +7810,10 @@ exports.TrajectoryRunningKindEnum = TrajectoryRunningKindEnum;
|
|
|
8128
7810
|
exports.TrajectoryWaitForIOKindEnum = TrajectoryWaitForIOKindEnum;
|
|
8129
7811
|
exports.UnitType = UnitType;
|
|
8130
7812
|
exports.UniversalrobotsControllerKindEnum = UniversalrobotsControllerKindEnum;
|
|
7813
|
+
exports.VersionApi = VersionApi;
|
|
7814
|
+
exports.VersionApiAxiosParamCreator = VersionApiAxiosParamCreator;
|
|
7815
|
+
exports.VersionApiFactory = VersionApiFactory;
|
|
7816
|
+
exports.VersionApiFp = VersionApiFp;
|
|
8131
7817
|
exports.VirtualControllerApi = VirtualControllerApi;
|
|
8132
7818
|
exports.VirtualControllerApiAxiosParamCreator = VirtualControllerApiAxiosParamCreator;
|
|
8133
7819
|
exports.VirtualControllerApiFactory = VirtualControllerApiFactory;
|