@wandelbots/nova-api 25.10.0-dev.9 → 25.11.0-dev.2
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 +101 -471
- package/dist/v1/index.d.cts +279 -4326
- package/dist/v1/index.d.ts +279 -4326
- package/dist/v1/index.js +98 -472
- package/dist/v2/index.cjs +95 -405
- package/dist/v2/index.d.cts +90 -2969
- package/dist/v2/index.d.ts +90 -2969
- package/dist/v2/index.js +92 -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,8 @@ 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",
|
|
463
|
+
AbbIrb6730240290: "abb-irb6730_240_290",
|
|
590
464
|
FanucArcMate100iD: "fanuc-arc_mate_100iD",
|
|
591
465
|
FanucArcMate100iD16S: "fanuc-arc_mate_100iD16S",
|
|
592
466
|
FanucArcMate120iD: "fanuc-arc_mate_120iD",
|
|
@@ -624,11 +498,17 @@ const VirtualControllerTypes = {
|
|
|
624
498
|
KukaKr16R20102: "kuka-kr16_r2010_2",
|
|
625
499
|
KukaKr20R1810: "kuka-kr20_r1810",
|
|
626
500
|
KukaKr20R18102: "kuka-kr20_r1810_2",
|
|
501
|
+
KukaKr120R31002: "kuka-kr120_r3100_2",
|
|
502
|
+
KukaKr120R39002K: "kuka-kr120_r3900_2_k",
|
|
503
|
+
KukaKr210R2700Extra: "kuka-kr210_r2700_extra",
|
|
627
504
|
KukaKr210R27002: "kuka-kr210_r2700_2",
|
|
628
505
|
KukaKr210R31002: "kuka-kr210_r3100_2",
|
|
629
506
|
KukaKr210R33002: "kuka-kr210_r3300_2",
|
|
630
507
|
KukaKr240R2700: "kuka-kr240_r2700",
|
|
508
|
+
KukaKr240R2900: "kuka-kr240_r2900",
|
|
509
|
+
KukaKr240R37002: "kuka-kr240_r3700_2",
|
|
631
510
|
KukaKr250R27002: "kuka-kr250_r2700_2",
|
|
511
|
+
KukaKr270R2700: "kuka-kr270_r2700",
|
|
632
512
|
KukaKr30R2100: "kuka-kr30_r2100",
|
|
633
513
|
KukaKr30R3: "kuka-kr30_r3",
|
|
634
514
|
KukaKr360L2403: "kuka-kr360_l240_3",
|
|
@@ -683,7 +563,6 @@ const VirtualControllerTypes = {
|
|
|
683
563
|
const YaskawaControllerKindEnum = { YaskawaController: "YaskawaController" };
|
|
684
564
|
/**
|
|
685
565
|
* ApplicationApi - axios parameter creator
|
|
686
|
-
* @export
|
|
687
566
|
*/
|
|
688
567
|
const ApplicationApiAxiosParamCreator = function(configuration) {
|
|
689
568
|
return {
|
|
@@ -866,7 +745,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
|
|
|
866
745
|
};
|
|
867
746
|
/**
|
|
868
747
|
* ApplicationApi - functional programming interface
|
|
869
|
-
* @export
|
|
870
748
|
*/
|
|
871
749
|
const ApplicationApiFp = function(configuration) {
|
|
872
750
|
const localVarAxiosParamCreator = ApplicationApiAxiosParamCreator(configuration);
|
|
@@ -911,7 +789,6 @@ const ApplicationApiFp = function(configuration) {
|
|
|
911
789
|
};
|
|
912
790
|
/**
|
|
913
791
|
* ApplicationApi - factory interface
|
|
914
|
-
* @export
|
|
915
792
|
*/
|
|
916
793
|
const ApplicationApiFactory = function(configuration, basePath, axios$1) {
|
|
917
794
|
const localVarFp = ApplicationApiFp(configuration);
|
|
@@ -938,9 +815,6 @@ const ApplicationApiFactory = function(configuration, basePath, axios$1) {
|
|
|
938
815
|
};
|
|
939
816
|
/**
|
|
940
817
|
* ApplicationApi - object-oriented interface
|
|
941
|
-
* @export
|
|
942
|
-
* @class ApplicationApi
|
|
943
|
-
* @extends {BaseAPI}
|
|
944
818
|
*/
|
|
945
819
|
var ApplicationApi = class extends BaseAPI {
|
|
946
820
|
/**
|
|
@@ -951,7 +825,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
951
825
|
* @param {number} [completionTimeout]
|
|
952
826
|
* @param {*} [options] Override http request option.
|
|
953
827
|
* @throws {RequiredError}
|
|
954
|
-
* @memberof ApplicationApi
|
|
955
828
|
*/
|
|
956
829
|
addApp(cell, app, completionTimeout, options) {
|
|
957
830
|
return ApplicationApiFp(this.configuration).addApp(cell, app, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -963,7 +836,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
963
836
|
* @param {number} [completionTimeout]
|
|
964
837
|
* @param {*} [options] Override http request option.
|
|
965
838
|
* @throws {RequiredError}
|
|
966
|
-
* @memberof ApplicationApi
|
|
967
839
|
*/
|
|
968
840
|
clearApps(cell, completionTimeout, options) {
|
|
969
841
|
return ApplicationApiFp(this.configuration).clearApps(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -976,7 +848,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
976
848
|
* @param {number} [completionTimeout]
|
|
977
849
|
* @param {*} [options] Override http request option.
|
|
978
850
|
* @throws {RequiredError}
|
|
979
|
-
* @memberof ApplicationApi
|
|
980
851
|
*/
|
|
981
852
|
deleteApp(cell, app, completionTimeout, options) {
|
|
982
853
|
return ApplicationApiFp(this.configuration).deleteApp(cell, app, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -988,7 +859,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
988
859
|
* @param {string} app
|
|
989
860
|
* @param {*} [options] Override http request option.
|
|
990
861
|
* @throws {RequiredError}
|
|
991
|
-
* @memberof ApplicationApi
|
|
992
862
|
*/
|
|
993
863
|
getApp(cell, app, options) {
|
|
994
864
|
return ApplicationApiFp(this.configuration).getApp(cell, app, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -999,7 +869,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
999
869
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1000
870
|
* @param {*} [options] Override http request option.
|
|
1001
871
|
* @throws {RequiredError}
|
|
1002
|
-
* @memberof ApplicationApi
|
|
1003
872
|
*/
|
|
1004
873
|
listApps(cell, options) {
|
|
1005
874
|
return ApplicationApiFp(this.configuration).listApps(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1013,7 +882,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
1013
882
|
* @param {number} [completionTimeout]
|
|
1014
883
|
* @param {*} [options] Override http request option.
|
|
1015
884
|
* @throws {RequiredError}
|
|
1016
|
-
* @memberof ApplicationApi
|
|
1017
885
|
*/
|
|
1018
886
|
updateApp(cell, app, app2, completionTimeout, options) {
|
|
1019
887
|
return ApplicationApiFp(this.configuration).updateApp(cell, app, app2, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1021,7 +889,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
1021
889
|
};
|
|
1022
890
|
/**
|
|
1023
891
|
* BUSInputsOutputsApi - axios parameter creator
|
|
1024
|
-
* @export
|
|
1025
892
|
*/
|
|
1026
893
|
const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
|
|
1027
894
|
return {
|
|
@@ -1485,7 +1352,6 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
|
|
|
1485
1352
|
};
|
|
1486
1353
|
/**
|
|
1487
1354
|
* BUSInputsOutputsApi - functional programming interface
|
|
1488
|
-
* @export
|
|
1489
1355
|
*/
|
|
1490
1356
|
const BUSInputsOutputsApiFp = function(configuration) {
|
|
1491
1357
|
const localVarAxiosParamCreator = BUSInputsOutputsApiAxiosParamCreator(configuration);
|
|
@@ -1590,7 +1456,6 @@ const BUSInputsOutputsApiFp = function(configuration) {
|
|
|
1590
1456
|
};
|
|
1591
1457
|
/**
|
|
1592
1458
|
* BUSInputsOutputsApi - factory interface
|
|
1593
|
-
* @export
|
|
1594
1459
|
*/
|
|
1595
1460
|
const BUSInputsOutputsApiFactory = function(configuration, basePath, axios$1) {
|
|
1596
1461
|
const localVarFp = BUSInputsOutputsApiFp(configuration);
|
|
@@ -1647,9 +1512,6 @@ const BUSInputsOutputsApiFactory = function(configuration, basePath, axios$1) {
|
|
|
1647
1512
|
};
|
|
1648
1513
|
/**
|
|
1649
1514
|
* BUSInputsOutputsApi - object-oriented interface
|
|
1650
|
-
* @export
|
|
1651
|
-
* @class BUSInputsOutputsApi
|
|
1652
|
-
* @extends {BaseAPI}
|
|
1653
1515
|
*/
|
|
1654
1516
|
var BUSInputsOutputsApi = class extends BaseAPI {
|
|
1655
1517
|
/**
|
|
@@ -1660,7 +1522,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1660
1522
|
* @param {number} [completionTimeout]
|
|
1661
1523
|
* @param {*} [options] Override http request option.
|
|
1662
1524
|
* @throws {RequiredError}
|
|
1663
|
-
* @memberof BUSInputsOutputsApi
|
|
1664
1525
|
*/
|
|
1665
1526
|
addBusIOService(cell, busIOType, completionTimeout, options) {
|
|
1666
1527
|
return BUSInputsOutputsApiFp(this.configuration).addBusIOService(cell, busIOType, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1673,7 +1534,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1673
1534
|
* @param {ModbusIOData} modbusIOData
|
|
1674
1535
|
* @param {*} [options] Override http request option.
|
|
1675
1536
|
* @throws {RequiredError}
|
|
1676
|
-
* @memberof BUSInputsOutputsApi
|
|
1677
1537
|
*/
|
|
1678
1538
|
addModbusIO(cell, io, modbusIOData, options) {
|
|
1679
1539
|
return BUSInputsOutputsApiFp(this.configuration).addModbusIO(cell, io, modbusIOData, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1686,7 +1546,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1686
1546
|
* @param {ProfinetIOData} profinetIOData
|
|
1687
1547
|
* @param {*} [options] Override http request option.
|
|
1688
1548
|
* @throws {RequiredError}
|
|
1689
|
-
* @memberof BUSInputsOutputsApi
|
|
1690
1549
|
*/
|
|
1691
1550
|
addProfinetIO(cell, io, profinetIOData, options) {
|
|
1692
1551
|
return BUSInputsOutputsApiFp(this.configuration).addProfinetIO(cell, io, profinetIOData, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1698,7 +1557,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1698
1557
|
* @param {number} [completionTimeout]
|
|
1699
1558
|
* @param {*} [options] Override http request option.
|
|
1700
1559
|
* @throws {RequiredError}
|
|
1701
|
-
* @memberof BUSInputsOutputsApi
|
|
1702
1560
|
*/
|
|
1703
1561
|
clearBusIOService(cell, completionTimeout, options) {
|
|
1704
1562
|
return BUSInputsOutputsApiFp(this.configuration).clearBusIOService(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1710,7 +1568,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1710
1568
|
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
1711
1569
|
* @param {*} [options] Override http request option.
|
|
1712
1570
|
* @throws {RequiredError}
|
|
1713
|
-
* @memberof BUSInputsOutputsApi
|
|
1714
1571
|
*/
|
|
1715
1572
|
deleteModbusIO(cell, io, options) {
|
|
1716
1573
|
return BUSInputsOutputsApiFp(this.configuration).deleteModbusIO(cell, io, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1722,7 +1579,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1722
1579
|
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
1723
1580
|
* @param {*} [options] Override http request option.
|
|
1724
1581
|
* @throws {RequiredError}
|
|
1725
|
-
* @memberof BUSInputsOutputsApi
|
|
1726
1582
|
*/
|
|
1727
1583
|
deleteProfinetIO(cell, io, options) {
|
|
1728
1584
|
return BUSInputsOutputsApiFp(this.configuration).deleteProfinetIO(cell, io, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1733,7 +1589,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1733
1589
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1734
1590
|
* @param {*} [options] Override http request option.
|
|
1735
1591
|
* @throws {RequiredError}
|
|
1736
|
-
* @memberof BUSInputsOutputsApi
|
|
1737
1592
|
*/
|
|
1738
1593
|
getBusIOService(cell, options) {
|
|
1739
1594
|
return BUSInputsOutputsApiFp(this.configuration).getBusIOService(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1744,7 +1599,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1744
1599
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1745
1600
|
* @param {*} [options] Override http request option.
|
|
1746
1601
|
* @throws {RequiredError}
|
|
1747
|
-
* @memberof BUSInputsOutputsApi
|
|
1748
1602
|
*/
|
|
1749
1603
|
getBusIOState(cell, options) {
|
|
1750
1604
|
return BUSInputsOutputsApiFp(this.configuration).getBusIOState(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1756,7 +1610,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1756
1610
|
* @param {Array<string>} [ios]
|
|
1757
1611
|
* @param {*} [options] Override http request option.
|
|
1758
1612
|
* @throws {RequiredError}
|
|
1759
|
-
* @memberof BUSInputsOutputsApi
|
|
1760
1613
|
*/
|
|
1761
1614
|
getBusIOValues(cell, ios, options) {
|
|
1762
1615
|
return BUSInputsOutputsApiFp(this.configuration).getBusIOValues(cell, ios, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1767,7 +1620,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1767
1620
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1768
1621
|
* @param {*} [options] Override http request option.
|
|
1769
1622
|
* @throws {RequiredError}
|
|
1770
|
-
* @memberof BUSInputsOutputsApi
|
|
1771
1623
|
*/
|
|
1772
1624
|
getProfinetDescription(cell, options) {
|
|
1773
1625
|
return BUSInputsOutputsApiFp(this.configuration).getProfinetDescription(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1780,7 +1632,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1780
1632
|
* @param {number} [outputOffset]
|
|
1781
1633
|
* @param {*} [options] Override http request option.
|
|
1782
1634
|
* @throws {RequiredError}
|
|
1783
|
-
* @memberof BUSInputsOutputsApi
|
|
1784
1635
|
*/
|
|
1785
1636
|
getProfinetIOsFromFile(cell, inputOffset, outputOffset, options) {
|
|
1786
1637
|
return BUSInputsOutputsApiFp(this.configuration).getProfinetIOsFromFile(cell, inputOffset, outputOffset, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1791,7 +1642,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1791
1642
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1792
1643
|
* @param {*} [options] Override http request option.
|
|
1793
1644
|
* @throws {RequiredError}
|
|
1794
|
-
* @memberof BUSInputsOutputsApi
|
|
1795
1645
|
*/
|
|
1796
1646
|
listBusIODescriptions(cell, options) {
|
|
1797
1647
|
return BUSInputsOutputsApiFp(this.configuration).listBusIODescriptions(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1802,7 +1652,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1802
1652
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1803
1653
|
* @param {*} [options] Override http request option.
|
|
1804
1654
|
* @throws {RequiredError}
|
|
1805
|
-
* @memberof BUSInputsOutputsApi
|
|
1806
1655
|
*/
|
|
1807
1656
|
listModbusIOs(cell, options) {
|
|
1808
1657
|
return BUSInputsOutputsApiFp(this.configuration).listModbusIOs(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1813,7 +1662,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1813
1662
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1814
1663
|
* @param {*} [options] Override http request option.
|
|
1815
1664
|
* @throws {RequiredError}
|
|
1816
|
-
* @memberof BUSInputsOutputsApi
|
|
1817
1665
|
*/
|
|
1818
1666
|
listProfinetIOs(cell, options) {
|
|
1819
1667
|
return BUSInputsOutputsApiFp(this.configuration).listProfinetIOs(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1825,7 +1673,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1825
1673
|
* @param {Array<IOValue>} iOValue
|
|
1826
1674
|
* @param {*} [options] Override http request option.
|
|
1827
1675
|
* @throws {RequiredError}
|
|
1828
|
-
* @memberof BUSInputsOutputsApi
|
|
1829
1676
|
*/
|
|
1830
1677
|
setBusIOValues(cell, iOValue, options) {
|
|
1831
1678
|
return BUSInputsOutputsApiFp(this.configuration).setBusIOValues(cell, iOValue, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1837,7 +1684,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1837
1684
|
* @param {ProfinetInputOutputConfig} profinetInputOutputConfig
|
|
1838
1685
|
* @param {*} [options] Override http request option.
|
|
1839
1686
|
* @throws {RequiredError}
|
|
1840
|
-
* @memberof BUSInputsOutputsApi
|
|
1841
1687
|
*/
|
|
1842
1688
|
setProfinetIOsFromFile(cell, profinetInputOutputConfig, options) {
|
|
1843
1689
|
return BUSInputsOutputsApiFp(this.configuration).setProfinetIOsFromFile(cell, profinetInputOutputConfig, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1845,7 +1691,6 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1845
1691
|
};
|
|
1846
1692
|
/**
|
|
1847
1693
|
* CellApi - axios parameter creator
|
|
1848
|
-
* @export
|
|
1849
1694
|
*/
|
|
1850
1695
|
const CellApiAxiosParamCreator = function(configuration) {
|
|
1851
1696
|
return {
|
|
@@ -2049,7 +1894,6 @@ const CellApiAxiosParamCreator = function(configuration) {
|
|
|
2049
1894
|
};
|
|
2050
1895
|
/**
|
|
2051
1896
|
* CellApi - functional programming interface
|
|
2052
|
-
* @export
|
|
2053
1897
|
*/
|
|
2054
1898
|
const CellApiFp = function(configuration) {
|
|
2055
1899
|
const localVarAxiosParamCreator = CellApiAxiosParamCreator(configuration);
|
|
@@ -2100,7 +1944,6 @@ const CellApiFp = function(configuration) {
|
|
|
2100
1944
|
};
|
|
2101
1945
|
/**
|
|
2102
1946
|
* CellApi - factory interface
|
|
2103
|
-
* @export
|
|
2104
1947
|
*/
|
|
2105
1948
|
const CellApiFactory = function(configuration, basePath, axios$1) {
|
|
2106
1949
|
const localVarFp = CellApiFp(configuration);
|
|
@@ -2130,9 +1973,6 @@ const CellApiFactory = function(configuration, basePath, axios$1) {
|
|
|
2130
1973
|
};
|
|
2131
1974
|
/**
|
|
2132
1975
|
* CellApi - object-oriented interface
|
|
2133
|
-
* @export
|
|
2134
|
-
* @class CellApi
|
|
2135
|
-
* @extends {BaseAPI}
|
|
2136
1976
|
*/
|
|
2137
1977
|
var CellApi = class extends BaseAPI {
|
|
2138
1978
|
/**
|
|
@@ -2142,7 +1982,6 @@ var CellApi = class extends BaseAPI {
|
|
|
2142
1982
|
* @param {number} [completionTimeout]
|
|
2143
1983
|
* @param {*} [options] Override http request option.
|
|
2144
1984
|
* @throws {RequiredError}
|
|
2145
|
-
* @memberof CellApi
|
|
2146
1985
|
*/
|
|
2147
1986
|
deleteCell(cell, completionTimeout, options) {
|
|
2148
1987
|
return CellApiFp(this.configuration).deleteCell(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2154,7 +1993,6 @@ var CellApi = class extends BaseAPI {
|
|
|
2154
1993
|
* @param {number} [completionTimeout]
|
|
2155
1994
|
* @param {*} [options] Override http request option.
|
|
2156
1995
|
* @throws {RequiredError}
|
|
2157
|
-
* @memberof CellApi
|
|
2158
1996
|
*/
|
|
2159
1997
|
deployCell(cell, completionTimeout, options) {
|
|
2160
1998
|
return CellApiFp(this.configuration).deployCell(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2165,7 +2003,6 @@ var CellApi = class extends BaseAPI {
|
|
|
2165
2003
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2166
2004
|
* @param {*} [options] Override http request option.
|
|
2167
2005
|
* @throws {RequiredError}
|
|
2168
|
-
* @memberof CellApi
|
|
2169
2006
|
*/
|
|
2170
2007
|
getCell(cell, options) {
|
|
2171
2008
|
return CellApiFp(this.configuration).getCell(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2176,7 +2013,6 @@ var CellApi = class extends BaseAPI {
|
|
|
2176
2013
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2177
2014
|
* @param {*} [options] Override http request option.
|
|
2178
2015
|
* @throws {RequiredError}
|
|
2179
|
-
* @memberof CellApi
|
|
2180
2016
|
*/
|
|
2181
2017
|
getCellStatus(cell, options) {
|
|
2182
2018
|
return CellApiFp(this.configuration).getCellStatus(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2186,7 +2022,6 @@ var CellApi = class extends BaseAPI {
|
|
|
2186
2022
|
* @summary List Cells
|
|
2187
2023
|
* @param {*} [options] Override http request option.
|
|
2188
2024
|
* @throws {RequiredError}
|
|
2189
|
-
* @memberof CellApi
|
|
2190
2025
|
*/
|
|
2191
2026
|
listCells(options) {
|
|
2192
2027
|
return CellApiFp(this.configuration).listCells(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2198,7 +2033,6 @@ var CellApi = class extends BaseAPI {
|
|
|
2198
2033
|
* @param {OperatingState} operatingState Set state of the cell. Active or inactive.
|
|
2199
2034
|
* @param {*} [options] Override http request option.
|
|
2200
2035
|
* @throws {RequiredError}
|
|
2201
|
-
* @memberof CellApi
|
|
2202
2036
|
*/
|
|
2203
2037
|
setCellStatus(cell, operatingState, options) {
|
|
2204
2038
|
return CellApiFp(this.configuration).setCellStatus(cell, operatingState, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2211,7 +2045,6 @@ var CellApi = class extends BaseAPI {
|
|
|
2211
2045
|
* @param {number} [completionTimeout]
|
|
2212
2046
|
* @param {*} [options] Override http request option.
|
|
2213
2047
|
* @throws {RequiredError}
|
|
2214
|
-
* @memberof CellApi
|
|
2215
2048
|
*/
|
|
2216
2049
|
updateCell(cell, cell2, completionTimeout, options) {
|
|
2217
2050
|
return CellApiFp(this.configuration).updateCell(cell, cell2, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2219,7 +2052,6 @@ var CellApi = class extends BaseAPI {
|
|
|
2219
2052
|
};
|
|
2220
2053
|
/**
|
|
2221
2054
|
* ControllerApi - axios parameter creator
|
|
2222
|
-
* @export
|
|
2223
2055
|
*/
|
|
2224
2056
|
const ControllerApiAxiosParamCreator = function(configuration) {
|
|
2225
2057
|
return {
|
|
@@ -2634,7 +2466,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
|
|
|
2634
2466
|
};
|
|
2635
2467
|
/**
|
|
2636
2468
|
* ControllerApi - functional programming interface
|
|
2637
|
-
* @export
|
|
2638
2469
|
*/
|
|
2639
2470
|
const ControllerApiFp = function(configuration) {
|
|
2640
2471
|
const localVarAxiosParamCreator = ControllerApiAxiosParamCreator(configuration);
|
|
@@ -2727,7 +2558,6 @@ const ControllerApiFp = function(configuration) {
|
|
|
2727
2558
|
};
|
|
2728
2559
|
/**
|
|
2729
2560
|
* ControllerApi - factory interface
|
|
2730
|
-
* @export
|
|
2731
2561
|
*/
|
|
2732
2562
|
const ControllerApiFactory = function(configuration, basePath, axios$1) {
|
|
2733
2563
|
const localVarFp = ControllerApiFp(configuration);
|
|
@@ -2778,9 +2608,6 @@ const ControllerApiFactory = function(configuration, basePath, axios$1) {
|
|
|
2778
2608
|
};
|
|
2779
2609
|
/**
|
|
2780
2610
|
* ControllerApi - object-oriented interface
|
|
2781
|
-
* @export
|
|
2782
|
-
* @class ControllerApi
|
|
2783
|
-
* @extends {BaseAPI}
|
|
2784
2611
|
*/
|
|
2785
2612
|
var ControllerApi = class extends BaseAPI {
|
|
2786
2613
|
/**
|
|
@@ -2791,7 +2618,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2791
2618
|
* @param {number} [completionTimeout]
|
|
2792
2619
|
* @param {*} [options] Override http request option.
|
|
2793
2620
|
* @throws {RequiredError}
|
|
2794
|
-
* @memberof ControllerApi
|
|
2795
2621
|
*/
|
|
2796
2622
|
addRobotController(cell, robotController, completionTimeout, options) {
|
|
2797
2623
|
return ControllerApiFp(this.configuration).addRobotController(cell, robotController, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2803,7 +2629,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2803
2629
|
* @param {number} [completionTimeout]
|
|
2804
2630
|
* @param {*} [options] Override http request option.
|
|
2805
2631
|
* @throws {RequiredError}
|
|
2806
|
-
* @memberof ControllerApi
|
|
2807
2632
|
*/
|
|
2808
2633
|
clearRobotControllers(cell, completionTimeout, options) {
|
|
2809
2634
|
return ControllerApiFp(this.configuration).clearRobotControllers(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2816,7 +2641,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2816
2641
|
* @param {number} [completionTimeout]
|
|
2817
2642
|
* @param {*} [options] Override http request option.
|
|
2818
2643
|
* @throws {RequiredError}
|
|
2819
|
-
* @memberof ControllerApi
|
|
2820
2644
|
*/
|
|
2821
2645
|
deleteRobotController(cell, controller, completionTimeout, options) {
|
|
2822
2646
|
return ControllerApiFp(this.configuration).deleteRobotController(cell, controller, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2828,7 +2652,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2828
2652
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
2829
2653
|
* @param {*} [options] Override http request option.
|
|
2830
2654
|
* @throws {RequiredError}
|
|
2831
|
-
* @memberof ControllerApi
|
|
2832
2655
|
*/
|
|
2833
2656
|
getControllerDescription(cell, controller, options) {
|
|
2834
2657
|
return ControllerApiFp(this.configuration).getControllerDescription(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2842,7 +2665,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2842
2665
|
* @param {OrientationType} [orientationType]
|
|
2843
2666
|
* @param {*} [options] Override http request option.
|
|
2844
2667
|
* @throws {RequiredError}
|
|
2845
|
-
* @memberof ControllerApi
|
|
2846
2668
|
*/
|
|
2847
2669
|
getCoordinateSystem(cell, controller, coordinateSystem, orientationType, options) {
|
|
2848
2670
|
return ControllerApiFp(this.configuration).getCoordinateSystem(cell, controller, coordinateSystem, orientationType, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2854,7 +2676,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2854
2676
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
2855
2677
|
* @param {*} [options] Override http request option.
|
|
2856
2678
|
* @throws {RequiredError}
|
|
2857
|
-
* @memberof ControllerApi
|
|
2858
2679
|
*/
|
|
2859
2680
|
getCurrentRobotControllerState(cell, controller, options) {
|
|
2860
2681
|
return ControllerApiFp(this.configuration).getCurrentRobotControllerState(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2866,7 +2687,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2866
2687
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
2867
2688
|
* @param {*} [options] Override http request option.
|
|
2868
2689
|
* @throws {RequiredError}
|
|
2869
|
-
* @memberof ControllerApi
|
|
2870
2690
|
*/
|
|
2871
2691
|
getRobotController(cell, controller, options) {
|
|
2872
2692
|
return ControllerApiFp(this.configuration).getRobotController(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2878,7 +2698,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2878
2698
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
2879
2699
|
* @param {*} [options] Override http request option.
|
|
2880
2700
|
* @throws {RequiredError}
|
|
2881
|
-
* @memberof ControllerApi
|
|
2882
2701
|
*/
|
|
2883
2702
|
getVirtualControllerConfiguration(cell, controller, options) {
|
|
2884
2703
|
return ControllerApiFp(this.configuration).getVirtualControllerConfiguration(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2891,7 +2710,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2891
2710
|
* @param {OrientationType} [orientationType]
|
|
2892
2711
|
* @param {*} [options] Override http request option.
|
|
2893
2712
|
* @throws {RequiredError}
|
|
2894
|
-
* @memberof ControllerApi
|
|
2895
2713
|
*/
|
|
2896
2714
|
listCoordinateSystems(cell, controller, orientationType, options) {
|
|
2897
2715
|
return ControllerApiFp(this.configuration).listCoordinateSystems(cell, controller, orientationType, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2902,7 +2720,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2902
2720
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
2903
2721
|
* @param {*} [options] Override http request option.
|
|
2904
2722
|
* @throws {RequiredError}
|
|
2905
|
-
* @memberof ControllerApi
|
|
2906
2723
|
*/
|
|
2907
2724
|
listRobotControllers(cell, options) {
|
|
2908
2725
|
return ControllerApiFp(this.configuration).listRobotControllers(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2915,7 +2732,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2915
2732
|
* @param {SettableRobotSystemMode} mode
|
|
2916
2733
|
* @param {*} [options] Override http request option.
|
|
2917
2734
|
* @throws {RequiredError}
|
|
2918
|
-
* @memberof ControllerApi
|
|
2919
2735
|
*/
|
|
2920
2736
|
setDefaultMode(cell, controller, mode, options) {
|
|
2921
2737
|
return ControllerApiFp(this.configuration).setDefaultMode(cell, controller, mode, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2928,7 +2744,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2928
2744
|
* @param {number} [responseRate]
|
|
2929
2745
|
* @param {*} [options] Override http request option.
|
|
2930
2746
|
* @throws {RequiredError}
|
|
2931
|
-
* @memberof ControllerApi
|
|
2932
2747
|
*/
|
|
2933
2748
|
streamFreeDrive(cell, controller, responseRate, options) {
|
|
2934
2749
|
return ControllerApiFp(this.configuration).streamFreeDrive(cell, controller, responseRate, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2942,7 +2757,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2942
2757
|
* @param {number} [addControllerTimeout]
|
|
2943
2758
|
* @param {*} [options] Override http request option.
|
|
2944
2759
|
* @throws {RequiredError}
|
|
2945
|
-
* @memberof ControllerApi
|
|
2946
2760
|
*/
|
|
2947
2761
|
streamRobotControllerState(cell, controller, responseRate, addControllerTimeout, options) {
|
|
2948
2762
|
return ControllerApiFp(this.configuration).streamRobotControllerState(cell, controller, responseRate, addControllerTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2956,7 +2770,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2956
2770
|
* @param {number} [completionTimeout]
|
|
2957
2771
|
* @param {*} [options] Override http request option.
|
|
2958
2772
|
* @throws {RequiredError}
|
|
2959
|
-
* @memberof ControllerApi
|
|
2960
2773
|
*/
|
|
2961
2774
|
updateRobotController(cell, controller, robotController, completionTimeout, options) {
|
|
2962
2775
|
return ControllerApiFp(this.configuration).updateRobotController(cell, controller, robotController, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2964,7 +2777,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
2964
2777
|
};
|
|
2965
2778
|
/**
|
|
2966
2779
|
* ControllerInputsOutputsApi - axios parameter creator
|
|
2967
|
-
* @export
|
|
2968
2780
|
*/
|
|
2969
2781
|
const ControllerInputsOutputsApiAxiosParamCreator = function(configuration) {
|
|
2970
2782
|
return {
|
|
@@ -3124,7 +2936,6 @@ const ControllerInputsOutputsApiAxiosParamCreator = function(configuration) {
|
|
|
3124
2936
|
};
|
|
3125
2937
|
/**
|
|
3126
2938
|
* ControllerInputsOutputsApi - functional programming interface
|
|
3127
|
-
* @export
|
|
3128
2939
|
*/
|
|
3129
2940
|
const ControllerInputsOutputsApiFp = function(configuration) {
|
|
3130
2941
|
const localVarAxiosParamCreator = ControllerInputsOutputsApiAxiosParamCreator(configuration);
|
|
@@ -3163,7 +2974,6 @@ const ControllerInputsOutputsApiFp = function(configuration) {
|
|
|
3163
2974
|
};
|
|
3164
2975
|
/**
|
|
3165
2976
|
* ControllerInputsOutputsApi - factory interface
|
|
3166
|
-
* @export
|
|
3167
2977
|
*/
|
|
3168
2978
|
const ControllerInputsOutputsApiFactory = function(configuration, basePath, axios$1) {
|
|
3169
2979
|
const localVarFp = ControllerInputsOutputsApiFp(configuration);
|
|
@@ -3187,9 +2997,6 @@ const ControllerInputsOutputsApiFactory = function(configuration, basePath, axio
|
|
|
3187
2997
|
};
|
|
3188
2998
|
/**
|
|
3189
2999
|
* ControllerInputsOutputsApi - object-oriented interface
|
|
3190
|
-
* @export
|
|
3191
|
-
* @class ControllerInputsOutputsApi
|
|
3192
|
-
* @extends {BaseAPI}
|
|
3193
3000
|
*/
|
|
3194
3001
|
var ControllerInputsOutputsApi = class extends BaseAPI {
|
|
3195
3002
|
/**
|
|
@@ -3203,7 +3010,6 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
3203
3010
|
* @param {string} [group] Return only inputs/outputs from the specified group.
|
|
3204
3011
|
* @param {*} [options] Override http request option.
|
|
3205
3012
|
* @throws {RequiredError}
|
|
3206
|
-
* @memberof ControllerInputsOutputsApi
|
|
3207
3013
|
*/
|
|
3208
3014
|
listIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
3209
3015
|
return ControllerInputsOutputsApiFp(this.configuration).listIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3216,7 +3022,6 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
3216
3022
|
* @param {Array<string>} [ios]
|
|
3217
3023
|
* @param {*} [options] Override http request option.
|
|
3218
3024
|
* @throws {RequiredError}
|
|
3219
|
-
* @memberof ControllerInputsOutputsApi
|
|
3220
3025
|
*/
|
|
3221
3026
|
listIOValues(cell, controller, ios, options) {
|
|
3222
3027
|
return ControllerInputsOutputsApiFp(this.configuration).listIOValues(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3229,7 +3034,6 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
3229
3034
|
* @param {Array<IOValue>} iOValue
|
|
3230
3035
|
* @param {*} [options] Override http request option.
|
|
3231
3036
|
* @throws {RequiredError}
|
|
3232
|
-
* @memberof ControllerInputsOutputsApi
|
|
3233
3037
|
*/
|
|
3234
3038
|
setOutputValues(cell, controller, iOValue, options) {
|
|
3235
3039
|
return ControllerInputsOutputsApiFp(this.configuration).setOutputValues(cell, controller, iOValue, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3242,7 +3046,6 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
3242
3046
|
* @param {Array<string>} [ios]
|
|
3243
3047
|
* @param {*} [options] Override http request option.
|
|
3244
3048
|
* @throws {RequiredError}
|
|
3245
|
-
* @memberof ControllerInputsOutputsApi
|
|
3246
3049
|
*/
|
|
3247
3050
|
streamIOValues(cell, controller, ios, options) {
|
|
3248
3051
|
return ControllerInputsOutputsApiFp(this.configuration).streamIOValues(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3255,7 +3058,6 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
3255
3058
|
* @param {WaitForIOEventRequest} waitForIOEventRequest
|
|
3256
3059
|
* @param {*} [options] Override http request option.
|
|
3257
3060
|
* @throws {RequiredError}
|
|
3258
|
-
* @memberof ControllerInputsOutputsApi
|
|
3259
3061
|
*/
|
|
3260
3062
|
waitForIOEvent(cell, controller, waitForIOEventRequest, options) {
|
|
3261
3063
|
return ControllerInputsOutputsApiFp(this.configuration).waitForIOEvent(cell, controller, waitForIOEventRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3263,7 +3065,6 @@ var ControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
3263
3065
|
};
|
|
3264
3066
|
/**
|
|
3265
3067
|
* JoggingApi - axios parameter creator
|
|
3266
|
-
* @export
|
|
3267
3068
|
*/
|
|
3268
3069
|
const JoggingApiAxiosParamCreator = function(configuration) {
|
|
3269
3070
|
return { executeJogging: async (cell, controller, executeJoggingRequest, options = {}) => {
|
|
@@ -3300,7 +3101,6 @@ const JoggingApiAxiosParamCreator = function(configuration) {
|
|
|
3300
3101
|
};
|
|
3301
3102
|
/**
|
|
3302
3103
|
* JoggingApi - functional programming interface
|
|
3303
|
-
* @export
|
|
3304
3104
|
*/
|
|
3305
3105
|
const JoggingApiFp = function(configuration) {
|
|
3306
3106
|
const localVarAxiosParamCreator = JoggingApiAxiosParamCreator(configuration);
|
|
@@ -3313,7 +3113,6 @@ const JoggingApiFp = function(configuration) {
|
|
|
3313
3113
|
};
|
|
3314
3114
|
/**
|
|
3315
3115
|
* JoggingApi - factory interface
|
|
3316
|
-
* @export
|
|
3317
3116
|
*/
|
|
3318
3117
|
const JoggingApiFactory = function(configuration, basePath, axios$1) {
|
|
3319
3118
|
const localVarFp = JoggingApiFp(configuration);
|
|
@@ -3323,9 +3122,6 @@ const JoggingApiFactory = function(configuration, basePath, axios$1) {
|
|
|
3323
3122
|
};
|
|
3324
3123
|
/**
|
|
3325
3124
|
* JoggingApi - object-oriented interface
|
|
3326
|
-
* @export
|
|
3327
|
-
* @class JoggingApi
|
|
3328
|
-
* @extends {BaseAPI}
|
|
3329
3125
|
*/
|
|
3330
3126
|
var JoggingApi = class extends BaseAPI {
|
|
3331
3127
|
/**
|
|
@@ -3336,7 +3132,6 @@ var JoggingApi = class extends BaseAPI {
|
|
|
3336
3132
|
* @param {ExecuteJoggingRequest} executeJoggingRequest
|
|
3337
3133
|
* @param {*} [options] Override http request option.
|
|
3338
3134
|
* @throws {RequiredError}
|
|
3339
|
-
* @memberof JoggingApi
|
|
3340
3135
|
*/
|
|
3341
3136
|
executeJogging(cell, controller, executeJoggingRequest, options) {
|
|
3342
3137
|
return JoggingApiFp(this.configuration).executeJogging(cell, controller, executeJoggingRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3344,7 +3139,6 @@ var JoggingApi = class extends BaseAPI {
|
|
|
3344
3139
|
};
|
|
3345
3140
|
/**
|
|
3346
3141
|
* KinematicsApi - axios parameter creator
|
|
3347
|
-
* @export
|
|
3348
3142
|
*/
|
|
3349
3143
|
const KinematicsApiAxiosParamCreator = function(configuration) {
|
|
3350
3144
|
return {
|
|
@@ -3412,7 +3206,6 @@ const KinematicsApiAxiosParamCreator = function(configuration) {
|
|
|
3412
3206
|
};
|
|
3413
3207
|
/**
|
|
3414
3208
|
* KinematicsApi - functional programming interface
|
|
3415
|
-
* @export
|
|
3416
3209
|
*/
|
|
3417
3210
|
const KinematicsApiFp = function(configuration) {
|
|
3418
3211
|
const localVarAxiosParamCreator = KinematicsApiAxiosParamCreator(configuration);
|
|
@@ -3433,7 +3226,6 @@ const KinematicsApiFp = function(configuration) {
|
|
|
3433
3226
|
};
|
|
3434
3227
|
/**
|
|
3435
3228
|
* KinematicsApi - factory interface
|
|
3436
|
-
* @export
|
|
3437
3229
|
*/
|
|
3438
3230
|
const KinematicsApiFactory = function(configuration, basePath, axios$1) {
|
|
3439
3231
|
const localVarFp = KinematicsApiFp(configuration);
|
|
@@ -3448,9 +3240,6 @@ const KinematicsApiFactory = function(configuration, basePath, axios$1) {
|
|
|
3448
3240
|
};
|
|
3449
3241
|
/**
|
|
3450
3242
|
* KinematicsApi - object-oriented interface
|
|
3451
|
-
* @export
|
|
3452
|
-
* @class KinematicsApi
|
|
3453
|
-
* @extends {BaseAPI}
|
|
3454
3243
|
*/
|
|
3455
3244
|
var KinematicsApi = class extends BaseAPI {
|
|
3456
3245
|
/**
|
|
@@ -3460,7 +3249,6 @@ var KinematicsApi = class extends BaseAPI {
|
|
|
3460
3249
|
* @param {ForwardKinematicsRequest} forwardKinematicsRequest
|
|
3461
3250
|
* @param {*} [options] Override http request option.
|
|
3462
3251
|
* @throws {RequiredError}
|
|
3463
|
-
* @memberof KinematicsApi
|
|
3464
3252
|
*/
|
|
3465
3253
|
forwardKinematics(cell, forwardKinematicsRequest, options) {
|
|
3466
3254
|
return KinematicsApiFp(this.configuration).forwardKinematics(cell, forwardKinematicsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3472,7 +3260,6 @@ var KinematicsApi = class extends BaseAPI {
|
|
|
3472
3260
|
* @param {InverseKinematicsRequest} inverseKinematicsRequest
|
|
3473
3261
|
* @param {*} [options] Override http request option.
|
|
3474
3262
|
* @throws {RequiredError}
|
|
3475
|
-
* @memberof KinematicsApi
|
|
3476
3263
|
*/
|
|
3477
3264
|
inverseKinematics(cell, inverseKinematicsRequest, options) {
|
|
3478
3265
|
return KinematicsApiFp(this.configuration).inverseKinematics(cell, inverseKinematicsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3480,7 +3267,6 @@ var KinematicsApi = class extends BaseAPI {
|
|
|
3480
3267
|
};
|
|
3481
3268
|
/**
|
|
3482
3269
|
* LicenseApi - axios parameter creator
|
|
3483
|
-
* @export
|
|
3484
3270
|
*/
|
|
3485
3271
|
const LicenseApiAxiosParamCreator = function(configuration) {
|
|
3486
3272
|
return {
|
|
@@ -3591,7 +3377,6 @@ const LicenseApiAxiosParamCreator = function(configuration) {
|
|
|
3591
3377
|
};
|
|
3592
3378
|
/**
|
|
3593
3379
|
* LicenseApi - functional programming interface
|
|
3594
|
-
* @export
|
|
3595
3380
|
*/
|
|
3596
3381
|
const LicenseApiFp = function(configuration) {
|
|
3597
3382
|
const localVarAxiosParamCreator = LicenseApiAxiosParamCreator(configuration);
|
|
@@ -3624,7 +3409,6 @@ const LicenseApiFp = function(configuration) {
|
|
|
3624
3409
|
};
|
|
3625
3410
|
/**
|
|
3626
3411
|
* LicenseApi - factory interface
|
|
3627
|
-
* @export
|
|
3628
3412
|
*/
|
|
3629
3413
|
const LicenseApiFactory = function(configuration, basePath, axios$1) {
|
|
3630
3414
|
const localVarFp = LicenseApiFp(configuration);
|
|
@@ -3645,9 +3429,6 @@ const LicenseApiFactory = function(configuration, basePath, axios$1) {
|
|
|
3645
3429
|
};
|
|
3646
3430
|
/**
|
|
3647
3431
|
* LicenseApi - object-oriented interface
|
|
3648
|
-
* @export
|
|
3649
|
-
* @class LicenseApi
|
|
3650
|
-
* @extends {BaseAPI}
|
|
3651
3432
|
*/
|
|
3652
3433
|
var LicenseApi = class extends BaseAPI {
|
|
3653
3434
|
/**
|
|
@@ -3656,7 +3437,6 @@ var LicenseApi = class extends BaseAPI {
|
|
|
3656
3437
|
* @param {ActivateLicenseRequest} activateLicenseRequest
|
|
3657
3438
|
* @param {*} [options] Override http request option.
|
|
3658
3439
|
* @throws {RequiredError}
|
|
3659
|
-
* @memberof LicenseApi
|
|
3660
3440
|
*/
|
|
3661
3441
|
activateLicense(activateLicenseRequest, options) {
|
|
3662
3442
|
return LicenseApiFp(this.configuration).activateLicense(activateLicenseRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3666,7 +3446,6 @@ var LicenseApi = class extends BaseAPI {
|
|
|
3666
3446
|
* @summary Deactivate license
|
|
3667
3447
|
* @param {*} [options] Override http request option.
|
|
3668
3448
|
* @throws {RequiredError}
|
|
3669
|
-
* @memberof LicenseApi
|
|
3670
3449
|
*/
|
|
3671
3450
|
deactivateLicense(options) {
|
|
3672
3451
|
return LicenseApiFp(this.configuration).deactivateLicense(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3676,7 +3455,6 @@ var LicenseApi = class extends BaseAPI {
|
|
|
3676
3455
|
* @summary Get license
|
|
3677
3456
|
* @param {*} [options] Override http request option.
|
|
3678
3457
|
* @throws {RequiredError}
|
|
3679
|
-
* @memberof LicenseApi
|
|
3680
3458
|
*/
|
|
3681
3459
|
getLicense(options) {
|
|
3682
3460
|
return LicenseApiFp(this.configuration).getLicense(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3686,7 +3464,6 @@ var LicenseApi = class extends BaseAPI {
|
|
|
3686
3464
|
* @summary Get license status
|
|
3687
3465
|
* @param {*} [options] Override http request option.
|
|
3688
3466
|
* @throws {RequiredError}
|
|
3689
|
-
* @memberof LicenseApi
|
|
3690
3467
|
*/
|
|
3691
3468
|
getLicenseStatus(options) {
|
|
3692
3469
|
return LicenseApiFp(this.configuration).getLicenseStatus(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3694,7 +3471,6 @@ var LicenseApi = class extends BaseAPI {
|
|
|
3694
3471
|
};
|
|
3695
3472
|
/**
|
|
3696
3473
|
* MotionGroupApi - axios parameter creator
|
|
3697
|
-
* @export
|
|
3698
3474
|
*/
|
|
3699
3475
|
const MotionGroupApiAxiosParamCreator = function(configuration) {
|
|
3700
3476
|
return {
|
|
@@ -3792,7 +3568,6 @@ const MotionGroupApiAxiosParamCreator = function(configuration) {
|
|
|
3792
3568
|
};
|
|
3793
3569
|
/**
|
|
3794
3570
|
* MotionGroupApi - functional programming interface
|
|
3795
|
-
* @export
|
|
3796
3571
|
*/
|
|
3797
3572
|
const MotionGroupApiFp = function(configuration) {
|
|
3798
3573
|
const localVarAxiosParamCreator = MotionGroupApiAxiosParamCreator(configuration);
|
|
@@ -3819,7 +3594,6 @@ const MotionGroupApiFp = function(configuration) {
|
|
|
3819
3594
|
};
|
|
3820
3595
|
/**
|
|
3821
3596
|
* MotionGroupApi - factory interface
|
|
3822
|
-
* @export
|
|
3823
3597
|
*/
|
|
3824
3598
|
const MotionGroupApiFactory = function(configuration, basePath, axios$1) {
|
|
3825
3599
|
const localVarFp = MotionGroupApiFp(configuration);
|
|
@@ -3837,9 +3611,6 @@ const MotionGroupApiFactory = function(configuration, basePath, axios$1) {
|
|
|
3837
3611
|
};
|
|
3838
3612
|
/**
|
|
3839
3613
|
* MotionGroupApi - object-oriented interface
|
|
3840
|
-
* @export
|
|
3841
|
-
* @class MotionGroupApi
|
|
3842
|
-
* @extends {BaseAPI}
|
|
3843
3614
|
*/
|
|
3844
3615
|
var MotionGroupApi = class extends BaseAPI {
|
|
3845
3616
|
/**
|
|
@@ -3851,7 +3622,6 @@ var MotionGroupApi = class extends BaseAPI {
|
|
|
3851
3622
|
* @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
3623
|
* @param {*} [options] Override http request option.
|
|
3853
3624
|
* @throws {RequiredError}
|
|
3854
|
-
* @memberof MotionGroupApi
|
|
3855
3625
|
*/
|
|
3856
3626
|
getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options) {
|
|
3857
3627
|
return MotionGroupApiFp(this.configuration).getCurrentMotionGroupState(cell, controller, motionGroup, responseCoordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3864,7 +3634,6 @@ var MotionGroupApi = class extends BaseAPI {
|
|
|
3864
3634
|
* @param {string} motionGroup The motion-group identifier.
|
|
3865
3635
|
* @param {*} [options] Override http request option.
|
|
3866
3636
|
* @throws {RequiredError}
|
|
3867
|
-
* @memberof MotionGroupApi
|
|
3868
3637
|
*/
|
|
3869
3638
|
getMotionGroupDescription(cell, controller, motionGroup, options) {
|
|
3870
3639
|
return MotionGroupApiFp(this.configuration).getMotionGroupDescription(cell, controller, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3879,7 +3648,6 @@ var MotionGroupApi = class extends BaseAPI {
|
|
|
3879
3648
|
* @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
3649
|
* @param {*} [options] Override http request option.
|
|
3881
3650
|
* @throws {RequiredError}
|
|
3882
|
-
* @memberof MotionGroupApi
|
|
3883
3651
|
*/
|
|
3884
3652
|
streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options) {
|
|
3885
3653
|
return MotionGroupApiFp(this.configuration).streamMotionGroupState(cell, controller, motionGroup, responseRate, responseCoordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3887,7 +3655,6 @@ var MotionGroupApi = class extends BaseAPI {
|
|
|
3887
3655
|
};
|
|
3888
3656
|
/**
|
|
3889
3657
|
* MotionGroupModelsApi - axios parameter creator
|
|
3890
|
-
* @export
|
|
3891
3658
|
*/
|
|
3892
3659
|
const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
3893
3660
|
return {
|
|
@@ -3947,7 +3714,6 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
|
|
|
3947
3714
|
};
|
|
3948
3715
|
/**
|
|
3949
3716
|
* MotionGroupModelsApi - functional programming interface
|
|
3950
|
-
* @export
|
|
3951
3717
|
*/
|
|
3952
3718
|
const MotionGroupModelsApiFp = function(configuration) {
|
|
3953
3719
|
const localVarAxiosParamCreator = MotionGroupModelsApiAxiosParamCreator(configuration);
|
|
@@ -3968,7 +3734,6 @@ const MotionGroupModelsApiFp = function(configuration) {
|
|
|
3968
3734
|
};
|
|
3969
3735
|
/**
|
|
3970
3736
|
* MotionGroupModelsApi - factory interface
|
|
3971
|
-
* @export
|
|
3972
3737
|
*/
|
|
3973
3738
|
const MotionGroupModelsApiFactory = function(configuration, basePath, axios$1) {
|
|
3974
3739
|
const localVarFp = MotionGroupModelsApiFp(configuration);
|
|
@@ -3983,9 +3748,6 @@ const MotionGroupModelsApiFactory = function(configuration, basePath, axios$1) {
|
|
|
3983
3748
|
};
|
|
3984
3749
|
/**
|
|
3985
3750
|
* MotionGroupModelsApi - object-oriented interface
|
|
3986
|
-
* @export
|
|
3987
|
-
* @class MotionGroupModelsApi
|
|
3988
|
-
* @extends {BaseAPI}
|
|
3989
3751
|
*/
|
|
3990
3752
|
var MotionGroupModelsApi = class extends BaseAPI {
|
|
3991
3753
|
/**
|
|
@@ -3994,7 +3756,6 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
3994
3756
|
* @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
3757
|
* @param {*} [options] Override http request option.
|
|
3996
3758
|
* @throws {RequiredError}
|
|
3997
|
-
* @memberof MotionGroupModelsApi
|
|
3998
3759
|
*/
|
|
3999
3760
|
getMotionGroupCollisionModel(motionGroupModel, options) {
|
|
4000
3761
|
return MotionGroupModelsApiFp(this.configuration).getMotionGroupCollisionModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4004,7 +3765,6 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
4004
3765
|
* @summary Motion Group Models
|
|
4005
3766
|
* @param {*} [options] Override http request option.
|
|
4006
3767
|
* @throws {RequiredError}
|
|
4007
|
-
* @memberof MotionGroupModelsApi
|
|
4008
3768
|
*/
|
|
4009
3769
|
getMotionGroupModels(options) {
|
|
4010
3770
|
return MotionGroupModelsApiFp(this.configuration).getMotionGroupModels(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4012,7 +3772,6 @@ var MotionGroupModelsApi = class extends BaseAPI {
|
|
|
4012
3772
|
};
|
|
4013
3773
|
/**
|
|
4014
3774
|
* ProgramApi - axios parameter creator
|
|
4015
|
-
* @export
|
|
4016
3775
|
*/
|
|
4017
3776
|
const ProgramApiAxiosParamCreator = function(configuration) {
|
|
4018
3777
|
return {
|
|
@@ -4134,7 +3893,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
|
|
|
4134
3893
|
};
|
|
4135
3894
|
/**
|
|
4136
3895
|
* ProgramApi - functional programming interface
|
|
4137
|
-
* @export
|
|
4138
3896
|
*/
|
|
4139
3897
|
const ProgramApiFp = function(configuration) {
|
|
4140
3898
|
const localVarAxiosParamCreator = ProgramApiAxiosParamCreator(configuration);
|
|
@@ -4167,7 +3925,6 @@ const ProgramApiFp = function(configuration) {
|
|
|
4167
3925
|
};
|
|
4168
3926
|
/**
|
|
4169
3927
|
* ProgramApi - factory interface
|
|
4170
|
-
* @export
|
|
4171
3928
|
*/
|
|
4172
3929
|
const ProgramApiFactory = function(configuration, basePath, axios$1) {
|
|
4173
3930
|
const localVarFp = ProgramApiFp(configuration);
|
|
@@ -4188,9 +3945,6 @@ const ProgramApiFactory = function(configuration, basePath, axios$1) {
|
|
|
4188
3945
|
};
|
|
4189
3946
|
/**
|
|
4190
3947
|
* ProgramApi - object-oriented interface
|
|
4191
|
-
* @export
|
|
4192
|
-
* @class ProgramApi
|
|
4193
|
-
* @extends {BaseAPI}
|
|
4194
3948
|
*/
|
|
4195
3949
|
var ProgramApi = class extends BaseAPI {
|
|
4196
3950
|
/**
|
|
@@ -4200,7 +3954,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
4200
3954
|
* @param {string} program
|
|
4201
3955
|
* @param {*} [options] Override http request option.
|
|
4202
3956
|
* @throws {RequiredError}
|
|
4203
|
-
* @memberof ProgramApi
|
|
4204
3957
|
*/
|
|
4205
3958
|
getProgram(cell, program, options) {
|
|
4206
3959
|
return ProgramApiFp(this.configuration).getProgram(cell, program, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4211,7 +3964,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
4211
3964
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4212
3965
|
* @param {*} [options] Override http request option.
|
|
4213
3966
|
* @throws {RequiredError}
|
|
4214
|
-
* @memberof ProgramApi
|
|
4215
3967
|
*/
|
|
4216
3968
|
listPrograms(cell, options) {
|
|
4217
3969
|
return ProgramApiFp(this.configuration).listPrograms(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4224,7 +3976,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
4224
3976
|
* @param {ProgramStartRequest} programStartRequest
|
|
4225
3977
|
* @param {*} [options] Override http request option.
|
|
4226
3978
|
* @throws {RequiredError}
|
|
4227
|
-
* @memberof ProgramApi
|
|
4228
3979
|
*/
|
|
4229
3980
|
startProgram(cell, program, programStartRequest, options) {
|
|
4230
3981
|
return ProgramApiFp(this.configuration).startProgram(cell, program, programStartRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4236,7 +3987,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
4236
3987
|
* @param {string} program
|
|
4237
3988
|
* @param {*} [options] Override http request option.
|
|
4238
3989
|
* @throws {RequiredError}
|
|
4239
|
-
* @memberof ProgramApi
|
|
4240
3990
|
*/
|
|
4241
3991
|
stopProgram(cell, program, options) {
|
|
4242
3992
|
return ProgramApiFp(this.configuration).stopProgram(cell, program, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4244,7 +3994,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
4244
3994
|
};
|
|
4245
3995
|
/**
|
|
4246
3996
|
* StoreCollisionComponentsApi - axios parameter creator
|
|
4247
|
-
* @export
|
|
4248
3997
|
*/
|
|
4249
3998
|
const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
4250
3999
|
return {
|
|
@@ -4675,7 +4424,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
|
4675
4424
|
};
|
|
4676
4425
|
/**
|
|
4677
4426
|
* StoreCollisionComponentsApi - functional programming interface
|
|
4678
|
-
* @export
|
|
4679
4427
|
*/
|
|
4680
4428
|
const StoreCollisionComponentsApiFp = function(configuration) {
|
|
4681
4429
|
const localVarAxiosParamCreator = StoreCollisionComponentsApiAxiosParamCreator(configuration);
|
|
@@ -4774,7 +4522,6 @@ const StoreCollisionComponentsApiFp = function(configuration) {
|
|
|
4774
4522
|
};
|
|
4775
4523
|
/**
|
|
4776
4524
|
* StoreCollisionComponentsApi - factory interface
|
|
4777
|
-
* @export
|
|
4778
4525
|
*/
|
|
4779
4526
|
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$1) {
|
|
4780
4527
|
const localVarFp = StoreCollisionComponentsApiFp(configuration);
|
|
@@ -4828,9 +4575,6 @@ const StoreCollisionComponentsApiFactory = function(configuration, basePath, axi
|
|
|
4828
4575
|
};
|
|
4829
4576
|
/**
|
|
4830
4577
|
* StoreCollisionComponentsApi - object-oriented interface
|
|
4831
|
-
* @export
|
|
4832
|
-
* @class StoreCollisionComponentsApi
|
|
4833
|
-
* @extends {BaseAPI}
|
|
4834
4578
|
*/
|
|
4835
4579
|
var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
4836
4580
|
/**
|
|
@@ -4840,7 +4584,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4840
4584
|
* @param {string} collider Unique identifier addressing a collider.
|
|
4841
4585
|
* @param {*} [options] Override http request option.
|
|
4842
4586
|
* @throws {RequiredError}
|
|
4843
|
-
* @memberof StoreCollisionComponentsApi
|
|
4844
4587
|
*/
|
|
4845
4588
|
deleteStoredCollider(cell, collider, options) {
|
|
4846
4589
|
return StoreCollisionComponentsApiFp(this.configuration).deleteStoredCollider(cell, collider, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4852,7 +4595,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4852
4595
|
* @param {string} linkChain Unique identifier addressing a collision link chain.
|
|
4853
4596
|
* @param {*} [options] Override http request option.
|
|
4854
4597
|
* @throws {RequiredError}
|
|
4855
|
-
* @memberof StoreCollisionComponentsApi
|
|
4856
4598
|
*/
|
|
4857
4599
|
deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
4858
4600
|
return StoreCollisionComponentsApiFp(this.configuration).deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4864,7 +4606,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4864
4606
|
* @param {string} tool Unique identifier addressing a collision tool.
|
|
4865
4607
|
* @param {*} [options] Override http request option.
|
|
4866
4608
|
* @throws {RequiredError}
|
|
4867
|
-
* @memberof StoreCollisionComponentsApi
|
|
4868
4609
|
*/
|
|
4869
4610
|
deleteStoredCollisionTool(cell, tool, options) {
|
|
4870
4611
|
return StoreCollisionComponentsApiFp(this.configuration).deleteStoredCollisionTool(cell, tool, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4876,7 +4617,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4876
4617
|
* @param {string} collider Unique identifier addressing a collider.
|
|
4877
4618
|
* @param {*} [options] Override http request option.
|
|
4878
4619
|
* @throws {RequiredError}
|
|
4879
|
-
* @memberof StoreCollisionComponentsApi
|
|
4880
4620
|
*/
|
|
4881
4621
|
getStoredCollider(cell, collider, options) {
|
|
4882
4622
|
return StoreCollisionComponentsApiFp(this.configuration).getStoredCollider(cell, collider, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4888,7 +4628,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4888
4628
|
* @param {string} linkChain Unique identifier addressing a collision link chain.
|
|
4889
4629
|
* @param {*} [options] Override http request option.
|
|
4890
4630
|
* @throws {RequiredError}
|
|
4891
|
-
* @memberof StoreCollisionComponentsApi
|
|
4892
4631
|
*/
|
|
4893
4632
|
getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
4894
4633
|
return StoreCollisionComponentsApiFp(this.configuration).getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4900,7 +4639,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4900
4639
|
* @param {string} tool Unique identifier addressing a collision tool.
|
|
4901
4640
|
* @param {*} [options] Override http request option.
|
|
4902
4641
|
* @throws {RequiredError}
|
|
4903
|
-
* @memberof StoreCollisionComponentsApi
|
|
4904
4642
|
*/
|
|
4905
4643
|
getStoredCollisionTool(cell, tool, options) {
|
|
4906
4644
|
return StoreCollisionComponentsApiFp(this.configuration).getStoredCollisionTool(cell, tool, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4911,7 +4649,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4911
4649
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4912
4650
|
* @param {*} [options] Override http request option.
|
|
4913
4651
|
* @throws {RequiredError}
|
|
4914
|
-
* @memberof StoreCollisionComponentsApi
|
|
4915
4652
|
*/
|
|
4916
4653
|
listCollisionLinkChains(cell, options) {
|
|
4917
4654
|
return StoreCollisionComponentsApiFp(this.configuration).listCollisionLinkChains(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4922,7 +4659,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4922
4659
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4923
4660
|
* @param {*} [options] Override http request option.
|
|
4924
4661
|
* @throws {RequiredError}
|
|
4925
|
-
* @memberof StoreCollisionComponentsApi
|
|
4926
4662
|
*/
|
|
4927
4663
|
listCollisionLinkChainsKeys(cell, options) {
|
|
4928
4664
|
return StoreCollisionComponentsApiFp(this.configuration).listCollisionLinkChainsKeys(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4933,7 +4669,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4933
4669
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4934
4670
|
* @param {*} [options] Override http request option.
|
|
4935
4671
|
* @throws {RequiredError}
|
|
4936
|
-
* @memberof StoreCollisionComponentsApi
|
|
4937
4672
|
*/
|
|
4938
4673
|
listStoredColliders(cell, options) {
|
|
4939
4674
|
return StoreCollisionComponentsApiFp(this.configuration).listStoredColliders(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4944,7 +4679,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4944
4679
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4945
4680
|
* @param {*} [options] Override http request option.
|
|
4946
4681
|
* @throws {RequiredError}
|
|
4947
|
-
* @memberof StoreCollisionComponentsApi
|
|
4948
4682
|
*/
|
|
4949
4683
|
listStoredCollidersKeys(cell, options) {
|
|
4950
4684
|
return StoreCollisionComponentsApiFp(this.configuration).listStoredCollidersKeys(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4955,7 +4689,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4955
4689
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4956
4690
|
* @param {*} [options] Override http request option.
|
|
4957
4691
|
* @throws {RequiredError}
|
|
4958
|
-
* @memberof StoreCollisionComponentsApi
|
|
4959
4692
|
*/
|
|
4960
4693
|
listStoredCollisionTools(cell, options) {
|
|
4961
4694
|
return StoreCollisionComponentsApiFp(this.configuration).listStoredCollisionTools(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4966,7 +4699,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4966
4699
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4967
4700
|
* @param {*} [options] Override http request option.
|
|
4968
4701
|
* @throws {RequiredError}
|
|
4969
|
-
* @memberof StoreCollisionComponentsApi
|
|
4970
4702
|
*/
|
|
4971
4703
|
listStoredCollisionToolsKeys(cell, options) {
|
|
4972
4704
|
return StoreCollisionComponentsApiFp(this.configuration).listStoredCollisionToolsKeys(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4979,7 +4711,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4979
4711
|
* @param {Collider} collider2
|
|
4980
4712
|
* @param {*} [options] Override http request option.
|
|
4981
4713
|
* @throws {RequiredError}
|
|
4982
|
-
* @memberof StoreCollisionComponentsApi
|
|
4983
4714
|
*/
|
|
4984
4715
|
storeCollider(cell, collider, collider2, options) {
|
|
4985
4716
|
return StoreCollisionComponentsApiFp(this.configuration).storeCollider(cell, collider, collider2, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4992,7 +4723,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
4992
4723
|
* @param {Array<{ [key: string]: Collider; }>} collider
|
|
4993
4724
|
* @param {*} [options] Override http request option.
|
|
4994
4725
|
* @throws {RequiredError}
|
|
4995
|
-
* @memberof StoreCollisionComponentsApi
|
|
4996
4726
|
*/
|
|
4997
4727
|
storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
4998
4728
|
return StoreCollisionComponentsApiFp(this.configuration).storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5005,7 +4735,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
5005
4735
|
* @param {{ [key: string]: Collider; }} requestBody
|
|
5006
4736
|
* @param {*} [options] Override http request option.
|
|
5007
4737
|
* @throws {RequiredError}
|
|
5008
|
-
* @memberof StoreCollisionComponentsApi
|
|
5009
4738
|
*/
|
|
5010
4739
|
storeCollisionTool(cell, tool, requestBody, options) {
|
|
5011
4740
|
return StoreCollisionComponentsApiFp(this.configuration).storeCollisionTool(cell, tool, requestBody, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5013,7 +4742,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
5013
4742
|
};
|
|
5014
4743
|
/**
|
|
5015
4744
|
* StoreCollisionSetupsApi - axios parameter creator
|
|
5016
|
-
* @export
|
|
5017
4745
|
*/
|
|
5018
4746
|
const StoreCollisionSetupsApiAxiosParamCreator = function(configuration) {
|
|
5019
4747
|
return {
|
|
@@ -5162,7 +4890,6 @@ const StoreCollisionSetupsApiAxiosParamCreator = function(configuration) {
|
|
|
5162
4890
|
};
|
|
5163
4891
|
/**
|
|
5164
4892
|
* StoreCollisionSetupsApi - functional programming interface
|
|
5165
|
-
* @export
|
|
5166
4893
|
*/
|
|
5167
4894
|
const StoreCollisionSetupsApiFp = function(configuration) {
|
|
5168
4895
|
const localVarAxiosParamCreator = StoreCollisionSetupsApiAxiosParamCreator(configuration);
|
|
@@ -5201,7 +4928,6 @@ const StoreCollisionSetupsApiFp = function(configuration) {
|
|
|
5201
4928
|
};
|
|
5202
4929
|
/**
|
|
5203
4930
|
* StoreCollisionSetupsApi - factory interface
|
|
5204
|
-
* @export
|
|
5205
4931
|
*/
|
|
5206
4932
|
const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$1) {
|
|
5207
4933
|
const localVarFp = StoreCollisionSetupsApiFp(configuration);
|
|
@@ -5225,9 +4951,6 @@ const StoreCollisionSetupsApiFactory = function(configuration, basePath, axios$1
|
|
|
5225
4951
|
};
|
|
5226
4952
|
/**
|
|
5227
4953
|
* StoreCollisionSetupsApi - object-oriented interface
|
|
5228
|
-
* @export
|
|
5229
|
-
* @class StoreCollisionSetupsApi
|
|
5230
|
-
* @extends {BaseAPI}
|
|
5231
4954
|
*/
|
|
5232
4955
|
var StoreCollisionSetupsApi = class extends BaseAPI {
|
|
5233
4956
|
/**
|
|
@@ -5237,7 +4960,6 @@ var StoreCollisionSetupsApi = class extends BaseAPI {
|
|
|
5237
4960
|
* @param {string} setup Identifier of the collision setup
|
|
5238
4961
|
* @param {*} [options] Override http request option.
|
|
5239
4962
|
* @throws {RequiredError}
|
|
5240
|
-
* @memberof StoreCollisionSetupsApi
|
|
5241
4963
|
*/
|
|
5242
4964
|
deleteStoredCollisionSetup(cell, setup, options) {
|
|
5243
4965
|
return StoreCollisionSetupsApiFp(this.configuration).deleteStoredCollisionSetup(cell, setup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5249,7 +4971,6 @@ var StoreCollisionSetupsApi = class extends BaseAPI {
|
|
|
5249
4971
|
* @param {string} setup Identifier of the collision setup
|
|
5250
4972
|
* @param {*} [options] Override http request option.
|
|
5251
4973
|
* @throws {RequiredError}
|
|
5252
|
-
* @memberof StoreCollisionSetupsApi
|
|
5253
4974
|
*/
|
|
5254
4975
|
getStoredCollisionSetup(cell, setup, options) {
|
|
5255
4976
|
return StoreCollisionSetupsApiFp(this.configuration).getStoredCollisionSetup(cell, setup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5260,7 +4981,6 @@ var StoreCollisionSetupsApi = class extends BaseAPI {
|
|
|
5260
4981
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5261
4982
|
* @param {*} [options] Override http request option.
|
|
5262
4983
|
* @throws {RequiredError}
|
|
5263
|
-
* @memberof StoreCollisionSetupsApi
|
|
5264
4984
|
*/
|
|
5265
4985
|
listStoredCollisionSetups(cell, options) {
|
|
5266
4986
|
return StoreCollisionSetupsApiFp(this.configuration).listStoredCollisionSetups(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5271,7 +4991,6 @@ var StoreCollisionSetupsApi = class extends BaseAPI {
|
|
|
5271
4991
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5272
4992
|
* @param {*} [options] Override http request option.
|
|
5273
4993
|
* @throws {RequiredError}
|
|
5274
|
-
* @memberof StoreCollisionSetupsApi
|
|
5275
4994
|
*/
|
|
5276
4995
|
listStoredCollisionSetupsKeys(cell, options) {
|
|
5277
4996
|
return StoreCollisionSetupsApiFp(this.configuration).listStoredCollisionSetupsKeys(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5284,7 +5003,6 @@ var StoreCollisionSetupsApi = class extends BaseAPI {
|
|
|
5284
5003
|
* @param {CollisionSetup} collisionSetup
|
|
5285
5004
|
* @param {*} [options] Override http request option.
|
|
5286
5005
|
* @throws {RequiredError}
|
|
5287
|
-
* @memberof StoreCollisionSetupsApi
|
|
5288
5006
|
*/
|
|
5289
5007
|
storeCollisionSetup(cell, setup, collisionSetup, options) {
|
|
5290
5008
|
return StoreCollisionSetupsApiFp(this.configuration).storeCollisionSetup(cell, setup, collisionSetup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5292,7 +5010,6 @@ var StoreCollisionSetupsApi = class extends BaseAPI {
|
|
|
5292
5010
|
};
|
|
5293
5011
|
/**
|
|
5294
5012
|
* StoreObjectApi - axios parameter creator
|
|
5295
|
-
* @export
|
|
5296
5013
|
*/
|
|
5297
5014
|
const StoreObjectApiAxiosParamCreator = function(configuration) {
|
|
5298
5015
|
return {
|
|
@@ -5471,7 +5188,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
|
|
|
5471
5188
|
};
|
|
5472
5189
|
/**
|
|
5473
5190
|
* StoreObjectApi - functional programming interface
|
|
5474
|
-
* @export
|
|
5475
5191
|
*/
|
|
5476
5192
|
const StoreObjectApiFp = function(configuration) {
|
|
5477
5193
|
const localVarAxiosParamCreator = StoreObjectApiAxiosParamCreator(configuration);
|
|
@@ -5516,7 +5232,6 @@ const StoreObjectApiFp = function(configuration) {
|
|
|
5516
5232
|
};
|
|
5517
5233
|
/**
|
|
5518
5234
|
* StoreObjectApi - factory interface
|
|
5519
|
-
* @export
|
|
5520
5235
|
*/
|
|
5521
5236
|
const StoreObjectApiFactory = function(configuration, basePath, axios$1) {
|
|
5522
5237
|
const localVarFp = StoreObjectApiFp(configuration);
|
|
@@ -5543,9 +5258,6 @@ const StoreObjectApiFactory = function(configuration, basePath, axios$1) {
|
|
|
5543
5258
|
};
|
|
5544
5259
|
/**
|
|
5545
5260
|
* StoreObjectApi - object-oriented interface
|
|
5546
|
-
* @export
|
|
5547
|
-
* @class StoreObjectApi
|
|
5548
|
-
* @extends {BaseAPI}
|
|
5549
5261
|
*/
|
|
5550
5262
|
var StoreObjectApi = class extends BaseAPI {
|
|
5551
5263
|
/**
|
|
@@ -5554,7 +5266,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
5554
5266
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5555
5267
|
* @param {*} [options] Override http request option.
|
|
5556
5268
|
* @throws {RequiredError}
|
|
5557
|
-
* @memberof StoreObjectApi
|
|
5558
5269
|
*/
|
|
5559
5270
|
clearAllObjects(cell, options) {
|
|
5560
5271
|
return StoreObjectApiFp(this.configuration).clearAllObjects(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5566,7 +5277,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
5566
5277
|
* @param {string} key
|
|
5567
5278
|
* @param {*} [options] Override http request option.
|
|
5568
5279
|
* @throws {RequiredError}
|
|
5569
|
-
* @memberof StoreObjectApi
|
|
5570
5280
|
*/
|
|
5571
5281
|
deleteObject(cell, key, options) {
|
|
5572
5282
|
return StoreObjectApiFp(this.configuration).deleteObject(cell, key, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5578,7 +5288,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
5578
5288
|
* @param {string} key
|
|
5579
5289
|
* @param {*} [options] Override http request option.
|
|
5580
5290
|
* @throws {RequiredError}
|
|
5581
|
-
* @memberof StoreObjectApi
|
|
5582
5291
|
*/
|
|
5583
5292
|
getObject(cell, key, options) {
|
|
5584
5293
|
return StoreObjectApiFp(this.configuration).getObject(cell, key, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5590,7 +5299,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
5590
5299
|
* @param {string} key
|
|
5591
5300
|
* @param {*} [options] Override http request option.
|
|
5592
5301
|
* @throws {RequiredError}
|
|
5593
|
-
* @memberof StoreObjectApi
|
|
5594
5302
|
*/
|
|
5595
5303
|
getObjectMetadata(cell, key, options) {
|
|
5596
5304
|
return StoreObjectApiFp(this.configuration).getObjectMetadata(cell, key, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5601,7 +5309,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
5601
5309
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5602
5310
|
* @param {*} [options] Override http request option.
|
|
5603
5311
|
* @throws {RequiredError}
|
|
5604
|
-
* @memberof StoreObjectApi
|
|
5605
5312
|
*/
|
|
5606
5313
|
listAllObjectKeys(cell, options) {
|
|
5607
5314
|
return StoreObjectApiFp(this.configuration).listAllObjectKeys(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5615,7 +5322,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
5615
5322
|
* @param {any} [anyValue]
|
|
5616
5323
|
* @param {*} [options] Override http request option.
|
|
5617
5324
|
* @throws {RequiredError}
|
|
5618
|
-
* @memberof StoreObjectApi
|
|
5619
5325
|
*/
|
|
5620
5326
|
storeObject(cell, key, xMetadata, anyValue, options) {
|
|
5621
5327
|
return StoreObjectApiFp(this.configuration).storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5623,7 +5329,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
5623
5329
|
};
|
|
5624
5330
|
/**
|
|
5625
5331
|
* SystemApi - axios parameter creator
|
|
5626
|
-
* @export
|
|
5627
5332
|
*/
|
|
5628
5333
|
const SystemApiAxiosParamCreator = function(configuration) {
|
|
5629
5334
|
return {
|
|
@@ -5870,7 +5575,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
|
|
|
5870
5575
|
};
|
|
5871
5576
|
/**
|
|
5872
5577
|
* SystemApi - functional programming interface
|
|
5873
|
-
* @export
|
|
5874
5578
|
*/
|
|
5875
5579
|
const SystemApiFp = function(configuration) {
|
|
5876
5580
|
const localVarAxiosParamCreator = SystemApiAxiosParamCreator(configuration);
|
|
@@ -5933,7 +5637,6 @@ const SystemApiFp = function(configuration) {
|
|
|
5933
5637
|
};
|
|
5934
5638
|
/**
|
|
5935
5639
|
* SystemApi - factory interface
|
|
5936
|
-
* @export
|
|
5937
5640
|
*/
|
|
5938
5641
|
const SystemApiFactory = function(configuration, basePath, axios$1) {
|
|
5939
5642
|
const localVarFp = SystemApiFp(configuration);
|
|
@@ -5969,9 +5672,6 @@ const SystemApiFactory = function(configuration, basePath, axios$1) {
|
|
|
5969
5672
|
};
|
|
5970
5673
|
/**
|
|
5971
5674
|
* SystemApi - object-oriented interface
|
|
5972
|
-
* @export
|
|
5973
|
-
* @class SystemApi
|
|
5974
|
-
* @extends {BaseAPI}
|
|
5975
5675
|
*/
|
|
5976
5676
|
var SystemApi = class extends BaseAPI {
|
|
5977
5677
|
/**
|
|
@@ -5981,7 +5681,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
5981
5681
|
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
5982
5682
|
* @param {*} [options] Override http request option.
|
|
5983
5683
|
* @throws {RequiredError}
|
|
5984
|
-
* @memberof SystemApi
|
|
5985
5684
|
*/
|
|
5986
5685
|
backupConfiguration(resources, metadata, options) {
|
|
5987
5686
|
return SystemApiFp(this.configuration).backupConfiguration(resources, metadata, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5992,7 +5691,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
5992
5691
|
* @param {ReleaseChannel} channel
|
|
5993
5692
|
* @param {*} [options] Override http request option.
|
|
5994
5693
|
* @throws {RequiredError}
|
|
5995
|
-
* @memberof SystemApi
|
|
5996
5694
|
*/
|
|
5997
5695
|
checkNovaVersionUpdate(channel, options) {
|
|
5998
5696
|
return SystemApiFp(this.configuration).checkNovaVersionUpdate(channel, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6003,7 +5701,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
6003
5701
|
* @param {string} operationId
|
|
6004
5702
|
* @param {*} [options] Override http request option.
|
|
6005
5703
|
* @throws {RequiredError}
|
|
6006
|
-
* @memberof SystemApi
|
|
6007
5704
|
*/
|
|
6008
5705
|
getConfigurationBackupStatus(operationId, options) {
|
|
6009
5706
|
return SystemApiFp(this.configuration).getConfigurationBackupStatus(operationId, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6013,7 +5710,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
6013
5710
|
* @summary Download Diagnosis Package
|
|
6014
5711
|
* @param {*} [options] Override http request option.
|
|
6015
5712
|
* @throws {RequiredError}
|
|
6016
|
-
* @memberof SystemApi
|
|
6017
5713
|
*/
|
|
6018
5714
|
getDiagnosePackage(options) {
|
|
6019
5715
|
return SystemApiFp(this.configuration).getDiagnosePackage(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6023,7 +5719,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
6023
5719
|
* @summary Wandelbots NOVA status
|
|
6024
5720
|
* @param {*} [options] Override http request option.
|
|
6025
5721
|
* @throws {RequiredError}
|
|
6026
|
-
* @memberof SystemApi
|
|
6027
5722
|
*/
|
|
6028
5723
|
getSystemStatus(options) {
|
|
6029
5724
|
return SystemApiFp(this.configuration).getSystemStatus(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6033,7 +5728,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
6033
5728
|
* @summary Wandelbots NOVA Version
|
|
6034
5729
|
* @param {*} [options] Override http request option.
|
|
6035
5730
|
* @throws {RequiredError}
|
|
6036
|
-
* @memberof SystemApi
|
|
6037
5731
|
*/
|
|
6038
5732
|
getSystemVersion(options) {
|
|
6039
5733
|
return SystemApiFp(this.configuration).getSystemVersion(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6043,7 +5737,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
6043
5737
|
* @summary List Configuration Resources
|
|
6044
5738
|
* @param {*} [options] Override http request option.
|
|
6045
5739
|
* @throws {RequiredError}
|
|
6046
|
-
* @memberof SystemApi
|
|
6047
5740
|
*/
|
|
6048
5741
|
listConfigurationResources(options) {
|
|
6049
5742
|
return SystemApiFp(this.configuration).listConfigurationResources(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6055,7 +5748,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
6055
5748
|
* @param {File} body Backup file stream containing the configuration to restore.
|
|
6056
5749
|
* @param {*} [options] Override http request option.
|
|
6057
5750
|
* @throws {RequiredError}
|
|
6058
|
-
* @memberof SystemApi
|
|
6059
5751
|
*/
|
|
6060
5752
|
restoreConfiguration(resources, body, options) {
|
|
6061
5753
|
return SystemApiFp(this.configuration).restoreConfiguration(resources, body, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6066,7 +5758,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
6066
5758
|
* @param {UpdateNovaVersionRequest} updateNovaVersionRequest
|
|
6067
5759
|
* @param {*} [options] Override http request option.
|
|
6068
5760
|
* @throws {RequiredError}
|
|
6069
|
-
* @memberof SystemApi
|
|
6070
5761
|
*/
|
|
6071
5762
|
updateNovaVersion(updateNovaVersionRequest, options) {
|
|
6072
5763
|
return SystemApiFp(this.configuration).updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6074,7 +5765,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
6074
5765
|
};
|
|
6075
5766
|
/**
|
|
6076
5767
|
* TrajectoryCachingApi - axios parameter creator
|
|
6077
|
-
* @export
|
|
6078
5768
|
*/
|
|
6079
5769
|
const TrajectoryCachingApiAxiosParamCreator = function(configuration) {
|
|
6080
5770
|
return {
|
|
@@ -6227,7 +5917,6 @@ const TrajectoryCachingApiAxiosParamCreator = function(configuration) {
|
|
|
6227
5917
|
};
|
|
6228
5918
|
/**
|
|
6229
5919
|
* TrajectoryCachingApi - functional programming interface
|
|
6230
|
-
* @export
|
|
6231
5920
|
*/
|
|
6232
5921
|
const TrajectoryCachingApiFp = function(configuration) {
|
|
6233
5922
|
const localVarAxiosParamCreator = TrajectoryCachingApiAxiosParamCreator(configuration);
|
|
@@ -6266,7 +5955,6 @@ const TrajectoryCachingApiFp = function(configuration) {
|
|
|
6266
5955
|
};
|
|
6267
5956
|
/**
|
|
6268
5957
|
* TrajectoryCachingApi - factory interface
|
|
6269
|
-
* @export
|
|
6270
5958
|
*/
|
|
6271
5959
|
const TrajectoryCachingApiFactory = function(configuration, basePath, axios$1) {
|
|
6272
5960
|
const localVarFp = TrajectoryCachingApiFp(configuration);
|
|
@@ -6290,9 +5978,6 @@ const TrajectoryCachingApiFactory = function(configuration, basePath, axios$1) {
|
|
|
6290
5978
|
};
|
|
6291
5979
|
/**
|
|
6292
5980
|
* TrajectoryCachingApi - object-oriented interface
|
|
6293
|
-
* @export
|
|
6294
|
-
* @class TrajectoryCachingApi
|
|
6295
|
-
* @extends {BaseAPI}
|
|
6296
5981
|
*/
|
|
6297
5982
|
var TrajectoryCachingApi = class extends BaseAPI {
|
|
6298
5983
|
/**
|
|
@@ -6303,7 +5988,6 @@ var TrajectoryCachingApi = class extends BaseAPI {
|
|
|
6303
5988
|
* @param {AddTrajectoryRequest} addTrajectoryRequest
|
|
6304
5989
|
* @param {*} [options] Override http request option.
|
|
6305
5990
|
* @throws {RequiredError}
|
|
6306
|
-
* @memberof TrajectoryCachingApi
|
|
6307
5991
|
*/
|
|
6308
5992
|
addTrajectory(cell, controller, addTrajectoryRequest, options) {
|
|
6309
5993
|
return TrajectoryCachingApiFp(this.configuration).addTrajectory(cell, controller, addTrajectoryRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6315,7 +5999,6 @@ var TrajectoryCachingApi = class extends BaseAPI {
|
|
|
6315
5999
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
6316
6000
|
* @param {*} [options] Override http request option.
|
|
6317
6001
|
* @throws {RequiredError}
|
|
6318
|
-
* @memberof TrajectoryCachingApi
|
|
6319
6002
|
*/
|
|
6320
6003
|
clearTrajectories(cell, controller, options) {
|
|
6321
6004
|
return TrajectoryCachingApiFp(this.configuration).clearTrajectories(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6328,7 +6011,6 @@ var TrajectoryCachingApi = class extends BaseAPI {
|
|
|
6328
6011
|
* @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
6012
|
* @param {*} [options] Override http request option.
|
|
6330
6013
|
* @throws {RequiredError}
|
|
6331
|
-
* @memberof TrajectoryCachingApi
|
|
6332
6014
|
*/
|
|
6333
6015
|
deleteTrajectory(cell, controller, trajectory, options) {
|
|
6334
6016
|
return TrajectoryCachingApiFp(this.configuration).deleteTrajectory(cell, controller, trajectory, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6341,7 +6023,6 @@ var TrajectoryCachingApi = class extends BaseAPI {
|
|
|
6341
6023
|
* @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
6024
|
* @param {*} [options] Override http request option.
|
|
6343
6025
|
* @throws {RequiredError}
|
|
6344
|
-
* @memberof TrajectoryCachingApi
|
|
6345
6026
|
*/
|
|
6346
6027
|
getTrajectory(cell, controller, trajectory, options) {
|
|
6347
6028
|
return TrajectoryCachingApiFp(this.configuration).getTrajectory(cell, controller, trajectory, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6353,7 +6034,6 @@ var TrajectoryCachingApi = class extends BaseAPI {
|
|
|
6353
6034
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
6354
6035
|
* @param {*} [options] Override http request option.
|
|
6355
6036
|
* @throws {RequiredError}
|
|
6356
|
-
* @memberof TrajectoryCachingApi
|
|
6357
6037
|
*/
|
|
6358
6038
|
listTrajectories(cell, controller, options) {
|
|
6359
6039
|
return TrajectoryCachingApiFp(this.configuration).listTrajectories(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6361,7 +6041,6 @@ var TrajectoryCachingApi = class extends BaseAPI {
|
|
|
6361
6041
|
};
|
|
6362
6042
|
/**
|
|
6363
6043
|
* TrajectoryExecutionApi - axios parameter creator
|
|
6364
|
-
* @export
|
|
6365
6044
|
*/
|
|
6366
6045
|
const TrajectoryExecutionApiAxiosParamCreator = function(configuration) {
|
|
6367
6046
|
return { executeTrajectory: async (cell, controller, executeTrajectoryRequest, options = {}) => {
|
|
@@ -6398,7 +6077,6 @@ const TrajectoryExecutionApiAxiosParamCreator = function(configuration) {
|
|
|
6398
6077
|
};
|
|
6399
6078
|
/**
|
|
6400
6079
|
* TrajectoryExecutionApi - functional programming interface
|
|
6401
|
-
* @export
|
|
6402
6080
|
*/
|
|
6403
6081
|
const TrajectoryExecutionApiFp = function(configuration) {
|
|
6404
6082
|
const localVarAxiosParamCreator = TrajectoryExecutionApiAxiosParamCreator(configuration);
|
|
@@ -6411,7 +6089,6 @@ const TrajectoryExecutionApiFp = function(configuration) {
|
|
|
6411
6089
|
};
|
|
6412
6090
|
/**
|
|
6413
6091
|
* TrajectoryExecutionApi - factory interface
|
|
6414
|
-
* @export
|
|
6415
6092
|
*/
|
|
6416
6093
|
const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$1) {
|
|
6417
6094
|
const localVarFp = TrajectoryExecutionApiFp(configuration);
|
|
@@ -6421,9 +6098,6 @@ const TrajectoryExecutionApiFactory = function(configuration, basePath, axios$1)
|
|
|
6421
6098
|
};
|
|
6422
6099
|
/**
|
|
6423
6100
|
* TrajectoryExecutionApi - object-oriented interface
|
|
6424
|
-
* @export
|
|
6425
|
-
* @class TrajectoryExecutionApi
|
|
6426
|
-
* @extends {BaseAPI}
|
|
6427
6101
|
*/
|
|
6428
6102
|
var TrajectoryExecutionApi = class extends BaseAPI {
|
|
6429
6103
|
/**
|
|
@@ -6434,7 +6108,6 @@ var TrajectoryExecutionApi = class extends BaseAPI {
|
|
|
6434
6108
|
* @param {ExecuteTrajectoryRequest} executeTrajectoryRequest
|
|
6435
6109
|
* @param {*} [options] Override http request option.
|
|
6436
6110
|
* @throws {RequiredError}
|
|
6437
|
-
* @memberof TrajectoryExecutionApi
|
|
6438
6111
|
*/
|
|
6439
6112
|
executeTrajectory(cell, controller, executeTrajectoryRequest, options) {
|
|
6440
6113
|
return TrajectoryExecutionApiFp(this.configuration).executeTrajectory(cell, controller, executeTrajectoryRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6442,7 +6115,6 @@ var TrajectoryExecutionApi = class extends BaseAPI {
|
|
|
6442
6115
|
};
|
|
6443
6116
|
/**
|
|
6444
6117
|
* TrajectoryPlanningApi - axios parameter creator
|
|
6445
|
-
* @export
|
|
6446
6118
|
*/
|
|
6447
6119
|
const TrajectoryPlanningApiAxiosParamCreator = function(configuration) {
|
|
6448
6120
|
return {
|
|
@@ -6510,7 +6182,6 @@ const TrajectoryPlanningApiAxiosParamCreator = function(configuration) {
|
|
|
6510
6182
|
};
|
|
6511
6183
|
/**
|
|
6512
6184
|
* TrajectoryPlanningApi - functional programming interface
|
|
6513
|
-
* @export
|
|
6514
6185
|
*/
|
|
6515
6186
|
const TrajectoryPlanningApiFp = function(configuration) {
|
|
6516
6187
|
const localVarAxiosParamCreator = TrajectoryPlanningApiAxiosParamCreator(configuration);
|
|
@@ -6531,7 +6202,6 @@ const TrajectoryPlanningApiFp = function(configuration) {
|
|
|
6531
6202
|
};
|
|
6532
6203
|
/**
|
|
6533
6204
|
* TrajectoryPlanningApi - factory interface
|
|
6534
|
-
* @export
|
|
6535
6205
|
*/
|
|
6536
6206
|
const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$1) {
|
|
6537
6207
|
const localVarFp = TrajectoryPlanningApiFp(configuration);
|
|
@@ -6546,9 +6216,6 @@ const TrajectoryPlanningApiFactory = function(configuration, basePath, axios$1)
|
|
|
6546
6216
|
};
|
|
6547
6217
|
/**
|
|
6548
6218
|
* TrajectoryPlanningApi - object-oriented interface
|
|
6549
|
-
* @export
|
|
6550
|
-
* @class TrajectoryPlanningApi
|
|
6551
|
-
* @extends {BaseAPI}
|
|
6552
6219
|
*/
|
|
6553
6220
|
var TrajectoryPlanningApi = class extends BaseAPI {
|
|
6554
6221
|
/**
|
|
@@ -6558,7 +6225,6 @@ var TrajectoryPlanningApi = class extends BaseAPI {
|
|
|
6558
6225
|
* @param {PlanCollisionFreeRequest} planCollisionFreeRequest
|
|
6559
6226
|
* @param {*} [options] Override http request option.
|
|
6560
6227
|
* @throws {RequiredError}
|
|
6561
|
-
* @memberof TrajectoryPlanningApi
|
|
6562
6228
|
*/
|
|
6563
6229
|
planCollisionFree(cell, planCollisionFreeRequest, options) {
|
|
6564
6230
|
return TrajectoryPlanningApiFp(this.configuration).planCollisionFree(cell, planCollisionFreeRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6570,15 +6236,78 @@ var TrajectoryPlanningApi = class extends BaseAPI {
|
|
|
6570
6236
|
* @param {PlanTrajectoryRequest} planTrajectoryRequest
|
|
6571
6237
|
* @param {*} [options] Override http request option.
|
|
6572
6238
|
* @throws {RequiredError}
|
|
6573
|
-
* @memberof TrajectoryPlanningApi
|
|
6574
6239
|
*/
|
|
6575
6240
|
planTrajectory(cell, planTrajectoryRequest, options) {
|
|
6576
6241
|
return TrajectoryPlanningApiFp(this.configuration).planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(this.axios, this.basePath));
|
|
6577
6242
|
}
|
|
6578
6243
|
};
|
|
6579
6244
|
/**
|
|
6245
|
+
* VersionApi - axios parameter creator
|
|
6246
|
+
*/
|
|
6247
|
+
const VersionApiAxiosParamCreator = function(configuration) {
|
|
6248
|
+
return { getApiVersion: async (options = {}) => {
|
|
6249
|
+
const localVarUrlObj = new URL(`/version`, DUMMY_BASE_URL);
|
|
6250
|
+
let baseOptions;
|
|
6251
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
6252
|
+
const localVarRequestOptions = {
|
|
6253
|
+
method: "GET",
|
|
6254
|
+
...baseOptions,
|
|
6255
|
+
...options
|
|
6256
|
+
};
|
|
6257
|
+
const localVarHeaderParameter = {};
|
|
6258
|
+
const localVarQueryParameter = {};
|
|
6259
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
6260
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
6261
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6262
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6263
|
+
localVarRequestOptions.headers = {
|
|
6264
|
+
...localVarHeaderParameter,
|
|
6265
|
+
...headersFromBaseOptions,
|
|
6266
|
+
...options.headers
|
|
6267
|
+
};
|
|
6268
|
+
return {
|
|
6269
|
+
url: toPathString(localVarUrlObj),
|
|
6270
|
+
options: localVarRequestOptions
|
|
6271
|
+
};
|
|
6272
|
+
} };
|
|
6273
|
+
};
|
|
6274
|
+
/**
|
|
6275
|
+
* VersionApi - functional programming interface
|
|
6276
|
+
*/
|
|
6277
|
+
const VersionApiFp = function(configuration) {
|
|
6278
|
+
const localVarAxiosParamCreator = VersionApiAxiosParamCreator(configuration);
|
|
6279
|
+
return { async getApiVersion(options) {
|
|
6280
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getApiVersion(options);
|
|
6281
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6282
|
+
const localVarOperationServerBasePath = operationServerMap["VersionApi.getApiVersion"]?.[localVarOperationServerIndex]?.url;
|
|
6283
|
+
return (axios$1, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$1, localVarOperationServerBasePath || basePath);
|
|
6284
|
+
} };
|
|
6285
|
+
};
|
|
6286
|
+
/**
|
|
6287
|
+
* VersionApi - factory interface
|
|
6288
|
+
*/
|
|
6289
|
+
const VersionApiFactory = function(configuration, basePath, axios$1) {
|
|
6290
|
+
const localVarFp = VersionApiFp(configuration);
|
|
6291
|
+
return { getApiVersion(options) {
|
|
6292
|
+
return localVarFp.getApiVersion(options).then((request) => request(axios$1, basePath));
|
|
6293
|
+
} };
|
|
6294
|
+
};
|
|
6295
|
+
/**
|
|
6296
|
+
* VersionApi - object-oriented interface
|
|
6297
|
+
*/
|
|
6298
|
+
var VersionApi = class extends BaseAPI {
|
|
6299
|
+
/**
|
|
6300
|
+
* Retrieves the version of the NOVA API.
|
|
6301
|
+
* @summary API Version
|
|
6302
|
+
* @param {*} [options] Override http request option.
|
|
6303
|
+
* @throws {RequiredError}
|
|
6304
|
+
*/
|
|
6305
|
+
getApiVersion(options) {
|
|
6306
|
+
return VersionApiFp(this.configuration).getApiVersion(options).then((request) => request(this.axios, this.basePath));
|
|
6307
|
+
}
|
|
6308
|
+
};
|
|
6309
|
+
/**
|
|
6580
6310
|
* VirtualControllerApi - axios parameter creator
|
|
6581
|
-
* @export
|
|
6582
6311
|
*/
|
|
6583
6312
|
const VirtualControllerApiAxiosParamCreator = function(configuration) {
|
|
6584
6313
|
return {
|
|
@@ -7033,7 +6762,6 @@ const VirtualControllerApiAxiosParamCreator = function(configuration) {
|
|
|
7033
6762
|
};
|
|
7034
6763
|
/**
|
|
7035
6764
|
* VirtualControllerApi - functional programming interface
|
|
7036
|
-
* @export
|
|
7037
6765
|
*/
|
|
7038
6766
|
const VirtualControllerApiFp = function(configuration) {
|
|
7039
6767
|
const localVarAxiosParamCreator = VirtualControllerApiAxiosParamCreator(configuration);
|
|
@@ -7132,7 +6860,6 @@ const VirtualControllerApiFp = function(configuration) {
|
|
|
7132
6860
|
};
|
|
7133
6861
|
/**
|
|
7134
6862
|
* VirtualControllerApi - factory interface
|
|
7135
|
-
* @export
|
|
7136
6863
|
*/
|
|
7137
6864
|
const VirtualControllerApiFactory = function(configuration, basePath, axios$1) {
|
|
7138
6865
|
const localVarFp = VirtualControllerApiFp(configuration);
|
|
@@ -7186,9 +6913,6 @@ const VirtualControllerApiFactory = function(configuration, basePath, axios$1) {
|
|
|
7186
6913
|
};
|
|
7187
6914
|
/**
|
|
7188
6915
|
* VirtualControllerApi - object-oriented interface
|
|
7189
|
-
* @export
|
|
7190
|
-
* @class VirtualControllerApi
|
|
7191
|
-
* @extends {BaseAPI}
|
|
7192
6916
|
*/
|
|
7193
6917
|
var VirtualControllerApi = class extends BaseAPI {
|
|
7194
6918
|
/**
|
|
@@ -7200,7 +6924,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7200
6924
|
* @param {CoordinateSystemData} coordinateSystemData
|
|
7201
6925
|
* @param {*} [options] Override http request option.
|
|
7202
6926
|
* @throws {RequiredError}
|
|
7203
|
-
* @memberof VirtualControllerApi
|
|
7204
6927
|
*/
|
|
7205
6928
|
addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options) {
|
|
7206
6929
|
return VirtualControllerApiFp(this.configuration).addVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7215,7 +6938,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7215
6938
|
* @param {RobotTcpData} robotTcpData
|
|
7216
6939
|
* @param {*} [options] Override http request option.
|
|
7217
6940
|
* @throws {RequiredError}
|
|
7218
|
-
* @memberof VirtualControllerApi
|
|
7219
6941
|
*/
|
|
7220
6942
|
addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options) {
|
|
7221
6943
|
return VirtualControllerApiFp(this.configuration).addVirtualControllerTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7229,7 +6951,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7229
6951
|
* @param {boolean} [deleteDependent] If true, all dependent coordinate systems will be deleted as well.
|
|
7230
6952
|
* @param {*} [options] Override http request option.
|
|
7231
6953
|
* @throws {RequiredError}
|
|
7232
|
-
* @memberof VirtualControllerApi
|
|
7233
6954
|
*/
|
|
7234
6955
|
deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
7235
6956
|
return VirtualControllerApiFp(this.configuration).deleteVirtualControllerCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7243,7 +6964,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7243
6964
|
* @param {string} tcp The unique identifier of a TCP.
|
|
7244
6965
|
* @param {*} [options] Override http request option.
|
|
7245
6966
|
* @throws {RequiredError}
|
|
7246
|
-
* @memberof VirtualControllerApi
|
|
7247
6967
|
*/
|
|
7248
6968
|
deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options) {
|
|
7249
6969
|
return VirtualControllerApiFp(this.configuration).deleteVirtualControllerTcp(cell, controller, motionGroup, tcp, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7255,7 +6975,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7255
6975
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7256
6976
|
* @param {*} [options] Override http request option.
|
|
7257
6977
|
* @throws {RequiredError}
|
|
7258
|
-
* @memberof VirtualControllerApi
|
|
7259
6978
|
*/
|
|
7260
6979
|
getEmergencyStop(cell, controller, options) {
|
|
7261
6980
|
return VirtualControllerApiFp(this.configuration).getEmergencyStop(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7268,7 +6987,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7268
6987
|
* @param {string} motionGroup The motion-group identifier.
|
|
7269
6988
|
* @param {*} [options] Override http request option.
|
|
7270
6989
|
* @throws {RequiredError}
|
|
7271
|
-
* @memberof VirtualControllerApi
|
|
7272
6990
|
*/
|
|
7273
6991
|
getMotionGroupState(cell, controller, motionGroup, options) {
|
|
7274
6992
|
return VirtualControllerApiFp(this.configuration).getMotionGroupState(cell, controller, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7280,7 +6998,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7280
6998
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7281
6999
|
* @param {*} [options] Override http request option.
|
|
7282
7000
|
* @throws {RequiredError}
|
|
7283
|
-
* @memberof VirtualControllerApi
|
|
7284
7001
|
*/
|
|
7285
7002
|
getMotionGroups(cell, controller, options) {
|
|
7286
7003
|
return VirtualControllerApiFp(this.configuration).getMotionGroups(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7292,7 +7009,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7292
7009
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7293
7010
|
* @param {*} [options] Override http request option.
|
|
7294
7011
|
* @throws {RequiredError}
|
|
7295
|
-
* @memberof VirtualControllerApi
|
|
7296
7012
|
*/
|
|
7297
7013
|
getOperationMode(cell, controller, options) {
|
|
7298
7014
|
return VirtualControllerApiFp(this.configuration).getOperationMode(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7305,7 +7021,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7305
7021
|
* @param {string} motionGroup The motion-group identifier.
|
|
7306
7022
|
* @param {*} [options] Override http request option.
|
|
7307
7023
|
* @throws {RequiredError}
|
|
7308
|
-
* @memberof VirtualControllerApi
|
|
7309
7024
|
*/
|
|
7310
7025
|
getVirtualControllerMounting(cell, controller, motionGroup, options) {
|
|
7311
7026
|
return VirtualControllerApiFp(this.configuration).getVirtualControllerMounting(cell, controller, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7317,7 +7032,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7317
7032
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7318
7033
|
* @param {*} [options] Override http request option.
|
|
7319
7034
|
* @throws {RequiredError}
|
|
7320
|
-
* @memberof VirtualControllerApi
|
|
7321
7035
|
*/
|
|
7322
7036
|
listVirtualControllerCoordinateSystems(cell, controller, options) {
|
|
7323
7037
|
return VirtualControllerApiFp(this.configuration).listVirtualControllerCoordinateSystems(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7330,7 +7044,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7330
7044
|
* @param {string} motionGroup The motion-group identifier.
|
|
7331
7045
|
* @param {*} [options] Override http request option.
|
|
7332
7046
|
* @throws {RequiredError}
|
|
7333
|
-
* @memberof VirtualControllerApi
|
|
7334
7047
|
*/
|
|
7335
7048
|
listVirtualControllerTcps(cell, controller, motionGroup, options) {
|
|
7336
7049
|
return VirtualControllerApiFp(this.configuration).listVirtualControllerTcps(cell, controller, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7343,7 +7056,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7343
7056
|
* @param {boolean} [active]
|
|
7344
7057
|
* @param {*} [options] Override http request option.
|
|
7345
7058
|
* @throws {RequiredError}
|
|
7346
|
-
* @memberof VirtualControllerApi
|
|
7347
7059
|
*/
|
|
7348
7060
|
setEmergencyStop(cell, controller, active, options) {
|
|
7349
7061
|
return VirtualControllerApiFp(this.configuration).setEmergencyStop(cell, controller, active, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7357,7 +7069,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7357
7069
|
* @param {MotionGroupJoints} motionGroupJoints
|
|
7358
7070
|
* @param {*} [options] Override http request option.
|
|
7359
7071
|
* @throws {RequiredError}
|
|
7360
|
-
* @memberof VirtualControllerApi
|
|
7361
7072
|
*/
|
|
7362
7073
|
setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options) {
|
|
7363
7074
|
return VirtualControllerApiFp(this.configuration).setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7370,7 +7081,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7370
7081
|
* @param {OperationMode} mode
|
|
7371
7082
|
* @param {*} [options] Override http request option.
|
|
7372
7083
|
* @throws {RequiredError}
|
|
7373
|
-
* @memberof VirtualControllerApi
|
|
7374
7084
|
*/
|
|
7375
7085
|
setOperationMode(cell, controller, mode, options) {
|
|
7376
7086
|
return VirtualControllerApiFp(this.configuration).setOperationMode(cell, controller, mode, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7384,7 +7094,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7384
7094
|
* @param {CoordinateSystem} coordinateSystem
|
|
7385
7095
|
* @param {*} [options] Override http request option.
|
|
7386
7096
|
* @throws {RequiredError}
|
|
7387
|
-
* @memberof VirtualControllerApi
|
|
7388
7097
|
*/
|
|
7389
7098
|
setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options) {
|
|
7390
7099
|
return VirtualControllerApiFp(this.configuration).setVirtualControllerMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7392,7 +7101,6 @@ var VirtualControllerApi = class extends BaseAPI {
|
|
|
7392
7101
|
};
|
|
7393
7102
|
/**
|
|
7394
7103
|
* VirtualControllerBehaviorApi - axios parameter creator
|
|
7395
|
-
* @export
|
|
7396
7104
|
*/
|
|
7397
7105
|
const VirtualControllerBehaviorApiAxiosParamCreator = function(configuration) {
|
|
7398
7106
|
return {
|
|
@@ -7516,7 +7224,6 @@ const VirtualControllerBehaviorApiAxiosParamCreator = function(configuration) {
|
|
|
7516
7224
|
};
|
|
7517
7225
|
/**
|
|
7518
7226
|
* VirtualControllerBehaviorApi - functional programming interface
|
|
7519
|
-
* @export
|
|
7520
7227
|
*/
|
|
7521
7228
|
const VirtualControllerBehaviorApiFp = function(configuration) {
|
|
7522
7229
|
const localVarAxiosParamCreator = VirtualControllerBehaviorApiAxiosParamCreator(configuration);
|
|
@@ -7549,7 +7256,6 @@ const VirtualControllerBehaviorApiFp = function(configuration) {
|
|
|
7549
7256
|
};
|
|
7550
7257
|
/**
|
|
7551
7258
|
* VirtualControllerBehaviorApi - factory interface
|
|
7552
|
-
* @export
|
|
7553
7259
|
*/
|
|
7554
7260
|
const VirtualControllerBehaviorApiFactory = function(configuration, basePath, axios$1) {
|
|
7555
7261
|
const localVarFp = VirtualControllerBehaviorApiFp(configuration);
|
|
@@ -7570,9 +7276,6 @@ const VirtualControllerBehaviorApiFactory = function(configuration, basePath, ax
|
|
|
7570
7276
|
};
|
|
7571
7277
|
/**
|
|
7572
7278
|
* VirtualControllerBehaviorApi - object-oriented interface
|
|
7573
|
-
* @export
|
|
7574
|
-
* @class VirtualControllerBehaviorApi
|
|
7575
|
-
* @extends {BaseAPI}
|
|
7576
7279
|
*/
|
|
7577
7280
|
var VirtualControllerBehaviorApi = class extends BaseAPI {
|
|
7578
7281
|
/**
|
|
@@ -7583,7 +7286,6 @@ var VirtualControllerBehaviorApi = class extends BaseAPI {
|
|
|
7583
7286
|
* @param {ExternalJointStreamRequest} externalJointStreamRequest
|
|
7584
7287
|
* @param {*} [options] Override http request option.
|
|
7585
7288
|
* @throws {RequiredError}
|
|
7586
|
-
* @memberof VirtualControllerBehaviorApi
|
|
7587
7289
|
*/
|
|
7588
7290
|
externalJointsStream(cell, controller, externalJointStreamRequest, options) {
|
|
7589
7291
|
return VirtualControllerBehaviorApiFp(this.configuration).externalJointsStream(cell, controller, externalJointStreamRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7595,7 +7297,6 @@ var VirtualControllerBehaviorApi = class extends BaseAPI {
|
|
|
7595
7297
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7596
7298
|
* @param {*} [options] Override http request option.
|
|
7597
7299
|
* @throws {RequiredError}
|
|
7598
|
-
* @memberof VirtualControllerBehaviorApi
|
|
7599
7300
|
*/
|
|
7600
7301
|
getCycleTime(cell, controller, options) {
|
|
7601
7302
|
return VirtualControllerBehaviorApiFp(this.configuration).getCycleTime(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7607,7 +7308,6 @@ var VirtualControllerBehaviorApi = class extends BaseAPI {
|
|
|
7607
7308
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7608
7309
|
* @param {*} [options] Override http request option.
|
|
7609
7310
|
* @throws {RequiredError}
|
|
7610
|
-
* @memberof VirtualControllerBehaviorApi
|
|
7611
7311
|
*/
|
|
7612
7312
|
getVirtualControllerBehavior(cell, controller, options) {
|
|
7613
7313
|
return VirtualControllerBehaviorApiFp(this.configuration).getVirtualControllerBehavior(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7620,7 +7320,6 @@ var VirtualControllerBehaviorApi = class extends BaseAPI {
|
|
|
7620
7320
|
* @param {Behavior} [behavior]
|
|
7621
7321
|
* @param {*} [options] Override http request option.
|
|
7622
7322
|
* @throws {RequiredError}
|
|
7623
|
-
* @memberof VirtualControllerBehaviorApi
|
|
7624
7323
|
*/
|
|
7625
7324
|
setVirtualControllerBehavior(cell, controller, behavior, options) {
|
|
7626
7325
|
return VirtualControllerBehaviorApiFp(this.configuration).setVirtualControllerBehavior(cell, controller, behavior, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7628,7 +7327,6 @@ var VirtualControllerBehaviorApi = class extends BaseAPI {
|
|
|
7628
7327
|
};
|
|
7629
7328
|
/**
|
|
7630
7329
|
* VirtualControllerInputsOutputsApi - axios parameter creator
|
|
7631
|
-
* @export
|
|
7632
7330
|
*/
|
|
7633
7331
|
const VirtualControllerInputsOutputsApiAxiosParamCreator = function(configuration) {
|
|
7634
7332
|
return {
|
|
@@ -7729,7 +7427,6 @@ const VirtualControllerInputsOutputsApiAxiosParamCreator = function(configuratio
|
|
|
7729
7427
|
};
|
|
7730
7428
|
/**
|
|
7731
7429
|
* VirtualControllerInputsOutputsApi - functional programming interface
|
|
7732
|
-
* @export
|
|
7733
7430
|
*/
|
|
7734
7431
|
const VirtualControllerInputsOutputsApiFp = function(configuration) {
|
|
7735
7432
|
const localVarAxiosParamCreator = VirtualControllerInputsOutputsApiAxiosParamCreator(configuration);
|
|
@@ -7756,7 +7453,6 @@ const VirtualControllerInputsOutputsApiFp = function(configuration) {
|
|
|
7756
7453
|
};
|
|
7757
7454
|
/**
|
|
7758
7455
|
* VirtualControllerInputsOutputsApi - factory interface
|
|
7759
|
-
* @export
|
|
7760
7456
|
*/
|
|
7761
7457
|
const VirtualControllerInputsOutputsApiFactory = function(configuration, basePath, axios$1) {
|
|
7762
7458
|
const localVarFp = VirtualControllerInputsOutputsApiFp(configuration);
|
|
@@ -7774,9 +7470,6 @@ const VirtualControllerInputsOutputsApiFactory = function(configuration, basePat
|
|
|
7774
7470
|
};
|
|
7775
7471
|
/**
|
|
7776
7472
|
* VirtualControllerInputsOutputsApi - object-oriented interface
|
|
7777
|
-
* @export
|
|
7778
|
-
* @class VirtualControllerInputsOutputsApi
|
|
7779
|
-
* @extends {BaseAPI}
|
|
7780
7473
|
*/
|
|
7781
7474
|
var VirtualControllerInputsOutputsApi = class extends BaseAPI {
|
|
7782
7475
|
/**
|
|
@@ -7787,7 +7480,6 @@ var VirtualControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
7787
7480
|
* @param {Array<string>} ios
|
|
7788
7481
|
* @param {*} [options] Override http request option.
|
|
7789
7482
|
* @throws {RequiredError}
|
|
7790
|
-
* @memberof VirtualControllerInputsOutputsApi
|
|
7791
7483
|
*/
|
|
7792
7484
|
listIOs(cell, controller, ios, options) {
|
|
7793
7485
|
return VirtualControllerInputsOutputsApiFp(this.configuration).listIOs(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7803,7 +7495,6 @@ var VirtualControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
7803
7495
|
* @param {string} [group] Return only inputs/outputs from the specified group.
|
|
7804
7496
|
* @param {*} [options] Override http request option.
|
|
7805
7497
|
* @throws {RequiredError}
|
|
7806
|
-
* @memberof VirtualControllerInputsOutputsApi
|
|
7807
7498
|
*/
|
|
7808
7499
|
listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options) {
|
|
7809
7500
|
return VirtualControllerInputsOutputsApiFp(this.configuration).listVirtualControllerIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7816,7 +7507,6 @@ var VirtualControllerInputsOutputsApi = class extends BaseAPI {
|
|
|
7816
7507
|
* @param {Array<IOValue>} iOValue
|
|
7817
7508
|
* @param {*} [options] Override http request option.
|
|
7818
7509
|
* @throws {RequiredError}
|
|
7819
|
-
* @memberof VirtualControllerInputsOutputsApi
|
|
7820
7510
|
*/
|
|
7821
7511
|
setIOValues(cell, controller, iOValue, options) {
|
|
7822
7512
|
return VirtualControllerInputsOutputsApiFp(this.configuration).setIOValues(cell, controller, iOValue, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7833,7 +7523,6 @@ var Configuration = class {
|
|
|
7833
7523
|
/**
|
|
7834
7524
|
* parameter for apiKey security
|
|
7835
7525
|
* @param name security name
|
|
7836
|
-
* @memberof Configuration
|
|
7837
7526
|
*/
|
|
7838
7527
|
"apiKey",
|
|
7839
7528
|
void 0
|
|
@@ -7842,9 +7531,6 @@ var Configuration = class {
|
|
|
7842
7531
|
this,
|
|
7843
7532
|
/**
|
|
7844
7533
|
* parameter for basic security
|
|
7845
|
-
*
|
|
7846
|
-
* @type {string}
|
|
7847
|
-
* @memberof Configuration
|
|
7848
7534
|
*/
|
|
7849
7535
|
"username",
|
|
7850
7536
|
void 0
|
|
@@ -7853,9 +7539,6 @@ var Configuration = class {
|
|
|
7853
7539
|
this,
|
|
7854
7540
|
/**
|
|
7855
7541
|
* parameter for basic security
|
|
7856
|
-
*
|
|
7857
|
-
* @type {string}
|
|
7858
|
-
* @memberof Configuration
|
|
7859
7542
|
*/
|
|
7860
7543
|
"password",
|
|
7861
7544
|
void 0
|
|
@@ -7866,7 +7549,6 @@ var Configuration = class {
|
|
|
7866
7549
|
* parameter for oauth2 security
|
|
7867
7550
|
* @param name security name
|
|
7868
7551
|
* @param scopes oauth2 scope
|
|
7869
|
-
* @memberof Configuration
|
|
7870
7552
|
*/
|
|
7871
7553
|
"accessToken",
|
|
7872
7554
|
void 0
|
|
@@ -7874,11 +7556,23 @@ var Configuration = class {
|
|
|
7874
7556
|
(0, import_defineProperty.default)(
|
|
7875
7557
|
this,
|
|
7876
7558
|
/**
|
|
7877
|
-
*
|
|
7878
|
-
*
|
|
7879
|
-
* @
|
|
7559
|
+
* parameter for aws4 signature security
|
|
7560
|
+
* @param {Object} AWS4Signature - AWS4 Signature security
|
|
7561
|
+
* @param {string} options.region - aws region
|
|
7562
|
+
* @param {string} options.service - name of the service.
|
|
7563
|
+
* @param {string} credentials.accessKeyId - aws access key id
|
|
7564
|
+
* @param {string} credentials.secretAccessKey - aws access key
|
|
7565
|
+
* @param {string} credentials.sessionToken - aws session token
|
|
7880
7566
|
* @memberof Configuration
|
|
7881
7567
|
*/
|
|
7568
|
+
"awsv4",
|
|
7569
|
+
void 0
|
|
7570
|
+
);
|
|
7571
|
+
(0, import_defineProperty.default)(
|
|
7572
|
+
this,
|
|
7573
|
+
/**
|
|
7574
|
+
* override base path
|
|
7575
|
+
*/
|
|
7882
7576
|
"basePath",
|
|
7883
7577
|
void 0
|
|
7884
7578
|
);
|
|
@@ -7886,9 +7580,6 @@ var Configuration = class {
|
|
|
7886
7580
|
this,
|
|
7887
7581
|
/**
|
|
7888
7582
|
* override server index
|
|
7889
|
-
*
|
|
7890
|
-
* @type {number}
|
|
7891
|
-
* @memberof Configuration
|
|
7892
7583
|
*/
|
|
7893
7584
|
"serverIndex",
|
|
7894
7585
|
void 0
|
|
@@ -7897,9 +7588,6 @@ var Configuration = class {
|
|
|
7897
7588
|
this,
|
|
7898
7589
|
/**
|
|
7899
7590
|
* base options for axios calls
|
|
7900
|
-
*
|
|
7901
|
-
* @type {any}
|
|
7902
|
-
* @memberof Configuration
|
|
7903
7591
|
*/
|
|
7904
7592
|
"baseOptions",
|
|
7905
7593
|
void 0
|
|
@@ -7920,14 +7608,12 @@ var Configuration = class {
|
|
|
7920
7608
|
this.username = param.username;
|
|
7921
7609
|
this.password = param.password;
|
|
7922
7610
|
this.accessToken = param.accessToken;
|
|
7611
|
+
this.awsv4 = param.awsv4;
|
|
7923
7612
|
this.basePath = param.basePath;
|
|
7924
7613
|
this.serverIndex = param.serverIndex;
|
|
7925
7614
|
this.baseOptions = {
|
|
7926
|
-
|
|
7927
|
-
|
|
7928
|
-
"User-Agent": "OpenAPI-Generator/typescript-axios"
|
|
7929
|
-
},
|
|
7930
|
-
...param.baseOptions
|
|
7615
|
+
...param.baseOptions,
|
|
7616
|
+
headers: { ...param.baseOptions?.headers }
|
|
7931
7617
|
};
|
|
7932
7618
|
this.formDataCtor = param.formDataCtor;
|
|
7933
7619
|
}
|
|
@@ -8128,6 +7814,10 @@ exports.TrajectoryRunningKindEnum = TrajectoryRunningKindEnum;
|
|
|
8128
7814
|
exports.TrajectoryWaitForIOKindEnum = TrajectoryWaitForIOKindEnum;
|
|
8129
7815
|
exports.UnitType = UnitType;
|
|
8130
7816
|
exports.UniversalrobotsControllerKindEnum = UniversalrobotsControllerKindEnum;
|
|
7817
|
+
exports.VersionApi = VersionApi;
|
|
7818
|
+
exports.VersionApiAxiosParamCreator = VersionApiAxiosParamCreator;
|
|
7819
|
+
exports.VersionApiFactory = VersionApiFactory;
|
|
7820
|
+
exports.VersionApiFp = VersionApiFp;
|
|
8131
7821
|
exports.VirtualControllerApi = VirtualControllerApi;
|
|
8132
7822
|
exports.VirtualControllerApiAxiosParamCreator = VirtualControllerApiAxiosParamCreator;
|
|
8133
7823
|
exports.VirtualControllerApiFactory = VirtualControllerApiFactory;
|