@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/v1/index.js
CHANGED
|
@@ -3,21 +3,12 @@ import globalAxios from "axios";
|
|
|
3
3
|
|
|
4
4
|
//#region v1/base.ts
|
|
5
5
|
const BASE_PATH = "/api/v1".replace(/\/+$/, "");
|
|
6
|
-
/**
|
|
7
|
-
*
|
|
8
|
-
* @export
|
|
9
|
-
*/
|
|
10
6
|
const COLLECTION_FORMATS = {
|
|
11
7
|
csv: ",",
|
|
12
8
|
ssv: " ",
|
|
13
9
|
tsv: " ",
|
|
14
10
|
pipes: "|"
|
|
15
11
|
};
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
* @class BaseAPI
|
|
20
|
-
*/
|
|
21
12
|
var BaseAPI = class {
|
|
22
13
|
constructor(configuration, basePath = BASE_PATH, axios = globalAxios) {
|
|
23
14
|
this.basePath = basePath;
|
|
@@ -29,12 +20,6 @@ var BaseAPI = class {
|
|
|
29
20
|
}
|
|
30
21
|
}
|
|
31
22
|
};
|
|
32
|
-
/**
|
|
33
|
-
*
|
|
34
|
-
* @export
|
|
35
|
-
* @class RequiredError
|
|
36
|
-
* @extends {Error}
|
|
37
|
-
*/
|
|
38
23
|
var RequiredError = class extends Error {
|
|
39
24
|
constructor(field, msg) {
|
|
40
25
|
super(msg);
|
|
@@ -42,41 +27,24 @@ var RequiredError = class extends Error {
|
|
|
42
27
|
this.name = "RequiredError";
|
|
43
28
|
}
|
|
44
29
|
};
|
|
45
|
-
/**
|
|
46
|
-
*
|
|
47
|
-
* @export
|
|
48
|
-
*/
|
|
49
30
|
const operationServerMap = {};
|
|
50
31
|
|
|
51
32
|
//#endregion
|
|
52
33
|
//#region v1/common.ts
|
|
53
|
-
/**
|
|
54
|
-
*
|
|
55
|
-
* @export
|
|
56
|
-
*/
|
|
57
34
|
const DUMMY_BASE_URL = "https://example.com";
|
|
58
35
|
/**
|
|
59
36
|
*
|
|
60
37
|
* @throws {RequiredError}
|
|
61
|
-
* @export
|
|
62
38
|
*/
|
|
63
39
|
const assertParamExists = function(functionName, paramName, paramValue) {
|
|
64
40
|
if (paramValue === null || paramValue === void 0) throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);
|
|
65
41
|
};
|
|
66
|
-
/**
|
|
67
|
-
*
|
|
68
|
-
* @export
|
|
69
|
-
*/
|
|
70
42
|
const setBasicAuthToObject = function(object, configuration) {
|
|
71
43
|
if (configuration && (configuration.username || configuration.password)) object["auth"] = {
|
|
72
44
|
username: configuration.username,
|
|
73
45
|
password: configuration.password
|
|
74
46
|
};
|
|
75
47
|
};
|
|
76
|
-
/**
|
|
77
|
-
*
|
|
78
|
-
* @export
|
|
79
|
-
*/
|
|
80
48
|
const setBearerAuthToObject = async function(object, configuration) {
|
|
81
49
|
if (configuration && configuration.accessToken) object["Authorization"] = "Bearer " + (typeof configuration.accessToken === "function" ? await configuration.accessToken() : await configuration.accessToken);
|
|
82
50
|
};
|
|
@@ -87,34 +55,18 @@ function setFlattenedQueryParams(urlSearchParams, parameter, key = "") {
|
|
|
87
55
|
else if (urlSearchParams.has(key)) urlSearchParams.append(key, parameter);
|
|
88
56
|
else urlSearchParams.set(key, parameter);
|
|
89
57
|
}
|
|
90
|
-
/**
|
|
91
|
-
*
|
|
92
|
-
* @export
|
|
93
|
-
*/
|
|
94
58
|
const setSearchParams = function(url, ...objects) {
|
|
95
59
|
const searchParams = new URLSearchParams(url.search);
|
|
96
60
|
setFlattenedQueryParams(searchParams, objects);
|
|
97
61
|
url.search = searchParams.toString();
|
|
98
62
|
};
|
|
99
|
-
/**
|
|
100
|
-
*
|
|
101
|
-
* @export
|
|
102
|
-
*/
|
|
103
63
|
const serializeDataIfNeeded = function(value, requestOptions, configuration) {
|
|
104
64
|
const nonString = typeof value !== "string";
|
|
105
65
|
return (nonString && configuration && configuration.isJsonMime ? configuration.isJsonMime(requestOptions.headers["Content-Type"]) : nonString) ? JSON.stringify(value !== void 0 ? value : {}) : value || "";
|
|
106
66
|
};
|
|
107
|
-
/**
|
|
108
|
-
*
|
|
109
|
-
* @export
|
|
110
|
-
*/
|
|
111
67
|
const toPathString = function(url) {
|
|
112
68
|
return url.pathname + url.search + url.hash;
|
|
113
69
|
};
|
|
114
|
-
/**
|
|
115
|
-
*
|
|
116
|
-
* @export
|
|
117
|
-
*/
|
|
118
70
|
const createRequestFunction = function(axiosArgs, globalAxios$1, BASE_PATH$1, configuration) {
|
|
119
71
|
return (axios = globalAxios$1, basePath = BASE_PATH$1) => {
|
|
120
72
|
const axiosRequestArgs = {
|
|
@@ -130,8 +82,6 @@ const createRequestFunction = function(axiosArgs, globalAxios$1, BASE_PATH$1, co
|
|
|
130
82
|
const AbbControllerKindEnum = { AbbController: "AbbController" };
|
|
131
83
|
/**
|
|
132
84
|
* ## BEHAVIOR_AUTOMATIC This is the default behavior. The motion group instantly takes any 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).
|
|
133
|
-
* @export
|
|
134
|
-
* @enum {string}
|
|
135
85
|
*/
|
|
136
86
|
const Behavior = {
|
|
137
87
|
BehaviorAutomatic: "BEHAVIOR_AUTOMATIC",
|
|
@@ -158,8 +108,6 @@ const Capsule2ShapeTypeEnum = { Capsule: "capsule" };
|
|
|
158
108
|
const Capsule3ShapeTypeEnum = { Capsule: "capsule" };
|
|
159
109
|
/**
|
|
160
110
|
* 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.
|
|
161
|
-
* @export
|
|
162
|
-
* @enum {string}
|
|
163
111
|
*/
|
|
164
112
|
const Comparator = {
|
|
165
113
|
ComparatorUnknown: "COMPARATOR_UNKNOWN",
|
|
@@ -176,8 +124,6 @@ const Cylinder2ShapeTypeEnum = { Cylinder: "cylinder" };
|
|
|
176
124
|
const Cylinder3ShapeTypeEnum = { Cylinder: "cylinder" };
|
|
177
125
|
/**
|
|
178
126
|
* The direction in which the trajectory is executed. Default: Forward.
|
|
179
|
-
* @export
|
|
180
|
-
* @enum {string}
|
|
181
127
|
*/
|
|
182
128
|
const Direction = {
|
|
183
129
|
DirectionForward: "DIRECTION_FORWARD",
|
|
@@ -238,11 +184,6 @@ const JointLimitJointEnum = {
|
|
|
238
184
|
JointnameAxis12: "JOINTNAME_AXIS_12"
|
|
239
185
|
};
|
|
240
186
|
const KukaControllerKindEnum = { KukaController: "KukaController" };
|
|
241
|
-
/**
|
|
242
|
-
*
|
|
243
|
-
* @export
|
|
244
|
-
* @enum {string}
|
|
245
|
-
*/
|
|
246
187
|
const LicenseStatusEnum = {
|
|
247
188
|
Ok: "OK",
|
|
248
189
|
Expired: "EXPIRED",
|
|
@@ -250,11 +191,6 @@ const LicenseStatusEnum = {
|
|
|
250
191
|
GracePeriodOver: "GRACE_PERIOD_OVER",
|
|
251
192
|
NotFound: "NOT_FOUND"
|
|
252
193
|
};
|
|
253
|
-
/**
|
|
254
|
-
*
|
|
255
|
-
* @export
|
|
256
|
-
* @enum {string}
|
|
257
|
-
*/
|
|
258
194
|
const Manufacturer = {
|
|
259
195
|
Abb: "abb",
|
|
260
196
|
Fanuc: "fanuc",
|
|
@@ -273,11 +209,6 @@ const PathJointPTPPathDefinitionNameEnum = { PathJointPtp: "PathJointPTP" };
|
|
|
273
209
|
const PathLinePathDefinitionNameEnum = { PathLine: "PathLine" };
|
|
274
210
|
const Plane2ShapeTypeEnum = { Plane: "plane" };
|
|
275
211
|
const Plane3ShapeTypeEnum = { Plane: "plane" };
|
|
276
|
-
/**
|
|
277
|
-
*
|
|
278
|
-
* @export
|
|
279
|
-
* @enum {string}
|
|
280
|
-
*/
|
|
281
212
|
const ProgramRunState = {
|
|
282
213
|
NotStarted: "not started",
|
|
283
214
|
Running: "running",
|
|
@@ -299,8 +230,6 @@ const RectangularCapsule2ShapeTypeEnum = { RectangularCapsule: "rectangular_caps
|
|
|
299
230
|
const RectangularCapsule3ShapeTypeEnum = { RectangularCapsule: "rectangular_capsule" };
|
|
300
231
|
/**
|
|
301
232
|
* The channel that defines what a new Wandelbots NOVA version is. * `next` the over all latest version * `stable` newes patch of the current version
|
|
302
|
-
* @export
|
|
303
|
-
* @enum {string}
|
|
304
233
|
*/
|
|
305
234
|
const ReleaseChannel = {
|
|
306
235
|
Stable: "stable",
|
|
@@ -338,8 +267,6 @@ const RobotControllerStateSafetyStateEnum = {
|
|
|
338
267
|
};
|
|
339
268
|
/**
|
|
340
269
|
* The system mode of the robot system. ### ROBOT_SYSTEM_MODE_UNDEFINED Indicates that the robot controller is currently performing a mode transition. ### ROBOT_SYSTEM_MODE_DISCONNECT There is no communication with the robot controller at all. All connections are closed. No command is sent to the robot controller while in this mode. No IO interaction is possible in this mode! All move requests will be rejected in this mode! ### ROBOT_SYSTEM_MODE_MONITOR A connection to the robot controller is established to only read the robot controller state. No command is sent to the robot controller while in this mode. It is possible to receive IO information. All move requests will be rejected in this mode! ### ROBOT_SYSTEM_MODE_CONTROL An active connection is established with the robot controller and the robot system is cyclic commanded to stay in its actual position. The robot controller state is received in the cycle time of the robot controller. Requests via the MotionService and JoggingService will be processed and executed in this mode. IO interaction is possible in this mode! **In this mode the robot system can be commanded to move.** ### ROBOT_SYSTEM_MODE_FREE_DRIVE Like ROBOT_SYSTEM_MODE_MONITOR a connection to the robot controller is established to only read the robot controller state. The difference is that the motion groups can be moved by the user (Free Drive). Thus, the servo motors are turned on. All move requests will be rejected in this mode! **This mode is not supported by every robot!** Use [getSupportedModes](getSupportedModes) to evaluate if the device support free drive.
|
|
341
|
-
* @export
|
|
342
|
-
* @enum {string}
|
|
343
270
|
*/
|
|
344
271
|
const RobotSystemMode = {
|
|
345
272
|
RobotSystemModeUndefined: "ROBOT_SYSTEM_MODE_UNDEFINED",
|
|
@@ -350,8 +277,6 @@ const RobotSystemMode = {
|
|
|
350
277
|
};
|
|
351
278
|
/**
|
|
352
279
|
* The type of rotation description that is used to specify the rotation. **Quaternion notation** * The rotation is represented using a 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. **Rotation Vector notation** * The rotation is represented using an axis-angle representation: > axis = Vector[0:2] > angle = |axis| in [rad] > axis.normalized * angle **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].
|
|
353
|
-
* @export
|
|
354
|
-
* @enum {string}
|
|
355
280
|
*/
|
|
356
281
|
const RotationAngleTypes = {
|
|
357
282
|
Quaternion: "QUATERNION",
|
|
@@ -386,11 +311,6 @@ const SafetySetupSafetySettingsSafetyStateEnum = {
|
|
|
386
311
|
SafetyNormal: "SAFETY_NORMAL",
|
|
387
312
|
SafetyReduced: "SAFETY_REDUCED"
|
|
388
313
|
};
|
|
389
|
-
/**
|
|
390
|
-
*
|
|
391
|
-
* @export
|
|
392
|
-
* @enum {string}
|
|
393
|
-
*/
|
|
394
314
|
const ServiceStatusPhase = {
|
|
395
315
|
Terminating: "Terminating",
|
|
396
316
|
Initialized: "Initialized",
|
|
@@ -407,11 +327,6 @@ const ServiceStatusPhase = {
|
|
|
407
327
|
Pending: "Pending",
|
|
408
328
|
Evicted: "Evicted"
|
|
409
329
|
};
|
|
410
|
-
/**
|
|
411
|
-
*
|
|
412
|
-
* @export
|
|
413
|
-
* @enum {string}
|
|
414
|
-
*/
|
|
415
330
|
const ServiceStatusSeverity = {
|
|
416
331
|
Info: "INFO",
|
|
417
332
|
Warning: "WARNING",
|
|
@@ -438,11 +353,6 @@ const SingularitySingularityTypeEnum = {
|
|
|
438
353
|
SingularityTypeElbow: "SINGULARITY_TYPE_ELBOW",
|
|
439
354
|
SingularityTypeShoulder: "SINGULARITY_TYPE_SHOULDER"
|
|
440
355
|
};
|
|
441
|
-
/**
|
|
442
|
-
*
|
|
443
|
-
* @export
|
|
444
|
-
* @enum {string}
|
|
445
|
-
*/
|
|
446
356
|
const SingularityTypeEnum = {
|
|
447
357
|
Wrist: "WRIST",
|
|
448
358
|
Elbow: "ELBOW",
|
|
@@ -452,8 +362,6 @@ const Sphere2ShapeTypeEnum = { Sphere: "sphere" };
|
|
|
452
362
|
const Sphere3ShapeTypeEnum = { Sphere: "sphere" };
|
|
453
363
|
/**
|
|
454
364
|
* The reason why the movement is paused.
|
|
455
|
-
* @export
|
|
456
|
-
* @enum {string}
|
|
457
365
|
*/
|
|
458
366
|
const StandstillReason = {
|
|
459
367
|
ReasonMotionEnded: "REASON_MOTION_ENDED",
|
|
@@ -472,17 +380,10 @@ const StopResponseStopCodeEnum = {
|
|
|
472
380
|
};
|
|
473
381
|
/**
|
|
474
382
|
* The type of the trigger.
|
|
475
|
-
* @export
|
|
476
|
-
* @enum {string}
|
|
477
383
|
*/
|
|
478
384
|
const TriggerType = { OpcuaNodeValue: "opcua_node_value" };
|
|
479
385
|
const UniversalrobotsControllerKindEnum = { UniversalrobotsController: "UniversalrobotsController" };
|
|
480
386
|
const VirtualControllerKindEnum = { VirtualController: "VirtualController" };
|
|
481
|
-
/**
|
|
482
|
-
*
|
|
483
|
-
* @export
|
|
484
|
-
* @enum {string}
|
|
485
|
-
*/
|
|
486
387
|
const VirtualControllerTypes = {
|
|
487
388
|
AbbIrb101003715: "abb-irb1010_037_15",
|
|
488
389
|
AbbIrb110004754: "abb-irb1100_0475_4",
|
|
@@ -505,6 +406,8 @@ const VirtualControllerTypes = {
|
|
|
505
406
|
AbbIrb460020560: "abb-irb4600_205_60",
|
|
506
407
|
AbbIrb460025020: "abb-irb4600_250_20",
|
|
507
408
|
AbbIrb460025540: "abb-irb4600_255_40",
|
|
409
|
+
AbbIrb6730210310: "abb-irb6730_210_310",
|
|
410
|
+
AbbIrb6730240290: "abb-irb6730_240_290",
|
|
508
411
|
FanucArcMate100iD: "fanuc-arc_mate_100iD",
|
|
509
412
|
FanucArcMate100iD16S: "fanuc-arc_mate_100iD16S",
|
|
510
413
|
FanucArcMate120iD: "fanuc-arc_mate_120iD",
|
|
@@ -536,17 +439,23 @@ const VirtualControllerTypes = {
|
|
|
536
439
|
KukaKr10R900: "kuka-kr10_r900",
|
|
537
440
|
KukaKr10R9002: "kuka-kr10_r900_2",
|
|
538
441
|
KukaKr120R27002: "kuka-kr120_r2700_2",
|
|
442
|
+
KukaKr120R31002: "kuka-kr120_r3100_2",
|
|
443
|
+
KukaKr120R39002K: "kuka-kr120_r3900_2_k",
|
|
539
444
|
KukaKr12R18102: "kuka-kr12_r1810_2",
|
|
540
445
|
KukaKr150R2: "kuka-kr150_r2",
|
|
541
446
|
KukaKr16R16102: "kuka-kr16_r1610_2",
|
|
542
447
|
KukaKr16R20102: "kuka-kr16_r2010_2",
|
|
543
448
|
KukaKr20R1810: "kuka-kr20_r1810",
|
|
544
449
|
KukaKr20R18102: "kuka-kr20_r1810_2",
|
|
450
|
+
KukaKr210R2700Extra: "kuka-kr210_r2700_extra",
|
|
545
451
|
KukaKr210R27002: "kuka-kr210_r2700_2",
|
|
546
452
|
KukaKr210R31002: "kuka-kr210_r3100_2",
|
|
547
453
|
KukaKr210R33002: "kuka-kr210_r3300_2",
|
|
548
454
|
KukaKr240R2700: "kuka-kr240_r2700",
|
|
455
|
+
KukaKr240R2900: "kuka-kr240_r2900",
|
|
456
|
+
KukaKr240R37002: "kuka-kr240_r3700_2",
|
|
549
457
|
KukaKr250R27002: "kuka-kr250_r2700_2",
|
|
458
|
+
KukaKr270R2700: "kuka-kr270_r2700",
|
|
550
459
|
KukaKr30R2100: "kuka-kr30_r2100",
|
|
551
460
|
KukaKr30R3: "kuka-kr30_r3",
|
|
552
461
|
KukaKr360L2403: "kuka-kr360_l240_3",
|
|
@@ -601,7 +510,6 @@ const VirtualControllerTypes = {
|
|
|
601
510
|
const YaskawaControllerKindEnum = { YaskawaController: "YaskawaController" };
|
|
602
511
|
/**
|
|
603
512
|
* ApplicationApi - axios parameter creator
|
|
604
|
-
* @export
|
|
605
513
|
*/
|
|
606
514
|
const ApplicationApiAxiosParamCreator = function(configuration) {
|
|
607
515
|
return {
|
|
@@ -784,7 +692,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
|
|
|
784
692
|
};
|
|
785
693
|
/**
|
|
786
694
|
* ApplicationApi - functional programming interface
|
|
787
|
-
* @export
|
|
788
695
|
*/
|
|
789
696
|
const ApplicationApiFp = function(configuration) {
|
|
790
697
|
const localVarAxiosParamCreator = ApplicationApiAxiosParamCreator(configuration);
|
|
@@ -829,7 +736,6 @@ const ApplicationApiFp = function(configuration) {
|
|
|
829
736
|
};
|
|
830
737
|
/**
|
|
831
738
|
* ApplicationApi - factory interface
|
|
832
|
-
* @export
|
|
833
739
|
*/
|
|
834
740
|
const ApplicationApiFactory = function(configuration, basePath, axios) {
|
|
835
741
|
const localVarFp = ApplicationApiFp(configuration);
|
|
@@ -856,9 +762,6 @@ const ApplicationApiFactory = function(configuration, basePath, axios) {
|
|
|
856
762
|
};
|
|
857
763
|
/**
|
|
858
764
|
* ApplicationApi - object-oriented interface
|
|
859
|
-
* @export
|
|
860
|
-
* @class ApplicationApi
|
|
861
|
-
* @extends {BaseAPI}
|
|
862
765
|
*/
|
|
863
766
|
var ApplicationApi = class extends BaseAPI {
|
|
864
767
|
/**
|
|
@@ -869,7 +772,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
869
772
|
* @param {number} [completionTimeout]
|
|
870
773
|
* @param {*} [options] Override http request option.
|
|
871
774
|
* @throws {RequiredError}
|
|
872
|
-
* @memberof ApplicationApi
|
|
873
775
|
*/
|
|
874
776
|
addApp(cell, app, completionTimeout, options) {
|
|
875
777
|
return ApplicationApiFp(this.configuration).addApp(cell, app, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -881,7 +783,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
881
783
|
* @param {number} [completionTimeout]
|
|
882
784
|
* @param {*} [options] Override http request option.
|
|
883
785
|
* @throws {RequiredError}
|
|
884
|
-
* @memberof ApplicationApi
|
|
885
786
|
*/
|
|
886
787
|
clearApps(cell, completionTimeout, options) {
|
|
887
788
|
return ApplicationApiFp(this.configuration).clearApps(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -894,7 +795,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
894
795
|
* @param {number} [completionTimeout]
|
|
895
796
|
* @param {*} [options] Override http request option.
|
|
896
797
|
* @throws {RequiredError}
|
|
897
|
-
* @memberof ApplicationApi
|
|
898
798
|
*/
|
|
899
799
|
deleteApp(cell, app, completionTimeout, options) {
|
|
900
800
|
return ApplicationApiFp(this.configuration).deleteApp(cell, app, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -906,7 +806,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
906
806
|
* @param {string} app
|
|
907
807
|
* @param {*} [options] Override http request option.
|
|
908
808
|
* @throws {RequiredError}
|
|
909
|
-
* @memberof ApplicationApi
|
|
910
809
|
*/
|
|
911
810
|
getApp(cell, app, options) {
|
|
912
811
|
return ApplicationApiFp(this.configuration).getApp(cell, app, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -917,7 +816,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
917
816
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
918
817
|
* @param {*} [options] Override http request option.
|
|
919
818
|
* @throws {RequiredError}
|
|
920
|
-
* @memberof ApplicationApi
|
|
921
819
|
*/
|
|
922
820
|
listApps(cell, options) {
|
|
923
821
|
return ApplicationApiFp(this.configuration).listApps(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -931,7 +829,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
931
829
|
* @param {number} [completionTimeout]
|
|
932
830
|
* @param {*} [options] Override http request option.
|
|
933
831
|
* @throws {RequiredError}
|
|
934
|
-
* @memberof ApplicationApi
|
|
935
832
|
*/
|
|
936
833
|
updateApp(cell, app, app2, completionTimeout, options) {
|
|
937
834
|
return ApplicationApiFp(this.configuration).updateApp(cell, app, app2, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -939,7 +836,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
939
836
|
};
|
|
940
837
|
/**
|
|
941
838
|
* CellApi - axios parameter creator
|
|
942
|
-
* @export
|
|
943
839
|
*/
|
|
944
840
|
const CellApiAxiosParamCreator = function(configuration) {
|
|
945
841
|
return {
|
|
@@ -1114,7 +1010,6 @@ const CellApiAxiosParamCreator = function(configuration) {
|
|
|
1114
1010
|
};
|
|
1115
1011
|
/**
|
|
1116
1012
|
* CellApi - functional programming interface
|
|
1117
|
-
* @export
|
|
1118
1013
|
*/
|
|
1119
1014
|
const CellApiFp = function(configuration) {
|
|
1120
1015
|
const localVarAxiosParamCreator = CellApiAxiosParamCreator(configuration);
|
|
@@ -1159,7 +1054,6 @@ const CellApiFp = function(configuration) {
|
|
|
1159
1054
|
};
|
|
1160
1055
|
/**
|
|
1161
1056
|
* CellApi - factory interface
|
|
1162
|
-
* @export
|
|
1163
1057
|
*/
|
|
1164
1058
|
const CellApiFactory = function(configuration, basePath, axios) {
|
|
1165
1059
|
const localVarFp = CellApiFp(configuration);
|
|
@@ -1186,9 +1080,6 @@ const CellApiFactory = function(configuration, basePath, axios) {
|
|
|
1186
1080
|
};
|
|
1187
1081
|
/**
|
|
1188
1082
|
* CellApi - object-oriented interface
|
|
1189
|
-
* @export
|
|
1190
|
-
* @class CellApi
|
|
1191
|
-
* @extends {BaseAPI}
|
|
1192
1083
|
*/
|
|
1193
1084
|
var CellApi = class extends BaseAPI {
|
|
1194
1085
|
/**
|
|
@@ -1198,7 +1089,6 @@ var CellApi = class extends BaseAPI {
|
|
|
1198
1089
|
* @param {number} [completionTimeout]
|
|
1199
1090
|
* @param {*} [options] Override http request option.
|
|
1200
1091
|
* @throws {RequiredError}
|
|
1201
|
-
* @memberof CellApi
|
|
1202
1092
|
*/
|
|
1203
1093
|
deleteCell(cell, completionTimeout, options) {
|
|
1204
1094
|
return CellApiFp(this.configuration).deleteCell(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1210,7 +1100,6 @@ var CellApi = class extends BaseAPI {
|
|
|
1210
1100
|
* @param {number} [completionTimeout]
|
|
1211
1101
|
* @param {*} [options] Override http request option.
|
|
1212
1102
|
* @throws {RequiredError}
|
|
1213
|
-
* @memberof CellApi
|
|
1214
1103
|
*/
|
|
1215
1104
|
deployCell(cell, completionTimeout, options) {
|
|
1216
1105
|
return CellApiFp(this.configuration).deployCell(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1221,7 +1110,6 @@ var CellApi = class extends BaseAPI {
|
|
|
1221
1110
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1222
1111
|
* @param {*} [options] Override http request option.
|
|
1223
1112
|
* @throws {RequiredError}
|
|
1224
|
-
* @memberof CellApi
|
|
1225
1113
|
*/
|
|
1226
1114
|
getCell(cell, options) {
|
|
1227
1115
|
return CellApiFp(this.configuration).getCell(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1232,7 +1120,6 @@ var CellApi = class extends BaseAPI {
|
|
|
1232
1120
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1233
1121
|
* @param {*} [options] Override http request option.
|
|
1234
1122
|
* @throws {RequiredError}
|
|
1235
|
-
* @memberof CellApi
|
|
1236
1123
|
*/
|
|
1237
1124
|
getCellStatus(cell, options) {
|
|
1238
1125
|
return CellApiFp(this.configuration).getCellStatus(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1242,7 +1129,6 @@ var CellApi = class extends BaseAPI {
|
|
|
1242
1129
|
* @summary List Cells
|
|
1243
1130
|
* @param {*} [options] Override http request option.
|
|
1244
1131
|
* @throws {RequiredError}
|
|
1245
|
-
* @memberof CellApi
|
|
1246
1132
|
*/
|
|
1247
1133
|
listCells(options) {
|
|
1248
1134
|
return CellApiFp(this.configuration).listCells(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1255,7 +1141,6 @@ var CellApi = class extends BaseAPI {
|
|
|
1255
1141
|
* @param {number} [completionTimeout]
|
|
1256
1142
|
* @param {*} [options] Override http request option.
|
|
1257
1143
|
* @throws {RequiredError}
|
|
1258
|
-
* @memberof CellApi
|
|
1259
1144
|
*/
|
|
1260
1145
|
updateCell(cell, cell2, completionTimeout, options) {
|
|
1261
1146
|
return CellApiFp(this.configuration).updateCell(cell, cell2, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1263,7 +1148,6 @@ var CellApi = class extends BaseAPI {
|
|
|
1263
1148
|
};
|
|
1264
1149
|
/**
|
|
1265
1150
|
* ControllerApi - axios parameter creator
|
|
1266
|
-
* @export
|
|
1267
1151
|
*/
|
|
1268
1152
|
const ControllerApiAxiosParamCreator = function(configuration) {
|
|
1269
1153
|
return {
|
|
@@ -1674,7 +1558,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
|
|
|
1674
1558
|
};
|
|
1675
1559
|
/**
|
|
1676
1560
|
* ControllerApi - functional programming interface
|
|
1677
|
-
* @export
|
|
1678
1561
|
*/
|
|
1679
1562
|
const ControllerApiFp = function(configuration) {
|
|
1680
1563
|
const localVarAxiosParamCreator = ControllerApiAxiosParamCreator(configuration);
|
|
@@ -1767,7 +1650,6 @@ const ControllerApiFp = function(configuration) {
|
|
|
1767
1650
|
};
|
|
1768
1651
|
/**
|
|
1769
1652
|
* ControllerApi - factory interface
|
|
1770
|
-
* @export
|
|
1771
1653
|
*/
|
|
1772
1654
|
const ControllerApiFactory = function(configuration, basePath, axios) {
|
|
1773
1655
|
const localVarFp = ControllerApiFp(configuration);
|
|
@@ -1818,9 +1700,6 @@ const ControllerApiFactory = function(configuration, basePath, axios) {
|
|
|
1818
1700
|
};
|
|
1819
1701
|
/**
|
|
1820
1702
|
* ControllerApi - object-oriented interface
|
|
1821
|
-
* @export
|
|
1822
|
-
* @class ControllerApi
|
|
1823
|
-
* @extends {BaseAPI}
|
|
1824
1703
|
*/
|
|
1825
1704
|
var ControllerApi = class extends BaseAPI {
|
|
1826
1705
|
/**
|
|
@@ -1831,7 +1710,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1831
1710
|
* @param {number} [completionTimeout]
|
|
1832
1711
|
* @param {*} [options] Override http request option.
|
|
1833
1712
|
* @throws {RequiredError}
|
|
1834
|
-
* @memberof ControllerApi
|
|
1835
1713
|
*/
|
|
1836
1714
|
addRobotController(cell, robotController, completionTimeout, options) {
|
|
1837
1715
|
return ControllerApiFp(this.configuration).addRobotController(cell, robotController, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1843,7 +1721,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1843
1721
|
* @param {number} [completionTimeout]
|
|
1844
1722
|
* @param {*} [options] Override http request option.
|
|
1845
1723
|
* @throws {RequiredError}
|
|
1846
|
-
* @memberof ControllerApi
|
|
1847
1724
|
*/
|
|
1848
1725
|
clearRobotControllers(cell, completionTimeout, options) {
|
|
1849
1726
|
return ControllerApiFp(this.configuration).clearRobotControllers(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1856,7 +1733,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1856
1733
|
* @param {number} [completionTimeout]
|
|
1857
1734
|
* @param {*} [options] Override http request option.
|
|
1858
1735
|
* @throws {RequiredError}
|
|
1859
|
-
* @memberof ControllerApi
|
|
1860
1736
|
*/
|
|
1861
1737
|
deleteRobotController(cell, controller, completionTimeout, options) {
|
|
1862
1738
|
return ControllerApiFp(this.configuration).deleteRobotController(cell, controller, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1868,7 +1744,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1868
1744
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
1869
1745
|
* @param {*} [options] Override http request option.
|
|
1870
1746
|
* @throws {RequiredError}
|
|
1871
|
-
* @memberof ControllerApi
|
|
1872
1747
|
*/
|
|
1873
1748
|
getCurrentRobotControllerState(cell, controller, options) {
|
|
1874
1749
|
return ControllerApiFp(this.configuration).getCurrentRobotControllerState(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1880,7 +1755,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1880
1755
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
1881
1756
|
* @param {*} [options] Override http request option.
|
|
1882
1757
|
* @throws {RequiredError}
|
|
1883
|
-
* @memberof ControllerApi
|
|
1884
1758
|
*/
|
|
1885
1759
|
getMode(cell, controller, options) {
|
|
1886
1760
|
return ControllerApiFp(this.configuration).getMode(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1892,7 +1766,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1892
1766
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
1893
1767
|
* @param {*} [options] Override http request option.
|
|
1894
1768
|
* @throws {RequiredError}
|
|
1895
|
-
* @memberof ControllerApi
|
|
1896
1769
|
*/
|
|
1897
1770
|
getRobotController(cell, controller, options) {
|
|
1898
1771
|
return ControllerApiFp(this.configuration).getRobotController(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1904,7 +1777,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1904
1777
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
1905
1778
|
* @param {*} [options] Override http request option.
|
|
1906
1779
|
* @throws {RequiredError}
|
|
1907
|
-
* @memberof ControllerApi
|
|
1908
1780
|
*/
|
|
1909
1781
|
getSupportedModes(cell, controller, options) {
|
|
1910
1782
|
return ControllerApiFp(this.configuration).getSupportedModes(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1916,7 +1788,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1916
1788
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
1917
1789
|
* @param {*} [options] Override http request option.
|
|
1918
1790
|
* @throws {RequiredError}
|
|
1919
|
-
* @memberof ControllerApi
|
|
1920
1791
|
*/
|
|
1921
1792
|
getVirtualRobotConfiguration(cell, controller, options) {
|
|
1922
1793
|
return ControllerApiFp(this.configuration).getVirtualRobotConfiguration(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1927,7 +1798,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1927
1798
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1928
1799
|
* @param {*} [options] Override http request option.
|
|
1929
1800
|
* @throws {RequiredError}
|
|
1930
|
-
* @memberof ControllerApi
|
|
1931
1801
|
*/
|
|
1932
1802
|
listControllers(cell, options) {
|
|
1933
1803
|
return ControllerApiFp(this.configuration).listControllers(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1940,7 +1810,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1940
1810
|
* @param {SetDefaultModeModeEnum} mode
|
|
1941
1811
|
* @param {*} [options] Override http request option.
|
|
1942
1812
|
* @throws {RequiredError}
|
|
1943
|
-
* @memberof ControllerApi
|
|
1944
1813
|
*/
|
|
1945
1814
|
setDefaultMode(cell, controller, mode, options) {
|
|
1946
1815
|
return ControllerApiFp(this.configuration).setDefaultMode(cell, controller, mode, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1953,7 +1822,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1953
1822
|
* @param {number} [responseRate]
|
|
1954
1823
|
* @param {*} [options] Override http request option.
|
|
1955
1824
|
* @throws {RequiredError}
|
|
1956
|
-
* @memberof ControllerApi
|
|
1957
1825
|
*/
|
|
1958
1826
|
streamFreeDrive(cell, controller, responseRate, options) {
|
|
1959
1827
|
return ControllerApiFp(this.configuration).streamFreeDrive(cell, controller, responseRate, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1965,7 +1833,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1965
1833
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
1966
1834
|
* @param {*} [options] Override http request option.
|
|
1967
1835
|
* @throws {RequiredError}
|
|
1968
|
-
* @memberof ControllerApi
|
|
1969
1836
|
*/
|
|
1970
1837
|
streamModeChange(cell, controller, options) {
|
|
1971
1838
|
return ControllerApiFp(this.configuration).streamModeChange(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1978,7 +1845,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1978
1845
|
* @param {number} [responseRate]
|
|
1979
1846
|
* @param {*} [options] Override http request option.
|
|
1980
1847
|
* @throws {RequiredError}
|
|
1981
|
-
* @memberof ControllerApi
|
|
1982
1848
|
*/
|
|
1983
1849
|
streamRobotControllerState(cell, controller, responseRate, options) {
|
|
1984
1850
|
return ControllerApiFp(this.configuration).streamRobotControllerState(cell, controller, responseRate, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1992,22 +1858,17 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1992
1858
|
* @param {number} [completionTimeout]
|
|
1993
1859
|
* @param {*} [options] Override http request option.
|
|
1994
1860
|
* @throws {RequiredError}
|
|
1995
|
-
* @memberof ControllerApi
|
|
1996
1861
|
*/
|
|
1997
1862
|
updateRobotController(cell, controller, robotController, completionTimeout, options) {
|
|
1998
1863
|
return ControllerApiFp(this.configuration).updateRobotController(cell, controller, robotController, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
1999
1864
|
}
|
|
2000
1865
|
};
|
|
2001
|
-
/**
|
|
2002
|
-
* @export
|
|
2003
|
-
*/
|
|
2004
1866
|
const SetDefaultModeModeEnum = {
|
|
2005
1867
|
ModeMonitor: "MODE_MONITOR",
|
|
2006
1868
|
ModeControl: "MODE_CONTROL"
|
|
2007
1869
|
};
|
|
2008
1870
|
/**
|
|
2009
1871
|
* ControllerIOsApi - axios parameter creator
|
|
2010
|
-
* @export
|
|
2011
1872
|
*/
|
|
2012
1873
|
const ControllerIOsApiAxiosParamCreator = function(configuration) {
|
|
2013
1874
|
return {
|
|
@@ -2168,7 +2029,6 @@ const ControllerIOsApiAxiosParamCreator = function(configuration) {
|
|
|
2168
2029
|
};
|
|
2169
2030
|
/**
|
|
2170
2031
|
* ControllerIOsApi - functional programming interface
|
|
2171
|
-
* @export
|
|
2172
2032
|
*/
|
|
2173
2033
|
const ControllerIOsApiFp = function(configuration) {
|
|
2174
2034
|
const localVarAxiosParamCreator = ControllerIOsApiAxiosParamCreator(configuration);
|
|
@@ -2207,7 +2067,6 @@ const ControllerIOsApiFp = function(configuration) {
|
|
|
2207
2067
|
};
|
|
2208
2068
|
/**
|
|
2209
2069
|
* ControllerIOsApi - factory interface
|
|
2210
|
-
* @export
|
|
2211
2070
|
*/
|
|
2212
2071
|
const ControllerIOsApiFactory = function(configuration, basePath, axios) {
|
|
2213
2072
|
const localVarFp = ControllerIOsApiFp(configuration);
|
|
@@ -2231,9 +2090,6 @@ const ControllerIOsApiFactory = function(configuration, basePath, axios) {
|
|
|
2231
2090
|
};
|
|
2232
2091
|
/**
|
|
2233
2092
|
* ControllerIOsApi - object-oriented interface
|
|
2234
|
-
* @export
|
|
2235
|
-
* @class ControllerIOsApi
|
|
2236
|
-
* @extends {BaseAPI}
|
|
2237
2093
|
*/
|
|
2238
2094
|
var ControllerIOsApi = class extends BaseAPI {
|
|
2239
2095
|
/**
|
|
@@ -2244,7 +2100,6 @@ var ControllerIOsApi = class extends BaseAPI {
|
|
|
2244
2100
|
* @param {Array<string>} [ios]
|
|
2245
2101
|
* @param {*} [options] Override http request option.
|
|
2246
2102
|
* @throws {RequiredError}
|
|
2247
|
-
* @memberof ControllerIOsApi
|
|
2248
2103
|
*/
|
|
2249
2104
|
listIODescriptions(cell, controller, ios, options) {
|
|
2250
2105
|
return ControllerIOsApiFp(this.configuration).listIODescriptions(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2257,7 +2112,6 @@ var ControllerIOsApi = class extends BaseAPI {
|
|
|
2257
2112
|
* @param {Array<string>} [ios]
|
|
2258
2113
|
* @param {*} [options] Override http request option.
|
|
2259
2114
|
* @throws {RequiredError}
|
|
2260
|
-
* @memberof ControllerIOsApi
|
|
2261
2115
|
*/
|
|
2262
2116
|
listIOValues(cell, controller, ios, options) {
|
|
2263
2117
|
return ControllerIOsApiFp(this.configuration).listIOValues(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2270,7 +2124,6 @@ var ControllerIOsApi = class extends BaseAPI {
|
|
|
2270
2124
|
* @param {Array<IOValue>} iOValue
|
|
2271
2125
|
* @param {*} [options] Override http request option.
|
|
2272
2126
|
* @throws {RequiredError}
|
|
2273
|
-
* @memberof ControllerIOsApi
|
|
2274
2127
|
*/
|
|
2275
2128
|
setOutputValues(cell, controller, iOValue, options) {
|
|
2276
2129
|
return ControllerIOsApiFp(this.configuration).setOutputValues(cell, controller, iOValue, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2283,7 +2136,6 @@ var ControllerIOsApi = class extends BaseAPI {
|
|
|
2283
2136
|
* @param {Array<string>} [ios]
|
|
2284
2137
|
* @param {*} [options] Override http request option.
|
|
2285
2138
|
* @throws {RequiredError}
|
|
2286
|
-
* @memberof ControllerIOsApi
|
|
2287
2139
|
*/
|
|
2288
2140
|
streamIOValues(cell, controller, ios, options) {
|
|
2289
2141
|
return ControllerIOsApiFp(this.configuration).streamIOValues(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2300,15 +2152,11 @@ var ControllerIOsApi = class extends BaseAPI {
|
|
|
2300
2152
|
* @param {number} [floatingValue]
|
|
2301
2153
|
* @param {*} [options] Override http request option.
|
|
2302
2154
|
* @throws {RequiredError}
|
|
2303
|
-
* @memberof ControllerIOsApi
|
|
2304
2155
|
*/
|
|
2305
2156
|
waitForIOEvent(cell, controller, io, comparisonType, booleanValue, integerValue, floatingValue, options) {
|
|
2306
2157
|
return ControllerIOsApiFp(this.configuration).waitForIOEvent(cell, controller, io, comparisonType, booleanValue, integerValue, floatingValue, options).then((request) => request(this.axios, this.basePath));
|
|
2307
2158
|
}
|
|
2308
2159
|
};
|
|
2309
|
-
/**
|
|
2310
|
-
* @export
|
|
2311
|
-
*/
|
|
2312
2160
|
const WaitForIOEventComparisonTypeEnum = {
|
|
2313
2161
|
ComparisonTypeEqual: "COMPARISON_TYPE_EQUAL",
|
|
2314
2162
|
ComparisonTypeGreater: "COMPARISON_TYPE_GREATER",
|
|
@@ -2316,7 +2164,6 @@ const WaitForIOEventComparisonTypeEnum = {
|
|
|
2316
2164
|
};
|
|
2317
2165
|
/**
|
|
2318
2166
|
* CoordinateSystemsApi - axios parameter creator
|
|
2319
|
-
* @export
|
|
2320
2167
|
*/
|
|
2321
2168
|
const CoordinateSystemsApiAxiosParamCreator = function(configuration) {
|
|
2322
2169
|
return {
|
|
@@ -2470,7 +2317,6 @@ const CoordinateSystemsApiAxiosParamCreator = function(configuration) {
|
|
|
2470
2317
|
};
|
|
2471
2318
|
/**
|
|
2472
2319
|
* CoordinateSystemsApi - functional programming interface
|
|
2473
|
-
* @export
|
|
2474
2320
|
*/
|
|
2475
2321
|
const CoordinateSystemsApiFp = function(configuration) {
|
|
2476
2322
|
const localVarAxiosParamCreator = CoordinateSystemsApiAxiosParamCreator(configuration);
|
|
@@ -2509,7 +2355,6 @@ const CoordinateSystemsApiFp = function(configuration) {
|
|
|
2509
2355
|
};
|
|
2510
2356
|
/**
|
|
2511
2357
|
* CoordinateSystemsApi - factory interface
|
|
2512
|
-
* @export
|
|
2513
2358
|
*/
|
|
2514
2359
|
const CoordinateSystemsApiFactory = function(configuration, basePath, axios) {
|
|
2515
2360
|
const localVarFp = CoordinateSystemsApiFp(configuration);
|
|
@@ -2533,9 +2378,6 @@ const CoordinateSystemsApiFactory = function(configuration, basePath, axios) {
|
|
|
2533
2378
|
};
|
|
2534
2379
|
/**
|
|
2535
2380
|
* CoordinateSystemsApi - object-oriented interface
|
|
2536
|
-
* @export
|
|
2537
|
-
* @class CoordinateSystemsApi
|
|
2538
|
-
* @extends {BaseAPI}
|
|
2539
2381
|
*/
|
|
2540
2382
|
var CoordinateSystemsApi = class extends BaseAPI {
|
|
2541
2383
|
/**
|
|
@@ -2545,7 +2387,6 @@ var CoordinateSystemsApi = class extends BaseAPI {
|
|
|
2545
2387
|
* @param {AddRequest} addRequest
|
|
2546
2388
|
* @param {*} [options] Override http request option.
|
|
2547
2389
|
* @throws {RequiredError}
|
|
2548
|
-
* @memberof CoordinateSystemsApi
|
|
2549
2390
|
*/
|
|
2550
2391
|
addCoordinateSystem(cell, addRequest, options) {
|
|
2551
2392
|
return CoordinateSystemsApiFp(this.configuration).addCoordinateSystem(cell, addRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2557,7 +2398,6 @@ var CoordinateSystemsApi = class extends BaseAPI {
|
|
|
2557
2398
|
* @param {string} coordinateSystem Unique identifier addressing a coordinate system.
|
|
2558
2399
|
* @param {*} [options] Override http request option.
|
|
2559
2400
|
* @throws {RequiredError}
|
|
2560
|
-
* @memberof CoordinateSystemsApi
|
|
2561
2401
|
*/
|
|
2562
2402
|
deleteCoordinateSystem(cell, coordinateSystem, options) {
|
|
2563
2403
|
return CoordinateSystemsApiFp(this.configuration).deleteCoordinateSystem(cell, coordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2570,7 +2410,6 @@ var CoordinateSystemsApi = class extends BaseAPI {
|
|
|
2570
2410
|
* @param {RotationAngleTypes} [rotationType]
|
|
2571
2411
|
* @param {*} [options] Override http request option.
|
|
2572
2412
|
* @throws {RequiredError}
|
|
2573
|
-
* @memberof CoordinateSystemsApi
|
|
2574
2413
|
*/
|
|
2575
2414
|
getCoordinateSystem(cell, coordinateSystem, rotationType, options) {
|
|
2576
2415
|
return CoordinateSystemsApiFp(this.configuration).getCoordinateSystem(cell, coordinateSystem, rotationType, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2582,7 +2421,6 @@ var CoordinateSystemsApi = class extends BaseAPI {
|
|
|
2582
2421
|
* @param {RotationAngleTypes} [rotationType]
|
|
2583
2422
|
* @param {*} [options] Override http request option.
|
|
2584
2423
|
* @throws {RequiredError}
|
|
2585
|
-
* @memberof CoordinateSystemsApi
|
|
2586
2424
|
*/
|
|
2587
2425
|
listCoordinateSystems(cell, rotationType, options) {
|
|
2588
2426
|
return CoordinateSystemsApiFp(this.configuration).listCoordinateSystems(cell, rotationType, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2595,7 +2433,6 @@ var CoordinateSystemsApi = class extends BaseAPI {
|
|
|
2595
2433
|
* @param {Pose} pose
|
|
2596
2434
|
* @param {*} [options] Override http request option.
|
|
2597
2435
|
* @throws {RequiredError}
|
|
2598
|
-
* @memberof CoordinateSystemsApi
|
|
2599
2436
|
*/
|
|
2600
2437
|
transformInCoordinateSystem(cell, coordinateSystem, pose, options) {
|
|
2601
2438
|
return CoordinateSystemsApiFp(this.configuration).transformInCoordinateSystem(cell, coordinateSystem, pose, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2603,7 +2440,6 @@ var CoordinateSystemsApi = class extends BaseAPI {
|
|
|
2603
2440
|
};
|
|
2604
2441
|
/**
|
|
2605
2442
|
* DeviceConfigurationApi - axios parameter creator
|
|
2606
|
-
* @export
|
|
2607
2443
|
*/
|
|
2608
2444
|
const DeviceConfigurationApiAxiosParamCreator = function(configuration) {
|
|
2609
2445
|
return {
|
|
@@ -2751,7 +2587,6 @@ const DeviceConfigurationApiAxiosParamCreator = function(configuration) {
|
|
|
2751
2587
|
};
|
|
2752
2588
|
/**
|
|
2753
2589
|
* DeviceConfigurationApi - functional programming interface
|
|
2754
|
-
* @export
|
|
2755
2590
|
*/
|
|
2756
2591
|
const DeviceConfigurationApiFp = function(configuration) {
|
|
2757
2592
|
const localVarAxiosParamCreator = DeviceConfigurationApiAxiosParamCreator(configuration);
|
|
@@ -2790,7 +2625,6 @@ const DeviceConfigurationApiFp = function(configuration) {
|
|
|
2790
2625
|
};
|
|
2791
2626
|
/**
|
|
2792
2627
|
* DeviceConfigurationApi - factory interface
|
|
2793
|
-
* @export
|
|
2794
2628
|
*/
|
|
2795
2629
|
const DeviceConfigurationApiFactory = function(configuration, basePath, axios) {
|
|
2796
2630
|
const localVarFp = DeviceConfigurationApiFp(configuration);
|
|
@@ -2814,9 +2648,6 @@ const DeviceConfigurationApiFactory = function(configuration, basePath, axios) {
|
|
|
2814
2648
|
};
|
|
2815
2649
|
/**
|
|
2816
2650
|
* DeviceConfigurationApi - object-oriented interface
|
|
2817
|
-
* @export
|
|
2818
|
-
* @class DeviceConfigurationApi
|
|
2819
|
-
* @extends {BaseAPI}
|
|
2820
2651
|
*/
|
|
2821
2652
|
var DeviceConfigurationApi = class extends BaseAPI {
|
|
2822
2653
|
/**
|
|
@@ -2826,7 +2657,6 @@ var DeviceConfigurationApi = class extends BaseAPI {
|
|
|
2826
2657
|
* @param {*} [options] Override http request option.
|
|
2827
2658
|
* @deprecated
|
|
2828
2659
|
* @throws {RequiredError}
|
|
2829
|
-
* @memberof DeviceConfigurationApi
|
|
2830
2660
|
*/
|
|
2831
2661
|
clearDevices(cell, options) {
|
|
2832
2662
|
return DeviceConfigurationApiFp(this.configuration).clearDevices(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2839,7 +2669,6 @@ var DeviceConfigurationApi = class extends BaseAPI {
|
|
|
2839
2669
|
* @param {*} [options] Override http request option.
|
|
2840
2670
|
* @deprecated
|
|
2841
2671
|
* @throws {RequiredError}
|
|
2842
|
-
* @memberof DeviceConfigurationApi
|
|
2843
2672
|
*/
|
|
2844
2673
|
createDevice(cell, createDeviceRequestInner, options) {
|
|
2845
2674
|
return DeviceConfigurationApiFp(this.configuration).createDevice(cell, createDeviceRequestInner, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2852,7 +2681,6 @@ var DeviceConfigurationApi = class extends BaseAPI {
|
|
|
2852
2681
|
* @param {*} [options] Override http request option.
|
|
2853
2682
|
* @deprecated
|
|
2854
2683
|
* @throws {RequiredError}
|
|
2855
|
-
* @memberof DeviceConfigurationApi
|
|
2856
2684
|
*/
|
|
2857
2685
|
deleteDevice(cell, identifier, options) {
|
|
2858
2686
|
return DeviceConfigurationApiFp(this.configuration).deleteDevice(cell, identifier, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2865,7 +2693,6 @@ var DeviceConfigurationApi = class extends BaseAPI {
|
|
|
2865
2693
|
* @param {*} [options] Override http request option.
|
|
2866
2694
|
* @deprecated
|
|
2867
2695
|
* @throws {RequiredError}
|
|
2868
|
-
* @memberof DeviceConfigurationApi
|
|
2869
2696
|
*/
|
|
2870
2697
|
getDevice(cell, identifier, options) {
|
|
2871
2698
|
return DeviceConfigurationApiFp(this.configuration).getDevice(cell, identifier, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2877,7 +2704,6 @@ var DeviceConfigurationApi = class extends BaseAPI {
|
|
|
2877
2704
|
* @param {*} [options] Override http request option.
|
|
2878
2705
|
* @deprecated
|
|
2879
2706
|
* @throws {RequiredError}
|
|
2880
|
-
* @memberof DeviceConfigurationApi
|
|
2881
2707
|
*/
|
|
2882
2708
|
listDevices(cell, options) {
|
|
2883
2709
|
return DeviceConfigurationApiFp(this.configuration).listDevices(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2885,7 +2711,6 @@ var DeviceConfigurationApi = class extends BaseAPI {
|
|
|
2885
2711
|
};
|
|
2886
2712
|
/**
|
|
2887
2713
|
* LibraryProgramApi - axios parameter creator
|
|
2888
|
-
* @export
|
|
2889
2714
|
*/
|
|
2890
2715
|
const LibraryProgramApiAxiosParamCreator = function(configuration) {
|
|
2891
2716
|
return {
|
|
@@ -3040,7 +2865,6 @@ const LibraryProgramApiAxiosParamCreator = function(configuration) {
|
|
|
3040
2865
|
};
|
|
3041
2866
|
/**
|
|
3042
2867
|
* LibraryProgramApi - functional programming interface
|
|
3043
|
-
* @export
|
|
3044
2868
|
*/
|
|
3045
2869
|
const LibraryProgramApiFp = function(configuration) {
|
|
3046
2870
|
const localVarAxiosParamCreator = LibraryProgramApiAxiosParamCreator(configuration);
|
|
@@ -3079,7 +2903,6 @@ const LibraryProgramApiFp = function(configuration) {
|
|
|
3079
2903
|
};
|
|
3080
2904
|
/**
|
|
3081
2905
|
* LibraryProgramApi - factory interface
|
|
3082
|
-
* @export
|
|
3083
2906
|
*/
|
|
3084
2907
|
const LibraryProgramApiFactory = function(configuration, basePath, axios) {
|
|
3085
2908
|
const localVarFp = LibraryProgramApiFp(configuration);
|
|
@@ -3103,9 +2926,6 @@ const LibraryProgramApiFactory = function(configuration, basePath, axios) {
|
|
|
3103
2926
|
};
|
|
3104
2927
|
/**
|
|
3105
2928
|
* LibraryProgramApi - object-oriented interface
|
|
3106
|
-
* @export
|
|
3107
|
-
* @class LibraryProgramApi
|
|
3108
|
-
* @extends {BaseAPI}
|
|
3109
2929
|
*/
|
|
3110
2930
|
var LibraryProgramApi = class extends BaseAPI {
|
|
3111
2931
|
/**
|
|
@@ -3116,7 +2936,6 @@ var LibraryProgramApi = class extends BaseAPI {
|
|
|
3116
2936
|
* @param {string} [name]
|
|
3117
2937
|
* @param {*} [options] Override http request option.
|
|
3118
2938
|
* @throws {RequiredError}
|
|
3119
|
-
* @memberof LibraryProgramApi
|
|
3120
2939
|
*/
|
|
3121
2940
|
createProgram(cell, body, name, options) {
|
|
3122
2941
|
return LibraryProgramApiFp(this.configuration).createProgram(cell, body, name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3128,7 +2947,6 @@ var LibraryProgramApi = class extends BaseAPI {
|
|
|
3128
2947
|
* @param {string} program Recieved from [listProgramMetadata](listProgramMetadata) or from the response of [createProgram](createProgram).
|
|
3129
2948
|
* @param {*} [options] Override http request option.
|
|
3130
2949
|
* @throws {RequiredError}
|
|
3131
|
-
* @memberof LibraryProgramApi
|
|
3132
2950
|
*/
|
|
3133
2951
|
deleteProgram(cell, program, options) {
|
|
3134
2952
|
return LibraryProgramApiFp(this.configuration).deleteProgram(cell, program, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3140,7 +2958,6 @@ var LibraryProgramApi = class extends BaseAPI {
|
|
|
3140
2958
|
* @param {Array<string>} programIds Recieved from [listProgramMetadata](listProgramMetadata) or from the response of [createProgram](createProgram).
|
|
3141
2959
|
* @param {*} [options] Override http request option.
|
|
3142
2960
|
* @throws {RequiredError}
|
|
3143
|
-
* @memberof LibraryProgramApi
|
|
3144
2961
|
*/
|
|
3145
2962
|
deleteProgramList(cell, programIds, options) {
|
|
3146
2963
|
return LibraryProgramApiFp(this.configuration).deleteProgramList(cell, programIds, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3152,7 +2969,6 @@ var LibraryProgramApi = class extends BaseAPI {
|
|
|
3152
2969
|
* @param {string} program Recieved from [listProgramMetadata](listProgramMetadata) or from the response of [createProgram](createProgram).
|
|
3153
2970
|
* @param {*} [options] Override http request option.
|
|
3154
2971
|
* @throws {RequiredError}
|
|
3155
|
-
* @memberof LibraryProgramApi
|
|
3156
2972
|
*/
|
|
3157
2973
|
getProgram(cell, program, options) {
|
|
3158
2974
|
return LibraryProgramApiFp(this.configuration).getProgram(cell, program, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3165,7 +2981,6 @@ var LibraryProgramApi = class extends BaseAPI {
|
|
|
3165
2981
|
* @param {string} body
|
|
3166
2982
|
* @param {*} [options] Override http request option.
|
|
3167
2983
|
* @throws {RequiredError}
|
|
3168
|
-
* @memberof LibraryProgramApi
|
|
3169
2984
|
*/
|
|
3170
2985
|
updateProgram(cell, program, body, options) {
|
|
3171
2986
|
return LibraryProgramApiFp(this.configuration).updateProgram(cell, program, body, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3173,7 +2988,6 @@ var LibraryProgramApi = class extends BaseAPI {
|
|
|
3173
2988
|
};
|
|
3174
2989
|
/**
|
|
3175
2990
|
* LibraryProgramMetadataApi - axios parameter creator
|
|
3176
|
-
* @export
|
|
3177
2991
|
*/
|
|
3178
2992
|
const LibraryProgramMetadataApiAxiosParamCreator = function(configuration) {
|
|
3179
2993
|
return {
|
|
@@ -3301,7 +3115,6 @@ const LibraryProgramMetadataApiAxiosParamCreator = function(configuration) {
|
|
|
3301
3115
|
};
|
|
3302
3116
|
/**
|
|
3303
3117
|
* LibraryProgramMetadataApi - functional programming interface
|
|
3304
|
-
* @export
|
|
3305
3118
|
*/
|
|
3306
3119
|
const LibraryProgramMetadataApiFp = function(configuration) {
|
|
3307
3120
|
const localVarAxiosParamCreator = LibraryProgramMetadataApiAxiosParamCreator(configuration);
|
|
@@ -3334,7 +3147,6 @@ const LibraryProgramMetadataApiFp = function(configuration) {
|
|
|
3334
3147
|
};
|
|
3335
3148
|
/**
|
|
3336
3149
|
* LibraryProgramMetadataApi - factory interface
|
|
3337
|
-
* @export
|
|
3338
3150
|
*/
|
|
3339
3151
|
const LibraryProgramMetadataApiFactory = function(configuration, basePath, axios) {
|
|
3340
3152
|
const localVarFp = LibraryProgramMetadataApiFp(configuration);
|
|
@@ -3355,9 +3167,6 @@ const LibraryProgramMetadataApiFactory = function(configuration, basePath, axios
|
|
|
3355
3167
|
};
|
|
3356
3168
|
/**
|
|
3357
3169
|
* LibraryProgramMetadataApi - object-oriented interface
|
|
3358
|
-
* @export
|
|
3359
|
-
* @class LibraryProgramMetadataApi
|
|
3360
|
-
* @extends {BaseAPI}
|
|
3361
3170
|
*/
|
|
3362
3171
|
var LibraryProgramMetadataApi = class extends BaseAPI {
|
|
3363
3172
|
/**
|
|
@@ -3367,7 +3176,6 @@ var LibraryProgramMetadataApi = class extends BaseAPI {
|
|
|
3367
3176
|
* @param {string} program Recieved from [listProgramMetadata](listProgramMetadata) or from the response of [createProgram](createProgram).
|
|
3368
3177
|
* @param {*} [options] Override http request option.
|
|
3369
3178
|
* @throws {RequiredError}
|
|
3370
|
-
* @memberof LibraryProgramMetadataApi
|
|
3371
3179
|
*/
|
|
3372
3180
|
getProgramMetadata(cell, program, options) {
|
|
3373
3181
|
return LibraryProgramMetadataApiFp(this.configuration).getProgramMetadata(cell, program, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3379,7 +3187,6 @@ var LibraryProgramMetadataApi = class extends BaseAPI {
|
|
|
3379
3187
|
* @param {boolean} [showHidden] If true, hidden programs, where the `is_hidden` flag is active, are included in the list.
|
|
3380
3188
|
* @param {*} [options] Override http request option.
|
|
3381
3189
|
* @throws {RequiredError}
|
|
3382
|
-
* @memberof LibraryProgramMetadataApi
|
|
3383
3190
|
*/
|
|
3384
3191
|
listProgramMetadata(cell, showHidden, options) {
|
|
3385
3192
|
return LibraryProgramMetadataApiFp(this.configuration).listProgramMetadata(cell, showHidden, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3392,7 +3199,6 @@ var LibraryProgramMetadataApi = class extends BaseAPI {
|
|
|
3392
3199
|
* @param {UpdateProgramMetadataRequest} updateProgramMetadataRequest
|
|
3393
3200
|
* @param {*} [options] Override http request option.
|
|
3394
3201
|
* @throws {RequiredError}
|
|
3395
|
-
* @memberof LibraryProgramMetadataApi
|
|
3396
3202
|
*/
|
|
3397
3203
|
updateProgramMetadata(cell, program, updateProgramMetadataRequest, options) {
|
|
3398
3204
|
return LibraryProgramMetadataApiFp(this.configuration).updateProgramMetadata(cell, program, updateProgramMetadataRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3405,7 +3211,6 @@ var LibraryProgramMetadataApi = class extends BaseAPI {
|
|
|
3405
3211
|
* @param {File} file
|
|
3406
3212
|
* @param {*} [options] Override http request option.
|
|
3407
3213
|
* @throws {RequiredError}
|
|
3408
|
-
* @memberof LibraryProgramMetadataApi
|
|
3409
3214
|
*/
|
|
3410
3215
|
uploadProgramMetadataImage(cell, program, file, options) {
|
|
3411
3216
|
return LibraryProgramMetadataApiFp(this.configuration).uploadProgramMetadataImage(cell, program, file, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3413,7 +3218,6 @@ var LibraryProgramMetadataApi = class extends BaseAPI {
|
|
|
3413
3218
|
};
|
|
3414
3219
|
/**
|
|
3415
3220
|
* LibraryRecipeApi - axios parameter creator
|
|
3416
|
-
* @export
|
|
3417
3221
|
*/
|
|
3418
3222
|
const LibraryRecipeApiAxiosParamCreator = function(configuration) {
|
|
3419
3223
|
return {
|
|
@@ -3570,7 +3374,6 @@ const LibraryRecipeApiAxiosParamCreator = function(configuration) {
|
|
|
3570
3374
|
};
|
|
3571
3375
|
/**
|
|
3572
3376
|
* LibraryRecipeApi - functional programming interface
|
|
3573
|
-
* @export
|
|
3574
3377
|
*/
|
|
3575
3378
|
const LibraryRecipeApiFp = function(configuration) {
|
|
3576
3379
|
const localVarAxiosParamCreator = LibraryRecipeApiAxiosParamCreator(configuration);
|
|
@@ -3609,7 +3412,6 @@ const LibraryRecipeApiFp = function(configuration) {
|
|
|
3609
3412
|
};
|
|
3610
3413
|
/**
|
|
3611
3414
|
* LibraryRecipeApi - factory interface
|
|
3612
|
-
* @export
|
|
3613
3415
|
*/
|
|
3614
3416
|
const LibraryRecipeApiFactory = function(configuration, basePath, axios) {
|
|
3615
3417
|
const localVarFp = LibraryRecipeApiFp(configuration);
|
|
@@ -3633,9 +3435,6 @@ const LibraryRecipeApiFactory = function(configuration, basePath, axios) {
|
|
|
3633
3435
|
};
|
|
3634
3436
|
/**
|
|
3635
3437
|
* LibraryRecipeApi - object-oriented interface
|
|
3636
|
-
* @export
|
|
3637
|
-
* @class LibraryRecipeApi
|
|
3638
|
-
* @extends {BaseAPI}
|
|
3639
3438
|
*/
|
|
3640
3439
|
var LibraryRecipeApi = class extends BaseAPI {
|
|
3641
3440
|
/**
|
|
@@ -3647,7 +3446,6 @@ var LibraryRecipeApi = class extends BaseAPI {
|
|
|
3647
3446
|
* @param {string} [name] If no inital name is set a default name based on the program and timestamp is created.
|
|
3648
3447
|
* @param {*} [options] Override http request option.
|
|
3649
3448
|
* @throws {RequiredError}
|
|
3650
|
-
* @memberof LibraryRecipeApi
|
|
3651
3449
|
*/
|
|
3652
3450
|
createRecipe(cell, programId, body, name, options) {
|
|
3653
3451
|
return LibraryRecipeApiFp(this.configuration).createRecipe(cell, programId, body, name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3659,7 +3457,6 @@ var LibraryRecipeApi = class extends BaseAPI {
|
|
|
3659
3457
|
* @param {string} recipe Recieved from [listRecipeMetadata](listRecipeMetadata) or from the response of [createRecipe](createRecipe).
|
|
3660
3458
|
* @param {*} [options] Override http request option.
|
|
3661
3459
|
* @throws {RequiredError}
|
|
3662
|
-
* @memberof LibraryRecipeApi
|
|
3663
3460
|
*/
|
|
3664
3461
|
deleteRecipe(cell, recipe, options) {
|
|
3665
3462
|
return LibraryRecipeApiFp(this.configuration).deleteRecipe(cell, recipe, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3671,7 +3468,6 @@ var LibraryRecipeApi = class extends BaseAPI {
|
|
|
3671
3468
|
* @param {Array<string>} recipeIds Recieved from [listRecipeMetadata](listRecipeMetadata) or from the response of [createRecipe](createRecipe)
|
|
3672
3469
|
* @param {*} [options] Override http request option.
|
|
3673
3470
|
* @throws {RequiredError}
|
|
3674
|
-
* @memberof LibraryRecipeApi
|
|
3675
3471
|
*/
|
|
3676
3472
|
deleteRecipeList(cell, recipeIds, options) {
|
|
3677
3473
|
return LibraryRecipeApiFp(this.configuration).deleteRecipeList(cell, recipeIds, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3683,7 +3479,6 @@ var LibraryRecipeApi = class extends BaseAPI {
|
|
|
3683
3479
|
* @param {string} recipe Recieved from [listRecipeMetadata](listRecipeMetadata) or from the response of [createRecipe](createRecipe).
|
|
3684
3480
|
* @param {*} [options] Override http request option.
|
|
3685
3481
|
* @throws {RequiredError}
|
|
3686
|
-
* @memberof LibraryRecipeApi
|
|
3687
3482
|
*/
|
|
3688
3483
|
getRecipe(cell, recipe, options) {
|
|
3689
3484
|
return LibraryRecipeApiFp(this.configuration).getRecipe(cell, recipe, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3696,7 +3491,6 @@ var LibraryRecipeApi = class extends BaseAPI {
|
|
|
3696
3491
|
* @param {object} body
|
|
3697
3492
|
* @param {*} [options] Override http request option.
|
|
3698
3493
|
* @throws {RequiredError}
|
|
3699
|
-
* @memberof LibraryRecipeApi
|
|
3700
3494
|
*/
|
|
3701
3495
|
updateRecipe(cell, recipe, body, options) {
|
|
3702
3496
|
return LibraryRecipeApiFp(this.configuration).updateRecipe(cell, recipe, body, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3704,7 +3498,6 @@ var LibraryRecipeApi = class extends BaseAPI {
|
|
|
3704
3498
|
};
|
|
3705
3499
|
/**
|
|
3706
3500
|
* LibraryRecipeMetadataApi - axios parameter creator
|
|
3707
|
-
* @export
|
|
3708
3501
|
*/
|
|
3709
3502
|
const LibraryRecipeMetadataApiAxiosParamCreator = function(configuration) {
|
|
3710
3503
|
return {
|
|
@@ -3831,7 +3624,6 @@ const LibraryRecipeMetadataApiAxiosParamCreator = function(configuration) {
|
|
|
3831
3624
|
};
|
|
3832
3625
|
/**
|
|
3833
3626
|
* LibraryRecipeMetadataApi - functional programming interface
|
|
3834
|
-
* @export
|
|
3835
3627
|
*/
|
|
3836
3628
|
const LibraryRecipeMetadataApiFp = function(configuration) {
|
|
3837
3629
|
const localVarAxiosParamCreator = LibraryRecipeMetadataApiAxiosParamCreator(configuration);
|
|
@@ -3864,7 +3656,6 @@ const LibraryRecipeMetadataApiFp = function(configuration) {
|
|
|
3864
3656
|
};
|
|
3865
3657
|
/**
|
|
3866
3658
|
* LibraryRecipeMetadataApi - factory interface
|
|
3867
|
-
* @export
|
|
3868
3659
|
*/
|
|
3869
3660
|
const LibraryRecipeMetadataApiFactory = function(configuration, basePath, axios) {
|
|
3870
3661
|
const localVarFp = LibraryRecipeMetadataApiFp(configuration);
|
|
@@ -3885,9 +3676,6 @@ const LibraryRecipeMetadataApiFactory = function(configuration, basePath, axios)
|
|
|
3885
3676
|
};
|
|
3886
3677
|
/**
|
|
3887
3678
|
* LibraryRecipeMetadataApi - object-oriented interface
|
|
3888
|
-
* @export
|
|
3889
|
-
* @class LibraryRecipeMetadataApi
|
|
3890
|
-
* @extends {BaseAPI}
|
|
3891
3679
|
*/
|
|
3892
3680
|
var LibraryRecipeMetadataApi = class extends BaseAPI {
|
|
3893
3681
|
/**
|
|
@@ -3897,7 +3685,6 @@ var LibraryRecipeMetadataApi = class extends BaseAPI {
|
|
|
3897
3685
|
* @param {string} recipe Recieved from [listRecipeMetadata](listRecipeMetadata) or from the response of [createRecipe](createRecipe).
|
|
3898
3686
|
* @param {*} [options] Override http request option.
|
|
3899
3687
|
* @throws {RequiredError}
|
|
3900
|
-
* @memberof LibraryRecipeMetadataApi
|
|
3901
3688
|
*/
|
|
3902
3689
|
getRecipeMetadata(cell, recipe, options) {
|
|
3903
3690
|
return LibraryRecipeMetadataApiFp(this.configuration).getRecipeMetadata(cell, recipe, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3908,7 +3695,6 @@ var LibraryRecipeMetadataApi = class extends BaseAPI {
|
|
|
3908
3695
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3909
3696
|
* @param {*} [options] Override http request option.
|
|
3910
3697
|
* @throws {RequiredError}
|
|
3911
|
-
* @memberof LibraryRecipeMetadataApi
|
|
3912
3698
|
*/
|
|
3913
3699
|
listRecipeMetadata(cell, options) {
|
|
3914
3700
|
return LibraryRecipeMetadataApiFp(this.configuration).listRecipeMetadata(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3921,7 +3707,6 @@ var LibraryRecipeMetadataApi = class extends BaseAPI {
|
|
|
3921
3707
|
* @param {UpdateRecipeMetadataRequest} updateRecipeMetadataRequest
|
|
3922
3708
|
* @param {*} [options] Override http request option.
|
|
3923
3709
|
* @throws {RequiredError}
|
|
3924
|
-
* @memberof LibraryRecipeMetadataApi
|
|
3925
3710
|
*/
|
|
3926
3711
|
updateRecipeMetadata(cell, recipe, updateRecipeMetadataRequest, options) {
|
|
3927
3712
|
return LibraryRecipeMetadataApiFp(this.configuration).updateRecipeMetadata(cell, recipe, updateRecipeMetadataRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3934,7 +3719,6 @@ var LibraryRecipeMetadataApi = class extends BaseAPI {
|
|
|
3934
3719
|
* @param {File} file
|
|
3935
3720
|
* @param {*} [options] Override http request option.
|
|
3936
3721
|
* @throws {RequiredError}
|
|
3937
|
-
* @memberof LibraryRecipeMetadataApi
|
|
3938
3722
|
*/
|
|
3939
3723
|
uploadRecipeMetadataImage(cell, recipe, file, options) {
|
|
3940
3724
|
return LibraryRecipeMetadataApiFp(this.configuration).uploadRecipeMetadataImage(cell, recipe, file, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3942,7 +3726,6 @@ var LibraryRecipeMetadataApi = class extends BaseAPI {
|
|
|
3942
3726
|
};
|
|
3943
3727
|
/**
|
|
3944
3728
|
* LicenseApi - axios parameter creator
|
|
3945
|
-
* @export
|
|
3946
3729
|
*/
|
|
3947
3730
|
const LicenseApiAxiosParamCreator = function(configuration) {
|
|
3948
3731
|
return {
|
|
@@ -4053,7 +3836,6 @@ const LicenseApiAxiosParamCreator = function(configuration) {
|
|
|
4053
3836
|
};
|
|
4054
3837
|
/**
|
|
4055
3838
|
* LicenseApi - functional programming interface
|
|
4056
|
-
* @export
|
|
4057
3839
|
*/
|
|
4058
3840
|
const LicenseApiFp = function(configuration) {
|
|
4059
3841
|
const localVarAxiosParamCreator = LicenseApiAxiosParamCreator(configuration);
|
|
@@ -4086,7 +3868,6 @@ const LicenseApiFp = function(configuration) {
|
|
|
4086
3868
|
};
|
|
4087
3869
|
/**
|
|
4088
3870
|
* LicenseApi - factory interface
|
|
4089
|
-
* @export
|
|
4090
3871
|
*/
|
|
4091
3872
|
const LicenseApiFactory = function(configuration, basePath, axios) {
|
|
4092
3873
|
const localVarFp = LicenseApiFp(configuration);
|
|
@@ -4107,9 +3888,6 @@ const LicenseApiFactory = function(configuration, basePath, axios) {
|
|
|
4107
3888
|
};
|
|
4108
3889
|
/**
|
|
4109
3890
|
* LicenseApi - object-oriented interface
|
|
4110
|
-
* @export
|
|
4111
|
-
* @class LicenseApi
|
|
4112
|
-
* @extends {BaseAPI}
|
|
4113
3891
|
*/
|
|
4114
3892
|
var LicenseApi = class extends BaseAPI {
|
|
4115
3893
|
/**
|
|
@@ -4118,7 +3896,6 @@ var LicenseApi = class extends BaseAPI {
|
|
|
4118
3896
|
* @param {ActivateLicenseRequest} activateLicenseRequest
|
|
4119
3897
|
* @param {*} [options] Override http request option.
|
|
4120
3898
|
* @throws {RequiredError}
|
|
4121
|
-
* @memberof LicenseApi
|
|
4122
3899
|
*/
|
|
4123
3900
|
activateLicense(activateLicenseRequest, options) {
|
|
4124
3901
|
return LicenseApiFp(this.configuration).activateLicense(activateLicenseRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4128,7 +3905,6 @@ var LicenseApi = class extends BaseAPI {
|
|
|
4128
3905
|
* @summary Deactivate license
|
|
4129
3906
|
* @param {*} [options] Override http request option.
|
|
4130
3907
|
* @throws {RequiredError}
|
|
4131
|
-
* @memberof LicenseApi
|
|
4132
3908
|
*/
|
|
4133
3909
|
deactivateLicense(options) {
|
|
4134
3910
|
return LicenseApiFp(this.configuration).deactivateLicense(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4138,7 +3914,6 @@ var LicenseApi = class extends BaseAPI {
|
|
|
4138
3914
|
* @summary Get license
|
|
4139
3915
|
* @param {*} [options] Override http request option.
|
|
4140
3916
|
* @throws {RequiredError}
|
|
4141
|
-
* @memberof LicenseApi
|
|
4142
3917
|
*/
|
|
4143
3918
|
getLicense(options) {
|
|
4144
3919
|
return LicenseApiFp(this.configuration).getLicense(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4148,7 +3923,6 @@ var LicenseApi = class extends BaseAPI {
|
|
|
4148
3923
|
* @summary Get license status
|
|
4149
3924
|
* @param {*} [options] Override http request option.
|
|
4150
3925
|
* @throws {RequiredError}
|
|
4151
|
-
* @memberof LicenseApi
|
|
4152
3926
|
*/
|
|
4153
3927
|
getLicenseStatus(options) {
|
|
4154
3928
|
return LicenseApiFp(this.configuration).getLicenseStatus(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4156,7 +3930,6 @@ var LicenseApi = class extends BaseAPI {
|
|
|
4156
3930
|
};
|
|
4157
3931
|
/**
|
|
4158
3932
|
* MotionApi - axios parameter creator
|
|
4159
|
-
* @export
|
|
4160
3933
|
*/
|
|
4161
3934
|
const MotionApiAxiosParamCreator = function(configuration) {
|
|
4162
3935
|
return {
|
|
@@ -4672,7 +4445,6 @@ const MotionApiAxiosParamCreator = function(configuration) {
|
|
|
4672
4445
|
};
|
|
4673
4446
|
/**
|
|
4674
4447
|
* MotionApi - functional programming interface
|
|
4675
|
-
* @export
|
|
4676
4448
|
*/
|
|
4677
4449
|
const MotionApiFp = function(configuration) {
|
|
4678
4450
|
const localVarAxiosParamCreator = MotionApiAxiosParamCreator(configuration);
|
|
@@ -4783,7 +4555,6 @@ const MotionApiFp = function(configuration) {
|
|
|
4783
4555
|
};
|
|
4784
4556
|
/**
|
|
4785
4557
|
* MotionApi - factory interface
|
|
4786
|
-
* @export
|
|
4787
4558
|
*/
|
|
4788
4559
|
const MotionApiFactory = function(configuration, basePath, axios) {
|
|
4789
4560
|
const localVarFp = MotionApiFp(configuration);
|
|
@@ -4843,9 +4614,6 @@ const MotionApiFactory = function(configuration, basePath, axios) {
|
|
|
4843
4614
|
};
|
|
4844
4615
|
/**
|
|
4845
4616
|
* MotionApi - object-oriented interface
|
|
4846
|
-
* @export
|
|
4847
|
-
* @class MotionApi
|
|
4848
|
-
* @extends {BaseAPI}
|
|
4849
4617
|
*/
|
|
4850
4618
|
var MotionApi = class extends BaseAPI {
|
|
4851
4619
|
/**
|
|
@@ -4854,7 +4622,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4854
4622
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4855
4623
|
* @param {*} [options] Override http request option.
|
|
4856
4624
|
* @throws {RequiredError}
|
|
4857
|
-
* @memberof MotionApi
|
|
4858
4625
|
*/
|
|
4859
4626
|
deleteAllMotions(cell, options) {
|
|
4860
4627
|
return MotionApiFp(this.configuration).deleteAllMotions(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4866,7 +4633,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4866
4633
|
* @param {string} motion This represents the UUID of a motion. Every executable or partially executable motion is cached and an UUID is returned. Indicate the UUID to execute the motion or retrieve information on the motion.
|
|
4867
4634
|
* @param {*} [options] Override http request option.
|
|
4868
4635
|
* @throws {RequiredError}
|
|
4869
|
-
* @memberof MotionApi
|
|
4870
4636
|
*/
|
|
4871
4637
|
deleteMotion(cell, motion, options) {
|
|
4872
4638
|
return MotionApiFp(this.configuration).deleteMotion(cell, motion, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4878,7 +4644,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4878
4644
|
* @param {ExecuteTrajectoryRequest} executeTrajectoryRequest
|
|
4879
4645
|
* @param {*} [options] Override http request option.
|
|
4880
4646
|
* @throws {RequiredError}
|
|
4881
|
-
* @memberof MotionApi
|
|
4882
4647
|
*/
|
|
4883
4648
|
executeTrajectory(cell, executeTrajectoryRequest, options) {
|
|
4884
4649
|
return MotionApiFp(this.configuration).executeTrajectory(cell, executeTrajectoryRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4892,7 +4657,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4892
4657
|
* @param {string} [responsesCoordinateSystem] Unique identifier addressing a coordinate system to which the cartesian data of the responses should be converted. Default: world coordinate system.
|
|
4893
4658
|
* @param {*} [options] Override http request option.
|
|
4894
4659
|
* @throws {RequiredError}
|
|
4895
|
-
* @memberof MotionApi
|
|
4896
4660
|
*/
|
|
4897
4661
|
getMotionTrajectory(cell, motion, sampleTime, responsesCoordinateSystem, options) {
|
|
4898
4662
|
return MotionApiFp(this.configuration).getMotionTrajectory(cell, motion, sampleTime, responsesCoordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4906,7 +4670,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4906
4670
|
* @param {string} [responseCoordinateSystem] Unique identifier addressing a coordinate system in which the cartesian data of the response should be converted to. Default is the world coordinate system.
|
|
4907
4671
|
* @param {*} [options] Override http request option.
|
|
4908
4672
|
* @throws {RequiredError}
|
|
4909
|
-
* @memberof MotionApi
|
|
4910
4673
|
*/
|
|
4911
4674
|
getMotionTrajectorySample(cell, motion, locationOnTrajectory, responseCoordinateSystem, options) {
|
|
4912
4675
|
return MotionApiFp(this.configuration).getMotionTrajectorySample(cell, motion, locationOnTrajectory, responseCoordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4919,7 +4682,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4919
4682
|
* @param {number} [sampleTime] -| The value of `sample_time` is the time in milliseconds (ms) between each datapoint of the planned motion. Optional. If not provided, the data is returned as it is stored internally and equidistant sampling is not guaranteed.
|
|
4920
4683
|
* @param {*} [options] Override http request option.
|
|
4921
4684
|
* @throws {RequiredError}
|
|
4922
|
-
* @memberof MotionApi
|
|
4923
4685
|
*/
|
|
4924
4686
|
getPlannedMotion(cell, motion, sampleTime, options) {
|
|
4925
4687
|
return MotionApiFp(this.configuration).getPlannedMotion(cell, motion, sampleTime, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4930,7 +4692,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4930
4692
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4931
4693
|
* @param {*} [options] Override http request option.
|
|
4932
4694
|
* @throws {RequiredError}
|
|
4933
|
-
* @memberof MotionApi
|
|
4934
4695
|
*/
|
|
4935
4696
|
getPlanningMotionGroupModels(cell, options) {
|
|
4936
4697
|
return MotionApiFp(this.configuration).getPlanningMotionGroupModels(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4941,7 +4702,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4941
4702
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4942
4703
|
* @param {*} [options] Override http request option.
|
|
4943
4704
|
* @throws {RequiredError}
|
|
4944
|
-
* @memberof MotionApi
|
|
4945
4705
|
*/
|
|
4946
4706
|
listMotions(cell, options) {
|
|
4947
4707
|
return MotionApiFp(this.configuration).listMotions(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4953,7 +4713,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4953
4713
|
* @param {PlannedMotion} plannedMotion
|
|
4954
4714
|
* @param {*} [options] Override http request option.
|
|
4955
4715
|
* @throws {RequiredError}
|
|
4956
|
-
* @memberof MotionApi
|
|
4957
4716
|
*/
|
|
4958
4717
|
loadPlannedMotion(cell, plannedMotion, options) {
|
|
4959
4718
|
return MotionApiFp(this.configuration).loadPlannedMotion(cell, plannedMotion, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4965,7 +4724,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4965
4724
|
* @param {PlanCollisionFreePTPRequest} [planCollisionFreePTPRequest]
|
|
4966
4725
|
* @param {*} [options] Override http request option.
|
|
4967
4726
|
* @throws {RequiredError}
|
|
4968
|
-
* @memberof MotionApi
|
|
4969
4727
|
*/
|
|
4970
4728
|
planCollisionFreePTP(cell, planCollisionFreePTPRequest, options) {
|
|
4971
4729
|
return MotionApiFp(this.configuration).planCollisionFreePTP(cell, planCollisionFreePTPRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4978,7 +4736,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4978
4736
|
* @param {*} [options] Override http request option.
|
|
4979
4737
|
* @deprecated
|
|
4980
4738
|
* @throws {RequiredError}
|
|
4981
|
-
* @memberof MotionApi
|
|
4982
4739
|
*/
|
|
4983
4740
|
planMotion(cell, planRequest, options) {
|
|
4984
4741
|
return MotionApiFp(this.configuration).planMotion(cell, planRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4990,7 +4747,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4990
4747
|
* @param {PlanTrajectoryRequest} [planTrajectoryRequest]
|
|
4991
4748
|
* @param {*} [options] Override http request option.
|
|
4992
4749
|
* @throws {RequiredError}
|
|
4993
|
-
* @memberof MotionApi
|
|
4994
4750
|
*/
|
|
4995
4751
|
planTrajectory(cell, planTrajectoryRequest, options) {
|
|
4996
4752
|
return MotionApiFp(this.configuration).planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5002,7 +4758,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
5002
4758
|
* @param {string} motion This represents the UUID of a motion. Every executable or partially executable motion is cached and an UUID is returned. Indicate the UUID to execute the motion or retrieve information on the motion.
|
|
5003
4759
|
* @param {*} [options] Override http request option.
|
|
5004
4760
|
* @throws {RequiredError}
|
|
5005
|
-
* @memberof MotionApi
|
|
5006
4761
|
*/
|
|
5007
4762
|
stopExecution(cell, motion, options) {
|
|
5008
4763
|
return MotionApiFp(this.configuration).stopExecution(cell, motion, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5015,7 +4770,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
5015
4770
|
* @param {*} [options] Override http request option.
|
|
5016
4771
|
* @deprecated
|
|
5017
4772
|
* @throws {RequiredError}
|
|
5018
|
-
* @memberof MotionApi
|
|
5019
4773
|
*/
|
|
5020
4774
|
streamMove(cell, streamMoveRequest, options) {
|
|
5021
4775
|
return MotionApiFp(this.configuration).streamMove(cell, streamMoveRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5032,7 +4786,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
5032
4786
|
* @param {*} [options] Override http request option.
|
|
5033
4787
|
* @deprecated
|
|
5034
4788
|
* @throws {RequiredError}
|
|
5035
|
-
* @memberof MotionApi
|
|
5036
4789
|
*/
|
|
5037
4790
|
streamMoveBackward(cell, motion, playbackSpeedInPercent, responseRate, responseCoordinateSystem, startLocationOnTrajectory, options) {
|
|
5038
4791
|
return MotionApiFp(this.configuration).streamMoveBackward(cell, motion, playbackSpeedInPercent, responseRate, responseCoordinateSystem, startLocationOnTrajectory, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5049,7 +4802,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
5049
4802
|
* @param {*} [options] Override http request option.
|
|
5050
4803
|
* @deprecated
|
|
5051
4804
|
* @throws {RequiredError}
|
|
5052
|
-
* @memberof MotionApi
|
|
5053
4805
|
*/
|
|
5054
4806
|
streamMoveForward(cell, motion, playbackSpeedInPercent, responseRate, responseCoordinateSystem, startLocationOnTrajectory, options) {
|
|
5055
4807
|
return MotionApiFp(this.configuration).streamMoveForward(cell, motion, playbackSpeedInPercent, responseRate, responseCoordinateSystem, startLocationOnTrajectory, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5069,7 +4821,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
5069
4821
|
* @param {string} [responsesCoordinateSystem]
|
|
5070
4822
|
* @param {*} [options] Override http request option.
|
|
5071
4823
|
* @throws {RequiredError}
|
|
5072
|
-
* @memberof MotionApi
|
|
5073
4824
|
*/
|
|
5074
4825
|
streamMoveToTrajectoryViaJointPTP(cell, motion, locationOnTrajectory, limitOverrideJointVelocityLimitsJoints, limitOverrideJointAccelerationLimitsJoints, limitOverrideTcpVelocityLimit, limitOverrideTcpAccelerationLimit, limitOverrideTcpOrientationVelocityLimit, limitOverrideTcpOrientationAccelerationLimit, responsesCoordinateSystem, options) {
|
|
5075
4826
|
return MotionApiFp(this.configuration).streamMoveToTrajectoryViaJointPTP(cell, motion, locationOnTrajectory, limitOverrideJointVelocityLimitsJoints, limitOverrideJointAccelerationLimitsJoints, limitOverrideTcpVelocityLimit, limitOverrideTcpAccelerationLimit, limitOverrideTcpOrientationVelocityLimit, limitOverrideTcpOrientationAccelerationLimit, responsesCoordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5077,7 +4828,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
5077
4828
|
};
|
|
5078
4829
|
/**
|
|
5079
4830
|
* MotionGroupApi - axios parameter creator
|
|
5080
|
-
* @export
|
|
5081
4831
|
*/
|
|
5082
4832
|
const MotionGroupApiAxiosParamCreator = function(configuration) {
|
|
5083
4833
|
return {
|
|
@@ -5198,7 +4948,6 @@ const MotionGroupApiAxiosParamCreator = function(configuration) {
|
|
|
5198
4948
|
};
|
|
5199
4949
|
/**
|
|
5200
4950
|
* MotionGroupApi - functional programming interface
|
|
5201
|
-
* @export
|
|
5202
4951
|
*/
|
|
5203
4952
|
const MotionGroupApiFp = function(configuration) {
|
|
5204
4953
|
const localVarAxiosParamCreator = MotionGroupApiAxiosParamCreator(configuration);
|
|
@@ -5231,7 +4980,6 @@ const MotionGroupApiFp = function(configuration) {
|
|
|
5231
4980
|
};
|
|
5232
4981
|
/**
|
|
5233
4982
|
* MotionGroupApi - factory interface
|
|
5234
|
-
* @export
|
|
5235
4983
|
*/
|
|
5236
4984
|
const MotionGroupApiFactory = function(configuration, basePath, axios) {
|
|
5237
4985
|
const localVarFp = MotionGroupApiFp(configuration);
|
|
@@ -5252,9 +5000,6 @@ const MotionGroupApiFactory = function(configuration, basePath, axios) {
|
|
|
5252
5000
|
};
|
|
5253
5001
|
/**
|
|
5254
5002
|
* MotionGroupApi - object-oriented interface
|
|
5255
|
-
* @export
|
|
5256
|
-
* @class MotionGroupApi
|
|
5257
|
-
* @extends {BaseAPI}
|
|
5258
5003
|
*/
|
|
5259
5004
|
var MotionGroupApi = class extends BaseAPI {
|
|
5260
5005
|
/**
|
|
@@ -5264,7 +5009,6 @@ var MotionGroupApi = class extends BaseAPI {
|
|
|
5264
5009
|
* @param {string} controller
|
|
5265
5010
|
* @param {*} [options] Override http request option.
|
|
5266
5011
|
* @throws {RequiredError}
|
|
5267
|
-
* @memberof MotionGroupApi
|
|
5268
5012
|
*/
|
|
5269
5013
|
activateAllMotionGroups(cell, controller, options) {
|
|
5270
5014
|
return MotionGroupApiFp(this.configuration).activateAllMotionGroups(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5276,7 +5020,6 @@ var MotionGroupApi = class extends BaseAPI {
|
|
|
5276
5020
|
* @param {string} motionGroup
|
|
5277
5021
|
* @param {*} [options] Override http request option.
|
|
5278
5022
|
* @throws {RequiredError}
|
|
5279
|
-
* @memberof MotionGroupApi
|
|
5280
5023
|
*/
|
|
5281
5024
|
activateMotionGroup(cell, motionGroup, options) {
|
|
5282
5025
|
return MotionGroupApiFp(this.configuration).activateMotionGroup(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5288,7 +5031,6 @@ var MotionGroupApi = class extends BaseAPI {
|
|
|
5288
5031
|
* @param {string} motionGroup The motion-group id.
|
|
5289
5032
|
* @param {*} [options] Override http request option.
|
|
5290
5033
|
* @throws {RequiredError}
|
|
5291
|
-
* @memberof MotionGroupApi
|
|
5292
5034
|
*/
|
|
5293
5035
|
deactivateMotionGroup(cell, motionGroup, options) {
|
|
5294
5036
|
return MotionGroupApiFp(this.configuration).deactivateMotionGroup(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5299,7 +5041,6 @@ var MotionGroupApi = class extends BaseAPI {
|
|
|
5299
5041
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5300
5042
|
* @param {*} [options] Override http request option.
|
|
5301
5043
|
* @throws {RequiredError}
|
|
5302
|
-
* @memberof MotionGroupApi
|
|
5303
5044
|
*/
|
|
5304
5045
|
listMotionGroups(cell, options) {
|
|
5305
5046
|
return MotionGroupApiFp(this.configuration).listMotionGroups(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5307,7 +5048,6 @@ var MotionGroupApi = class extends BaseAPI {
|
|
|
5307
5048
|
};
|
|
5308
5049
|
/**
|
|
5309
5050
|
* MotionGroupInfosApi - axios parameter creator
|
|
5310
|
-
* @export
|
|
5311
5051
|
*/
|
|
5312
5052
|
const MotionGroupInfosApiAxiosParamCreator = function(configuration) {
|
|
5313
5053
|
return {
|
|
@@ -5631,7 +5371,6 @@ const MotionGroupInfosApiAxiosParamCreator = function(configuration) {
|
|
|
5631
5371
|
};
|
|
5632
5372
|
/**
|
|
5633
5373
|
* MotionGroupInfosApi - functional programming interface
|
|
5634
|
-
* @export
|
|
5635
5374
|
*/
|
|
5636
5375
|
const MotionGroupInfosApiFp = function(configuration) {
|
|
5637
5376
|
const localVarAxiosParamCreator = MotionGroupInfosApiAxiosParamCreator(configuration);
|
|
@@ -5706,7 +5445,6 @@ const MotionGroupInfosApiFp = function(configuration) {
|
|
|
5706
5445
|
};
|
|
5707
5446
|
/**
|
|
5708
5447
|
* MotionGroupInfosApi - factory interface
|
|
5709
|
-
* @export
|
|
5710
5448
|
*/
|
|
5711
5449
|
const MotionGroupInfosApiFactory = function(configuration, basePath, axios) {
|
|
5712
5450
|
const localVarFp = MotionGroupInfosApiFp(configuration);
|
|
@@ -5748,9 +5486,6 @@ const MotionGroupInfosApiFactory = function(configuration, basePath, axios) {
|
|
|
5748
5486
|
};
|
|
5749
5487
|
/**
|
|
5750
5488
|
* MotionGroupInfosApi - object-oriented interface
|
|
5751
|
-
* @export
|
|
5752
|
-
* @class MotionGroupInfosApi
|
|
5753
|
-
* @extends {BaseAPI}
|
|
5754
5489
|
*/
|
|
5755
5490
|
var MotionGroupInfosApi = class extends BaseAPI {
|
|
5756
5491
|
/**
|
|
@@ -5760,7 +5495,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5760
5495
|
* @param {string} motionGroup The motion-group id.
|
|
5761
5496
|
* @param {*} [options] Override http request option.
|
|
5762
5497
|
* @throws {RequiredError}
|
|
5763
|
-
* @memberof MotionGroupInfosApi
|
|
5764
5498
|
*/
|
|
5765
5499
|
getActivePayload(cell, motionGroup, options) {
|
|
5766
5500
|
return MotionGroupInfosApiFp(this.configuration).getActivePayload(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5773,7 +5507,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5773
5507
|
* @param {RotationAngleTypes} [rotationType]
|
|
5774
5508
|
* @param {*} [options] Override http request option.
|
|
5775
5509
|
* @throws {RequiredError}
|
|
5776
|
-
* @memberof MotionGroupInfosApi
|
|
5777
5510
|
*/
|
|
5778
5511
|
getActiveTcp(cell, motionGroup, rotationType, options) {
|
|
5779
5512
|
return MotionGroupInfosApiFp(this.configuration).getActiveTcp(cell, motionGroup, rotationType, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5787,7 +5520,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5787
5520
|
* @param {string} [responseCoordinateSystem] Unique identifier addressing a coordinate system to which the responses should be converted. If not set, world coordinate system is used.
|
|
5788
5521
|
* @param {*} [options] Override http request option.
|
|
5789
5522
|
* @throws {RequiredError}
|
|
5790
|
-
* @memberof MotionGroupInfosApi
|
|
5791
5523
|
*/
|
|
5792
5524
|
getCurrentMotionGroupState(cell, motionGroup, tcp, responseCoordinateSystem, options) {
|
|
5793
5525
|
return MotionGroupInfosApiFp(this.configuration).getCurrentMotionGroupState(cell, motionGroup, tcp, responseCoordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5799,7 +5531,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5799
5531
|
* @param {string} motionGroup The motion-group id.
|
|
5800
5532
|
* @param {*} [options] Override http request option.
|
|
5801
5533
|
* @throws {RequiredError}
|
|
5802
|
-
* @memberof MotionGroupInfosApi
|
|
5803
5534
|
*/
|
|
5804
5535
|
getInfoCapabilities(cell, motionGroup, options) {
|
|
5805
5536
|
return MotionGroupInfosApiFp(this.configuration).getInfoCapabilities(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5811,7 +5542,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5811
5542
|
* @param {string} motionGroup The motion-group id.
|
|
5812
5543
|
* @param {*} [options] Override http request option.
|
|
5813
5544
|
* @throws {RequiredError}
|
|
5814
|
-
* @memberof MotionGroupInfosApi
|
|
5815
5545
|
*/
|
|
5816
5546
|
getMotionGroupSpecification(cell, motionGroup, options) {
|
|
5817
5547
|
return MotionGroupInfosApiFp(this.configuration).getMotionGroupSpecification(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5823,7 +5553,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5823
5553
|
* @param {string} motionGroup The motion-group id.
|
|
5824
5554
|
* @param {*} [options] Override http request option.
|
|
5825
5555
|
* @throws {RequiredError}
|
|
5826
|
-
* @memberof MotionGroupInfosApi
|
|
5827
5556
|
*/
|
|
5828
5557
|
getMounting(cell, motionGroup, options) {
|
|
5829
5558
|
return MotionGroupInfosApiFp(this.configuration).getMounting(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5836,7 +5565,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5836
5565
|
* @param {string} [tcp]
|
|
5837
5566
|
* @param {*} [options] Override http request option.
|
|
5838
5567
|
* @throws {RequiredError}
|
|
5839
|
-
* @memberof MotionGroupInfosApi
|
|
5840
5568
|
*/
|
|
5841
5569
|
getOptimizerConfiguration(cell, motionGroup, tcp, options) {
|
|
5842
5570
|
return MotionGroupInfosApiFp(this.configuration).getOptimizerConfiguration(cell, motionGroup, tcp, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5848,7 +5576,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5848
5576
|
* @param {string} motionGroup The motion-group id.
|
|
5849
5577
|
* @param {*} [options] Override http request option.
|
|
5850
5578
|
* @throws {RequiredError}
|
|
5851
|
-
* @memberof MotionGroupInfosApi
|
|
5852
5579
|
*/
|
|
5853
5580
|
getSafetySetup(cell, motionGroup, options) {
|
|
5854
5581
|
return MotionGroupInfosApiFp(this.configuration).getSafetySetup(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5860,7 +5587,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5860
5587
|
* @param {string} motionGroup The motion-group id.
|
|
5861
5588
|
* @param {*} [options] Override http request option.
|
|
5862
5589
|
* @throws {RequiredError}
|
|
5863
|
-
* @memberof MotionGroupInfosApi
|
|
5864
5590
|
*/
|
|
5865
5591
|
listPayloads(cell, motionGroup, options) {
|
|
5866
5592
|
return MotionGroupInfosApiFp(this.configuration).listPayloads(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5873,7 +5599,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5873
5599
|
* @param {RotationAngleTypes} [rotationType]
|
|
5874
5600
|
* @param {*} [options] Override http request option.
|
|
5875
5601
|
* @throws {RequiredError}
|
|
5876
|
-
* @memberof MotionGroupInfosApi
|
|
5877
5602
|
*/
|
|
5878
5603
|
listTcps(cell, motionGroup, rotationType, options) {
|
|
5879
5604
|
return MotionGroupInfosApiFp(this.configuration).listTcps(cell, motionGroup, rotationType, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5888,7 +5613,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5888
5613
|
* @param {string} [tcp] The identifier of the tool center point (TCP) to be used for tcp_pose in response. If not set, the flange pose is returned as tcp_pose.
|
|
5889
5614
|
* @param {*} [options] Override http request option.
|
|
5890
5615
|
* @throws {RequiredError}
|
|
5891
|
-
* @memberof MotionGroupInfosApi
|
|
5892
5616
|
*/
|
|
5893
5617
|
streamMotionGroupState(cell, motionGroup, responseRate, responseCoordinateSystem, tcp, options) {
|
|
5894
5618
|
return MotionGroupInfosApiFp(this.configuration).streamMotionGroupState(cell, motionGroup, responseRate, responseCoordinateSystem, tcp, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5896,7 +5620,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5896
5620
|
};
|
|
5897
5621
|
/**
|
|
5898
5622
|
* MotionGroupJoggingApi - axios parameter creator
|
|
5899
|
-
* @export
|
|
5900
5623
|
*/
|
|
5901
5624
|
const MotionGroupJoggingApiAxiosParamCreator = function(configuration) {
|
|
5902
5625
|
return {
|
|
@@ -6020,7 +5743,6 @@ const MotionGroupJoggingApiAxiosParamCreator = function(configuration) {
|
|
|
6020
5743
|
};
|
|
6021
5744
|
/**
|
|
6022
5745
|
* MotionGroupJoggingApi - functional programming interface
|
|
6023
|
-
* @export
|
|
6024
5746
|
*/
|
|
6025
5747
|
const MotionGroupJoggingApiFp = function(configuration) {
|
|
6026
5748
|
const localVarAxiosParamCreator = MotionGroupJoggingApiAxiosParamCreator(configuration);
|
|
@@ -6053,7 +5775,6 @@ const MotionGroupJoggingApiFp = function(configuration) {
|
|
|
6053
5775
|
};
|
|
6054
5776
|
/**
|
|
6055
5777
|
* MotionGroupJoggingApi - factory interface
|
|
6056
|
-
* @export
|
|
6057
5778
|
*/
|
|
6058
5779
|
const MotionGroupJoggingApiFactory = function(configuration, basePath, axios) {
|
|
6059
5780
|
const localVarFp = MotionGroupJoggingApiFp(configuration);
|
|
@@ -6074,9 +5795,6 @@ const MotionGroupJoggingApiFactory = function(configuration, basePath, axios) {
|
|
|
6074
5795
|
};
|
|
6075
5796
|
/**
|
|
6076
5797
|
* MotionGroupJoggingApi - object-oriented interface
|
|
6077
|
-
* @export
|
|
6078
|
-
* @class MotionGroupJoggingApi
|
|
6079
|
-
* @extends {BaseAPI}
|
|
6080
5798
|
*/
|
|
6081
5799
|
var MotionGroupJoggingApi = class extends BaseAPI {
|
|
6082
5800
|
/**
|
|
@@ -6086,7 +5804,6 @@ var MotionGroupJoggingApi = class extends BaseAPI {
|
|
|
6086
5804
|
* @param {DirectionJoggingRequest} directionJoggingRequest
|
|
6087
5805
|
* @param {*} [options] Override http request option.
|
|
6088
5806
|
* @throws {RequiredError}
|
|
6089
|
-
* @memberof MotionGroupJoggingApi
|
|
6090
5807
|
*/
|
|
6091
5808
|
directionJogging(cell, directionJoggingRequest, options) {
|
|
6092
5809
|
return MotionGroupJoggingApiFp(this.configuration).directionJogging(cell, directionJoggingRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6098,7 +5815,6 @@ var MotionGroupJoggingApi = class extends BaseAPI {
|
|
|
6098
5815
|
* @param {string} motionGroup The motion-group id.
|
|
6099
5816
|
* @param {*} [options] Override http request option.
|
|
6100
5817
|
* @throws {RequiredError}
|
|
6101
|
-
* @memberof MotionGroupJoggingApi
|
|
6102
5818
|
*/
|
|
6103
5819
|
getJoggingCapabilities(cell, motionGroup, options) {
|
|
6104
5820
|
return MotionGroupJoggingApiFp(this.configuration).getJoggingCapabilities(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6110,7 +5826,6 @@ var MotionGroupJoggingApi = class extends BaseAPI {
|
|
|
6110
5826
|
* @param {JointJoggingRequest} jointJoggingRequest
|
|
6111
5827
|
* @param {*} [options] Override http request option.
|
|
6112
5828
|
* @throws {RequiredError}
|
|
6113
|
-
* @memberof MotionGroupJoggingApi
|
|
6114
5829
|
*/
|
|
6115
5830
|
jointJogging(cell, jointJoggingRequest, options) {
|
|
6116
5831
|
return MotionGroupJoggingApiFp(this.configuration).jointJogging(cell, jointJoggingRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6122,7 +5837,6 @@ var MotionGroupJoggingApi = class extends BaseAPI {
|
|
|
6122
5837
|
* @param {string} motionGroup The motion-group id.
|
|
6123
5838
|
* @param {*} [options] Override http request option.
|
|
6124
5839
|
* @throws {RequiredError}
|
|
6125
|
-
* @memberof MotionGroupJoggingApi
|
|
6126
5840
|
*/
|
|
6127
5841
|
stopJogging(cell, motionGroup, options) {
|
|
6128
5842
|
return MotionGroupJoggingApiFp(this.configuration).stopJogging(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6130,7 +5844,6 @@ var MotionGroupJoggingApi = class extends BaseAPI {
|
|
|
6130
5844
|
};
|
|
6131
5845
|
/**
|
|
6132
5846
|
* MotionGroupKinematicApi - axios parameter creator
|
|
6133
|
-
* @export
|
|
6134
5847
|
*/
|
|
6135
5848
|
const MotionGroupKinematicApiAxiosParamCreator = function(configuration) {
|
|
6136
5849
|
return {
|
|
@@ -6259,7 +5972,6 @@ const MotionGroupKinematicApiAxiosParamCreator = function(configuration) {
|
|
|
6259
5972
|
};
|
|
6260
5973
|
/**
|
|
6261
5974
|
* MotionGroupKinematicApi - functional programming interface
|
|
6262
|
-
* @export
|
|
6263
5975
|
*/
|
|
6264
5976
|
const MotionGroupKinematicApiFp = function(configuration) {
|
|
6265
5977
|
const localVarAxiosParamCreator = MotionGroupKinematicApiAxiosParamCreator(configuration);
|
|
@@ -6292,7 +6004,6 @@ const MotionGroupKinematicApiFp = function(configuration) {
|
|
|
6292
6004
|
};
|
|
6293
6005
|
/**
|
|
6294
6006
|
* MotionGroupKinematicApi - factory interface
|
|
6295
|
-
* @export
|
|
6296
6007
|
*/
|
|
6297
6008
|
const MotionGroupKinematicApiFactory = function(configuration, basePath, axios) {
|
|
6298
6009
|
const localVarFp = MotionGroupKinematicApiFp(configuration);
|
|
@@ -6313,9 +6024,6 @@ const MotionGroupKinematicApiFactory = function(configuration, basePath, axios)
|
|
|
6313
6024
|
};
|
|
6314
6025
|
/**
|
|
6315
6026
|
* MotionGroupKinematicApi - object-oriented interface
|
|
6316
|
-
* @export
|
|
6317
|
-
* @class MotionGroupKinematicApi
|
|
6318
|
-
* @extends {BaseAPI}
|
|
6319
6027
|
*/
|
|
6320
6028
|
var MotionGroupKinematicApi = class extends BaseAPI {
|
|
6321
6029
|
/**
|
|
@@ -6326,7 +6034,6 @@ var MotionGroupKinematicApi = class extends BaseAPI {
|
|
|
6326
6034
|
* @param {AllJointPositionsRequest} allJointPositionsRequest
|
|
6327
6035
|
* @param {*} [options] Override http request option.
|
|
6328
6036
|
* @throws {RequiredError}
|
|
6329
|
-
* @memberof MotionGroupKinematicApi
|
|
6330
6037
|
*/
|
|
6331
6038
|
calculateAllInverseKinematic(cell, motionGroup, allJointPositionsRequest, options) {
|
|
6332
6039
|
return MotionGroupKinematicApiFp(this.configuration).calculateAllInverseKinematic(cell, motionGroup, allJointPositionsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6339,7 +6046,6 @@ var MotionGroupKinematicApi = class extends BaseAPI {
|
|
|
6339
6046
|
* @param {TcpPoseRequest} tcpPoseRequest
|
|
6340
6047
|
* @param {*} [options] Override http request option.
|
|
6341
6048
|
* @throws {RequiredError}
|
|
6342
|
-
* @memberof MotionGroupKinematicApi
|
|
6343
6049
|
*/
|
|
6344
6050
|
calculateForwardKinematic(cell, motionGroup, tcpPoseRequest, options) {
|
|
6345
6051
|
return MotionGroupKinematicApiFp(this.configuration).calculateForwardKinematic(cell, motionGroup, tcpPoseRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6352,7 +6058,6 @@ var MotionGroupKinematicApi = class extends BaseAPI {
|
|
|
6352
6058
|
* @param {JointPositionRequest} jointPositionRequest
|
|
6353
6059
|
* @param {*} [options] Override http request option.
|
|
6354
6060
|
* @throws {RequiredError}
|
|
6355
|
-
* @memberof MotionGroupKinematicApi
|
|
6356
6061
|
*/
|
|
6357
6062
|
calculateInverseKinematic(cell, motionGroup, jointPositionRequest, options) {
|
|
6358
6063
|
return MotionGroupKinematicApiFp(this.configuration).calculateInverseKinematic(cell, motionGroup, jointPositionRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6364,7 +6069,6 @@ var MotionGroupKinematicApi = class extends BaseAPI {
|
|
|
6364
6069
|
* @param {string} motionGroup The motion-group id.
|
|
6365
6070
|
* @param {*} [options] Override http request option.
|
|
6366
6071
|
* @throws {RequiredError}
|
|
6367
|
-
* @memberof MotionGroupKinematicApi
|
|
6368
6072
|
*/
|
|
6369
6073
|
getKinematicCapabilities(cell, motionGroup, options) {
|
|
6370
6074
|
return MotionGroupKinematicApiFp(this.configuration).getKinematicCapabilities(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6372,7 +6076,6 @@ var MotionGroupKinematicApi = class extends BaseAPI {
|
|
|
6372
6076
|
};
|
|
6373
6077
|
/**
|
|
6374
6078
|
* ProgramApi - axios parameter creator
|
|
6375
|
-
* @export
|
|
6376
6079
|
*/
|
|
6377
6080
|
const ProgramApiAxiosParamCreator = function(configuration) {
|
|
6378
6081
|
return {
|
|
@@ -6611,7 +6314,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
|
|
|
6611
6314
|
};
|
|
6612
6315
|
/**
|
|
6613
6316
|
* ProgramApi - functional programming interface
|
|
6614
|
-
* @export
|
|
6615
6317
|
*/
|
|
6616
6318
|
const ProgramApiFp = function(configuration) {
|
|
6617
6319
|
const localVarAxiosParamCreator = ProgramApiAxiosParamCreator(configuration);
|
|
@@ -6668,7 +6370,6 @@ const ProgramApiFp = function(configuration) {
|
|
|
6668
6370
|
};
|
|
6669
6371
|
/**
|
|
6670
6372
|
* ProgramApi - factory interface
|
|
6671
|
-
* @export
|
|
6672
6373
|
*/
|
|
6673
6374
|
const ProgramApiFactory = function(configuration, basePath, axios) {
|
|
6674
6375
|
const localVarFp = ProgramApiFp(configuration);
|
|
@@ -6701,9 +6402,6 @@ const ProgramApiFactory = function(configuration, basePath, axios) {
|
|
|
6701
6402
|
};
|
|
6702
6403
|
/**
|
|
6703
6404
|
* ProgramApi - object-oriented interface
|
|
6704
|
-
* @export
|
|
6705
|
-
* @class ProgramApi
|
|
6706
|
-
* @extends {BaseAPI}
|
|
6707
6405
|
*/
|
|
6708
6406
|
var ProgramApi = class extends BaseAPI {
|
|
6709
6407
|
/**
|
|
@@ -6713,7 +6411,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
6713
6411
|
* @param {Request} request
|
|
6714
6412
|
* @param {*} [options] Override http request option.
|
|
6715
6413
|
* @throws {RequiredError}
|
|
6716
|
-
* @memberof ProgramApi
|
|
6717
6414
|
*/
|
|
6718
6415
|
createProgramRunner(cell, request, options) {
|
|
6719
6416
|
return ProgramApiFp(this.configuration).createProgramRunner(cell, request, options).then((request$1) => request$1(this.axios, this.basePath));
|
|
@@ -6725,7 +6422,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
6725
6422
|
* @param {CodeWithArguments} codeWithArguments
|
|
6726
6423
|
* @param {*} [options] Override http request option.
|
|
6727
6424
|
* @throws {RequiredError}
|
|
6728
|
-
* @memberof ProgramApi
|
|
6729
6425
|
*/
|
|
6730
6426
|
executeProgram(cell, codeWithArguments, options) {
|
|
6731
6427
|
return ProgramApiFp(this.configuration).executeProgram(cell, codeWithArguments, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6737,7 +6433,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
6737
6433
|
* @param {string} runner
|
|
6738
6434
|
* @param {*} [options] Override http request option.
|
|
6739
6435
|
* @throws {RequiredError}
|
|
6740
|
-
* @memberof ProgramApi
|
|
6741
6436
|
*/
|
|
6742
6437
|
getProgramRunner(cell, runner, options) {
|
|
6743
6438
|
return ProgramApiFp(this.configuration).getProgramRunner(cell, runner, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6748,7 +6443,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
6748
6443
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6749
6444
|
* @param {*} [options] Override http request option.
|
|
6750
6445
|
* @throws {RequiredError}
|
|
6751
|
-
* @memberof ProgramApi
|
|
6752
6446
|
*/
|
|
6753
6447
|
listProgramRunners(cell, options) {
|
|
6754
6448
|
return ProgramApiFp(this.configuration).listProgramRunners(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6760,7 +6454,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
6760
6454
|
* @param {Request1} request1
|
|
6761
6455
|
* @param {*} [options] Override http request option.
|
|
6762
6456
|
* @throws {RequiredError}
|
|
6763
|
-
* @memberof ProgramApi
|
|
6764
6457
|
*/
|
|
6765
6458
|
migrateProgram(cell, request1, options) {
|
|
6766
6459
|
return ProgramApiFp(this.configuration).migrateProgram(cell, request1, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6773,7 +6466,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
6773
6466
|
* @param {string} [identifier]
|
|
6774
6467
|
* @param {*} [options] Override http request option.
|
|
6775
6468
|
* @throws {RequiredError}
|
|
6776
|
-
* @memberof ProgramApi
|
|
6777
6469
|
*/
|
|
6778
6470
|
planProgram(cell, request, identifier, options) {
|
|
6779
6471
|
return ProgramApiFp(this.configuration).planProgram(cell, request, identifier, options).then((request$1) => request$1(this.axios, this.basePath));
|
|
@@ -6784,7 +6476,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
6784
6476
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6785
6477
|
* @param {*} [options] Override http request option.
|
|
6786
6478
|
* @throws {RequiredError}
|
|
6787
|
-
* @memberof ProgramApi
|
|
6788
6479
|
*/
|
|
6789
6480
|
stopAllProgramRunner(cell, options) {
|
|
6790
6481
|
return ProgramApiFp(this.configuration).stopAllProgramRunner(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6796,7 +6487,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
6796
6487
|
* @param {string} runner
|
|
6797
6488
|
* @param {*} [options] Override http request option.
|
|
6798
6489
|
* @throws {RequiredError}
|
|
6799
|
-
* @memberof ProgramApi
|
|
6800
6490
|
*/
|
|
6801
6491
|
stopProgramRunner(cell, runner, options) {
|
|
6802
6492
|
return ProgramApiFp(this.configuration).stopProgramRunner(cell, runner, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6804,7 +6494,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
6804
6494
|
};
|
|
6805
6495
|
/**
|
|
6806
6496
|
* ProgramOperatorApi - axios parameter creator
|
|
6807
|
-
* @export
|
|
6808
6497
|
*/
|
|
6809
6498
|
const ProgramOperatorApiAxiosParamCreator = function(configuration) {
|
|
6810
6499
|
return {
|
|
@@ -7042,7 +6731,6 @@ const ProgramOperatorApiAxiosParamCreator = function(configuration) {
|
|
|
7042
6731
|
};
|
|
7043
6732
|
/**
|
|
7044
6733
|
* ProgramOperatorApi - functional programming interface
|
|
7045
|
-
* @export
|
|
7046
6734
|
*/
|
|
7047
6735
|
const ProgramOperatorApiFp = function(configuration) {
|
|
7048
6736
|
const localVarAxiosParamCreator = ProgramOperatorApiAxiosParamCreator(configuration);
|
|
@@ -7099,7 +6787,6 @@ const ProgramOperatorApiFp = function(configuration) {
|
|
|
7099
6787
|
};
|
|
7100
6788
|
/**
|
|
7101
6789
|
* ProgramOperatorApi - factory interface
|
|
7102
|
-
* @export
|
|
7103
6790
|
*/
|
|
7104
6791
|
const ProgramOperatorApiFactory = function(configuration, basePath, axios) {
|
|
7105
6792
|
const localVarFp = ProgramOperatorApiFp(configuration);
|
|
@@ -7132,9 +6819,6 @@ const ProgramOperatorApiFactory = function(configuration, basePath, axios) {
|
|
|
7132
6819
|
};
|
|
7133
6820
|
/**
|
|
7134
6821
|
* ProgramOperatorApi - object-oriented interface
|
|
7135
|
-
* @export
|
|
7136
|
-
* @class ProgramOperatorApi
|
|
7137
|
-
* @extends {BaseAPI}
|
|
7138
6822
|
*/
|
|
7139
6823
|
var ProgramOperatorApi = class extends BaseAPI {
|
|
7140
6824
|
/**
|
|
@@ -7144,7 +6828,6 @@ var ProgramOperatorApi = class extends BaseAPI {
|
|
|
7144
6828
|
* @param {CreateProgramRunRequest} createProgramRunRequest
|
|
7145
6829
|
* @param {*} [options] Override http request option.
|
|
7146
6830
|
* @throws {RequiredError}
|
|
7147
|
-
* @memberof ProgramOperatorApi
|
|
7148
6831
|
*/
|
|
7149
6832
|
createProgramRun(cell, createProgramRunRequest, options) {
|
|
7150
6833
|
return ProgramOperatorApiFp(this.configuration).createProgramRun(cell, createProgramRunRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7156,7 +6839,6 @@ var ProgramOperatorApi = class extends BaseAPI {
|
|
|
7156
6839
|
* @param {CreateTriggerRequest} createTriggerRequest
|
|
7157
6840
|
* @param {*} [options] Override http request option.
|
|
7158
6841
|
* @throws {RequiredError}
|
|
7159
|
-
* @memberof ProgramOperatorApi
|
|
7160
6842
|
*/
|
|
7161
6843
|
createTrigger(cell, createTriggerRequest, options) {
|
|
7162
6844
|
return ProgramOperatorApiFp(this.configuration).createTrigger(cell, createTriggerRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7168,7 +6850,6 @@ var ProgramOperatorApi = class extends BaseAPI {
|
|
|
7168
6850
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7169
6851
|
* @param {*} [options] Override http request option.
|
|
7170
6852
|
* @throws {RequiredError}
|
|
7171
|
-
* @memberof ProgramOperatorApi
|
|
7172
6853
|
*/
|
|
7173
6854
|
deleteTrigger(trigger, cell, options) {
|
|
7174
6855
|
return ProgramOperatorApiFp(this.configuration).deleteTrigger(trigger, cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7180,7 +6861,6 @@ var ProgramOperatorApi = class extends BaseAPI {
|
|
|
7180
6861
|
* @param {string} [state]
|
|
7181
6862
|
* @param {*} [options] Override http request option.
|
|
7182
6863
|
* @throws {RequiredError}
|
|
7183
|
-
* @memberof ProgramOperatorApi
|
|
7184
6864
|
*/
|
|
7185
6865
|
getAllProgramRuns(cell, state, options) {
|
|
7186
6866
|
return ProgramOperatorApiFp(this.configuration).getAllProgramRuns(cell, state, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7191,7 +6871,6 @@ var ProgramOperatorApi = class extends BaseAPI {
|
|
|
7191
6871
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7192
6872
|
* @param {*} [options] Override http request option.
|
|
7193
6873
|
* @throws {RequiredError}
|
|
7194
|
-
* @memberof ProgramOperatorApi
|
|
7195
6874
|
*/
|
|
7196
6875
|
getAllTriggers(cell, options) {
|
|
7197
6876
|
return ProgramOperatorApiFp(this.configuration).getAllTriggers(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7203,7 +6882,6 @@ var ProgramOperatorApi = class extends BaseAPI {
|
|
|
7203
6882
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7204
6883
|
* @param {*} [options] Override http request option.
|
|
7205
6884
|
* @throws {RequiredError}
|
|
7206
|
-
* @memberof ProgramOperatorApi
|
|
7207
6885
|
*/
|
|
7208
6886
|
getProgramRun(run, cell, options) {
|
|
7209
6887
|
return ProgramOperatorApiFp(this.configuration).getProgramRun(run, cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7215,7 +6893,6 @@ var ProgramOperatorApi = class extends BaseAPI {
|
|
|
7215
6893
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7216
6894
|
* @param {*} [options] Override http request option.
|
|
7217
6895
|
* @throws {RequiredError}
|
|
7218
|
-
* @memberof ProgramOperatorApi
|
|
7219
6896
|
*/
|
|
7220
6897
|
getTrigger(trigger, cell, options) {
|
|
7221
6898
|
return ProgramOperatorApiFp(this.configuration).getTrigger(trigger, cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7228,7 +6905,6 @@ var ProgramOperatorApi = class extends BaseAPI {
|
|
|
7228
6905
|
* @param {UpdateTriggerRequest} updateTriggerRequest
|
|
7229
6906
|
* @param {*} [options] Override http request option.
|
|
7230
6907
|
* @throws {RequiredError}
|
|
7231
|
-
* @memberof ProgramOperatorApi
|
|
7232
6908
|
*/
|
|
7233
6909
|
updateTrigger(trigger, cell, updateTriggerRequest, options) {
|
|
7234
6910
|
return ProgramOperatorApiFp(this.configuration).updateTrigger(trigger, cell, updateTriggerRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7236,7 +6912,6 @@ var ProgramOperatorApi = class extends BaseAPI {
|
|
|
7236
6912
|
};
|
|
7237
6913
|
/**
|
|
7238
6914
|
* ProgramValuesApi - axios parameter creator
|
|
7239
|
-
* @export
|
|
7240
6915
|
*/
|
|
7241
6916
|
const ProgramValuesApiAxiosParamCreator = function(configuration) {
|
|
7242
6917
|
return {
|
|
@@ -7415,7 +7090,6 @@ const ProgramValuesApiAxiosParamCreator = function(configuration) {
|
|
|
7415
7090
|
};
|
|
7416
7091
|
/**
|
|
7417
7092
|
* ProgramValuesApi - functional programming interface
|
|
7418
|
-
* @export
|
|
7419
7093
|
*/
|
|
7420
7094
|
const ProgramValuesApiFp = function(configuration) {
|
|
7421
7095
|
const localVarAxiosParamCreator = ProgramValuesApiAxiosParamCreator(configuration);
|
|
@@ -7460,7 +7134,6 @@ const ProgramValuesApiFp = function(configuration) {
|
|
|
7460
7134
|
};
|
|
7461
7135
|
/**
|
|
7462
7136
|
* ProgramValuesApi - factory interface
|
|
7463
|
-
* @export
|
|
7464
7137
|
*/
|
|
7465
7138
|
const ProgramValuesApiFactory = function(configuration, basePath, axios) {
|
|
7466
7139
|
const localVarFp = ProgramValuesApiFp(configuration);
|
|
@@ -7487,9 +7160,6 @@ const ProgramValuesApiFactory = function(configuration, basePath, axios) {
|
|
|
7487
7160
|
};
|
|
7488
7161
|
/**
|
|
7489
7162
|
* ProgramValuesApi - object-oriented interface
|
|
7490
|
-
* @export
|
|
7491
|
-
* @class ProgramValuesApi
|
|
7492
|
-
* @extends {BaseAPI}
|
|
7493
7163
|
*/
|
|
7494
7164
|
var ProgramValuesApi = class extends BaseAPI {
|
|
7495
7165
|
/**
|
|
@@ -7499,7 +7169,6 @@ var ProgramValuesApi = class extends BaseAPI {
|
|
|
7499
7169
|
* @param {*} [options] Override http request option.
|
|
7500
7170
|
* @deprecated
|
|
7501
7171
|
* @throws {RequiredError}
|
|
7502
|
-
* @memberof ProgramValuesApi
|
|
7503
7172
|
*/
|
|
7504
7173
|
clearProgramsValues(cell, options) {
|
|
7505
7174
|
return ProgramValuesApiFp(this.configuration).clearProgramsValues(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7512,7 +7181,6 @@ var ProgramValuesApi = class extends BaseAPI {
|
|
|
7512
7181
|
* @param {*} [options] Override http request option.
|
|
7513
7182
|
* @deprecated
|
|
7514
7183
|
* @throws {RequiredError}
|
|
7515
|
-
* @memberof ProgramValuesApi
|
|
7516
7184
|
*/
|
|
7517
7185
|
createProgramsValue(cell, requestBody, options) {
|
|
7518
7186
|
return ProgramValuesApiFp(this.configuration).createProgramsValue(cell, requestBody, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7525,7 +7193,6 @@ var ProgramValuesApi = class extends BaseAPI {
|
|
|
7525
7193
|
* @param {*} [options] Override http request option.
|
|
7526
7194
|
* @deprecated
|
|
7527
7195
|
* @throws {RequiredError}
|
|
7528
|
-
* @memberof ProgramValuesApi
|
|
7529
7196
|
*/
|
|
7530
7197
|
deleteProgramValue(cell, key, options) {
|
|
7531
7198
|
return ProgramValuesApiFp(this.configuration).deleteProgramValue(cell, key, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7538,7 +7205,6 @@ var ProgramValuesApi = class extends BaseAPI {
|
|
|
7538
7205
|
* @param {*} [options] Override http request option.
|
|
7539
7206
|
* @deprecated
|
|
7540
7207
|
* @throws {RequiredError}
|
|
7541
|
-
* @memberof ProgramValuesApi
|
|
7542
7208
|
*/
|
|
7543
7209
|
getProgramValue(cell, key, options) {
|
|
7544
7210
|
return ProgramValuesApiFp(this.configuration).getProgramValue(cell, key, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7550,7 +7216,6 @@ var ProgramValuesApi = class extends BaseAPI {
|
|
|
7550
7216
|
* @param {*} [options] Override http request option.
|
|
7551
7217
|
* @deprecated
|
|
7552
7218
|
* @throws {RequiredError}
|
|
7553
|
-
* @memberof ProgramValuesApi
|
|
7554
7219
|
*/
|
|
7555
7220
|
listProgramsValues(cell, options) {
|
|
7556
7221
|
return ProgramValuesApiFp(this.configuration).listProgramsValues(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7564,7 +7229,6 @@ var ProgramValuesApi = class extends BaseAPI {
|
|
|
7564
7229
|
* @param {*} [options] Override http request option.
|
|
7565
7230
|
* @deprecated
|
|
7566
7231
|
* @throws {RequiredError}
|
|
7567
|
-
* @memberof ProgramValuesApi
|
|
7568
7232
|
*/
|
|
7569
7233
|
updateProgramValue(cell, key, value, options) {
|
|
7570
7234
|
return ProgramValuesApiFp(this.configuration).updateProgramValue(cell, key, value, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7572,7 +7236,6 @@ var ProgramValuesApi = class extends BaseAPI {
|
|
|
7572
7236
|
};
|
|
7573
7237
|
/**
|
|
7574
7238
|
* StoreCollisionComponentsApi - axios parameter creator
|
|
7575
|
-
* @export
|
|
7576
7239
|
*/
|
|
7577
7240
|
const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
7578
7241
|
return {
|
|
@@ -7950,7 +7613,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
|
7950
7613
|
};
|
|
7951
7614
|
/**
|
|
7952
7615
|
* StoreCollisionComponentsApi - functional programming interface
|
|
7953
|
-
* @export
|
|
7954
7616
|
*/
|
|
7955
7617
|
const StoreCollisionComponentsApiFp = function(configuration) {
|
|
7956
7618
|
const localVarAxiosParamCreator = StoreCollisionComponentsApiAxiosParamCreator(configuration);
|
|
@@ -8037,7 +7699,6 @@ const StoreCollisionComponentsApiFp = function(configuration) {
|
|
|
8037
7699
|
};
|
|
8038
7700
|
/**
|
|
8039
7701
|
* StoreCollisionComponentsApi - factory interface
|
|
8040
|
-
* @export
|
|
8041
7702
|
*/
|
|
8042
7703
|
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios) {
|
|
8043
7704
|
const localVarFp = StoreCollisionComponentsApiFp(configuration);
|
|
@@ -8085,9 +7746,6 @@ const StoreCollisionComponentsApiFactory = function(configuration, basePath, axi
|
|
|
8085
7746
|
};
|
|
8086
7747
|
/**
|
|
8087
7748
|
* StoreCollisionComponentsApi - object-oriented interface
|
|
8088
|
-
* @export
|
|
8089
|
-
* @class StoreCollisionComponentsApi
|
|
8090
|
-
* @extends {BaseAPI}
|
|
8091
7749
|
*/
|
|
8092
7750
|
var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
8093
7751
|
/**
|
|
@@ -8097,7 +7755,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8097
7755
|
* @param {string} collider Unique identifier addressing a collider.
|
|
8098
7756
|
* @param {*} [options] Override http request option.
|
|
8099
7757
|
* @throws {RequiredError}
|
|
8100
|
-
* @memberof StoreCollisionComponentsApi
|
|
8101
7758
|
*/
|
|
8102
7759
|
deleteStoredCollider(cell, collider, options) {
|
|
8103
7760
|
return StoreCollisionComponentsApiFp(this.configuration).deleteStoredCollider(cell, collider, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8109,7 +7766,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8109
7766
|
* @param {string} linkChain Unique identifier addressing a collision link chain.
|
|
8110
7767
|
* @param {*} [options] Override http request option.
|
|
8111
7768
|
* @throws {RequiredError}
|
|
8112
|
-
* @memberof StoreCollisionComponentsApi
|
|
8113
7769
|
*/
|
|
8114
7770
|
deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
8115
7771
|
return StoreCollisionComponentsApiFp(this.configuration).deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8121,7 +7777,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8121
7777
|
* @param {string} tool Unique identifier addressing a collision tool.
|
|
8122
7778
|
* @param {*} [options] Override http request option.
|
|
8123
7779
|
* @throws {RequiredError}
|
|
8124
|
-
* @memberof StoreCollisionComponentsApi
|
|
8125
7780
|
*/
|
|
8126
7781
|
deleteStoredCollisionTool(cell, tool, options) {
|
|
8127
7782
|
return StoreCollisionComponentsApiFp(this.configuration).deleteStoredCollisionTool(cell, tool, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8134,7 +7789,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8134
7789
|
* @param {*} [options] Override http request option.
|
|
8135
7790
|
* @deprecated
|
|
8136
7791
|
* @throws {RequiredError}
|
|
8137
|
-
* @memberof StoreCollisionComponentsApi
|
|
8138
7792
|
*/
|
|
8139
7793
|
getDefaultLinkChain(cell, motionGroupModel, options) {
|
|
8140
7794
|
return StoreCollisionComponentsApiFp(this.configuration).getDefaultLinkChain(cell, motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8146,7 +7800,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8146
7800
|
* @param {string} collider Unique identifier addressing a collider.
|
|
8147
7801
|
* @param {*} [options] Override http request option.
|
|
8148
7802
|
* @throws {RequiredError}
|
|
8149
|
-
* @memberof StoreCollisionComponentsApi
|
|
8150
7803
|
*/
|
|
8151
7804
|
getStoredCollider(cell, collider, options) {
|
|
8152
7805
|
return StoreCollisionComponentsApiFp(this.configuration).getStoredCollider(cell, collider, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8158,7 +7811,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8158
7811
|
* @param {string} linkChain Unique identifier addressing a collision link chain.
|
|
8159
7812
|
* @param {*} [options] Override http request option.
|
|
8160
7813
|
* @throws {RequiredError}
|
|
8161
|
-
* @memberof StoreCollisionComponentsApi
|
|
8162
7814
|
*/
|
|
8163
7815
|
getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
8164
7816
|
return StoreCollisionComponentsApiFp(this.configuration).getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8170,7 +7822,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8170
7822
|
* @param {string} tool Unique identifier addressing a collision tool.
|
|
8171
7823
|
* @param {*} [options] Override http request option.
|
|
8172
7824
|
* @throws {RequiredError}
|
|
8173
|
-
* @memberof StoreCollisionComponentsApi
|
|
8174
7825
|
*/
|
|
8175
7826
|
getStoredCollisionTool(cell, tool, options) {
|
|
8176
7827
|
return StoreCollisionComponentsApiFp(this.configuration).getStoredCollisionTool(cell, tool, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8181,7 +7832,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8181
7832
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8182
7833
|
* @param {*} [options] Override http request option.
|
|
8183
7834
|
* @throws {RequiredError}
|
|
8184
|
-
* @memberof StoreCollisionComponentsApi
|
|
8185
7835
|
*/
|
|
8186
7836
|
listCollisionLinkChains(cell, options) {
|
|
8187
7837
|
return StoreCollisionComponentsApiFp(this.configuration).listCollisionLinkChains(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8192,7 +7842,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8192
7842
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8193
7843
|
* @param {*} [options] Override http request option.
|
|
8194
7844
|
* @throws {RequiredError}
|
|
8195
|
-
* @memberof StoreCollisionComponentsApi
|
|
8196
7845
|
*/
|
|
8197
7846
|
listStoredColliders(cell, options) {
|
|
8198
7847
|
return StoreCollisionComponentsApiFp(this.configuration).listStoredColliders(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8203,7 +7852,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8203
7852
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8204
7853
|
* @param {*} [options] Override http request option.
|
|
8205
7854
|
* @throws {RequiredError}
|
|
8206
|
-
* @memberof StoreCollisionComponentsApi
|
|
8207
7855
|
*/
|
|
8208
7856
|
listStoredCollisionTools(cell, options) {
|
|
8209
7857
|
return StoreCollisionComponentsApiFp(this.configuration).listStoredCollisionTools(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8216,7 +7864,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8216
7864
|
* @param {Collider} collider2
|
|
8217
7865
|
* @param {*} [options] Override http request option.
|
|
8218
7866
|
* @throws {RequiredError}
|
|
8219
|
-
* @memberof StoreCollisionComponentsApi
|
|
8220
7867
|
*/
|
|
8221
7868
|
storeCollider(cell, collider, collider2, options) {
|
|
8222
7869
|
return StoreCollisionComponentsApiFp(this.configuration).storeCollider(cell, collider, collider2, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8229,7 +7876,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8229
7876
|
* @param {Array<{ [key: string]: Collider; }>} collider
|
|
8230
7877
|
* @param {*} [options] Override http request option.
|
|
8231
7878
|
* @throws {RequiredError}
|
|
8232
|
-
* @memberof StoreCollisionComponentsApi
|
|
8233
7879
|
*/
|
|
8234
7880
|
storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
8235
7881
|
return StoreCollisionComponentsApiFp(this.configuration).storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8242,15 +7888,11 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8242
7888
|
* @param {{ [key: string]: Collider; }} requestBody
|
|
8243
7889
|
* @param {*} [options] Override http request option.
|
|
8244
7890
|
* @throws {RequiredError}
|
|
8245
|
-
* @memberof StoreCollisionComponentsApi
|
|
8246
7891
|
*/
|
|
8247
7892
|
storeCollisionTool(cell, tool, requestBody, options) {
|
|
8248
7893
|
return StoreCollisionComponentsApiFp(this.configuration).storeCollisionTool(cell, tool, requestBody, options).then((request) => request(this.axios, this.basePath));
|
|
8249
7894
|
}
|
|
8250
7895
|
};
|
|
8251
|
-
/**
|
|
8252
|
-
* @export
|
|
8253
|
-
*/
|
|
8254
7896
|
const GetDefaultLinkChainMotionGroupModelEnum = {
|
|
8255
7897
|
Abb101003715: "ABB_1010_037_15",
|
|
8256
7898
|
Abb110004754: "ABB_1100_0475_4",
|
|
@@ -8278,6 +7920,8 @@ const GetDefaultLinkChainMotionGroupModelEnum = {
|
|
|
8278
7920
|
Abb460020560: "ABB_4600_205_60",
|
|
8279
7921
|
Abb460025020: "ABB_4600_250_20",
|
|
8280
7922
|
Abb460025540: "ABB_4600_255_40",
|
|
7923
|
+
Abb6730210310: "ABB_6730_210_310",
|
|
7924
|
+
Abb6730240290: "ABB_6730_240_290",
|
|
8281
7925
|
FanucArcMate100iD: "FANUC_ARC_Mate_100iD",
|
|
8282
7926
|
FanucArcMate100iD10L: "FANUC_ARC_Mate_100iD10L",
|
|
8283
7927
|
FanucArcMate100iD16S: "FANUC_ARC_Mate_100iD16S",
|
|
@@ -8325,6 +7969,7 @@ const GetDefaultLinkChainMotionGroupModelEnum = {
|
|
|
8325
7969
|
KukaKr120R2700: "KUKA_KR120_R2700",
|
|
8326
7970
|
KukaKr120R27002: "KUKA_KR120_R2700_2",
|
|
8327
7971
|
KukaKr120R31002: "KUKA_KR120_R3100_2",
|
|
7972
|
+
KukaKr120R39002K: "KUKA_KR120_R3900_2_K",
|
|
8328
7973
|
KukaKr12R18102: "KUKA_KR12_R1810_2",
|
|
8329
7974
|
KukaKr150R2: "KUKA_KR150_R2",
|
|
8330
7975
|
KukaKr16R1610: "KUKA_KR16_R1610",
|
|
@@ -8334,12 +7979,15 @@ const GetDefaultLinkChainMotionGroupModelEnum = {
|
|
|
8334
7979
|
KukaKr20R1810: "KUKA_KR20_R1810",
|
|
8335
7980
|
KukaKr20R18102: "KUKA_KR20_R1810_2",
|
|
8336
7981
|
KukaKr210R2700: "KUKA_KR210_R2700",
|
|
7982
|
+
KukaKr210R2700Extra: "KUKA_KR210_R2700_extra",
|
|
8337
7983
|
KukaKr210R27002: "KUKA_KR210_R2700_2",
|
|
8338
7984
|
KukaKr210R3100: "KUKA_KR210_R3100",
|
|
8339
7985
|
KukaKr210R31002: "KUKA_KR210_R3100_2",
|
|
8340
7986
|
KukaKr210R3300: "KUKA_KR210_R3300",
|
|
8341
7987
|
KukaKr210R33002: "KUKA_KR210_R3300_2",
|
|
8342
7988
|
KukaKr240R2700: "KUKA_KR240_R2700",
|
|
7989
|
+
KukaKr240R2900: "KUKA_KR240_R2900",
|
|
7990
|
+
KukaKr240R37002: "KUKA_KR240_R3700_2",
|
|
8343
7991
|
KukaKr250R27002: "KUKA_KR250_R2700_2",
|
|
8344
7992
|
KukaKr270R2700: "KUKA_KR270_R2700",
|
|
8345
7993
|
KukaKr270R3100: "KUKA_KR270_R3100",
|
|
@@ -8418,7 +8066,6 @@ const GetDefaultLinkChainMotionGroupModelEnum = {
|
|
|
8418
8066
|
};
|
|
8419
8067
|
/**
|
|
8420
8068
|
* StoreCollisionScenesApi - axios parameter creator
|
|
8421
|
-
* @export
|
|
8422
8069
|
*/
|
|
8423
8070
|
const StoreCollisionScenesApiAxiosParamCreator = function(configuration) {
|
|
8424
8071
|
return {
|
|
@@ -8540,7 +8187,6 @@ const StoreCollisionScenesApiAxiosParamCreator = function(configuration) {
|
|
|
8540
8187
|
};
|
|
8541
8188
|
/**
|
|
8542
8189
|
* StoreCollisionScenesApi - functional programming interface
|
|
8543
|
-
* @export
|
|
8544
8190
|
*/
|
|
8545
8191
|
const StoreCollisionScenesApiFp = function(configuration) {
|
|
8546
8192
|
const localVarAxiosParamCreator = StoreCollisionScenesApiAxiosParamCreator(configuration);
|
|
@@ -8573,7 +8219,6 @@ const StoreCollisionScenesApiFp = function(configuration) {
|
|
|
8573
8219
|
};
|
|
8574
8220
|
/**
|
|
8575
8221
|
* StoreCollisionScenesApi - factory interface
|
|
8576
|
-
* @export
|
|
8577
8222
|
*/
|
|
8578
8223
|
const StoreCollisionScenesApiFactory = function(configuration, basePath, axios) {
|
|
8579
8224
|
const localVarFp = StoreCollisionScenesApiFp(configuration);
|
|
@@ -8594,9 +8239,6 @@ const StoreCollisionScenesApiFactory = function(configuration, basePath, axios)
|
|
|
8594
8239
|
};
|
|
8595
8240
|
/**
|
|
8596
8241
|
* StoreCollisionScenesApi - object-oriented interface
|
|
8597
|
-
* @export
|
|
8598
|
-
* @class StoreCollisionScenesApi
|
|
8599
|
-
* @extends {BaseAPI}
|
|
8600
8242
|
*/
|
|
8601
8243
|
var StoreCollisionScenesApi = class extends BaseAPI {
|
|
8602
8244
|
/**
|
|
@@ -8606,7 +8248,6 @@ var StoreCollisionScenesApi = class extends BaseAPI {
|
|
|
8606
8248
|
* @param {string} scene Unique identifier addressing a collision scene.
|
|
8607
8249
|
* @param {*} [options] Override http request option.
|
|
8608
8250
|
* @throws {RequiredError}
|
|
8609
|
-
* @memberof StoreCollisionScenesApi
|
|
8610
8251
|
*/
|
|
8611
8252
|
deleteStoredCollisionScene(cell, scene, options) {
|
|
8612
8253
|
return StoreCollisionScenesApiFp(this.configuration).deleteStoredCollisionScene(cell, scene, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8618,7 +8259,6 @@ var StoreCollisionScenesApi = class extends BaseAPI {
|
|
|
8618
8259
|
* @param {string} scene Unique identifier addressing a collision scene.
|
|
8619
8260
|
* @param {*} [options] Override http request option.
|
|
8620
8261
|
* @throws {RequiredError}
|
|
8621
|
-
* @memberof StoreCollisionScenesApi
|
|
8622
8262
|
*/
|
|
8623
8263
|
getStoredCollisionScene(cell, scene, options) {
|
|
8624
8264
|
return StoreCollisionScenesApiFp(this.configuration).getStoredCollisionScene(cell, scene, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8629,7 +8269,6 @@ var StoreCollisionScenesApi = class extends BaseAPI {
|
|
|
8629
8269
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8630
8270
|
* @param {*} [options] Override http request option.
|
|
8631
8271
|
* @throws {RequiredError}
|
|
8632
|
-
* @memberof StoreCollisionScenesApi
|
|
8633
8272
|
*/
|
|
8634
8273
|
listStoredCollisionScenes(cell, options) {
|
|
8635
8274
|
return StoreCollisionScenesApiFp(this.configuration).listStoredCollisionScenes(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8642,7 +8281,6 @@ var StoreCollisionScenesApi = class extends BaseAPI {
|
|
|
8642
8281
|
* @param {CollisionSceneAssembly} collisionSceneAssembly
|
|
8643
8282
|
* @param {*} [options] Override http request option.
|
|
8644
8283
|
* @throws {RequiredError}
|
|
8645
|
-
* @memberof StoreCollisionScenesApi
|
|
8646
8284
|
*/
|
|
8647
8285
|
storeCollisionScene(cell, scene, collisionSceneAssembly, options) {
|
|
8648
8286
|
return StoreCollisionScenesApiFp(this.configuration).storeCollisionScene(cell, scene, collisionSceneAssembly, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8650,7 +8288,6 @@ var StoreCollisionScenesApi = class extends BaseAPI {
|
|
|
8650
8288
|
};
|
|
8651
8289
|
/**
|
|
8652
8290
|
* StoreObjectApi - axios parameter creator
|
|
8653
|
-
* @export
|
|
8654
8291
|
*/
|
|
8655
8292
|
const StoreObjectApiAxiosParamCreator = function(configuration) {
|
|
8656
8293
|
return {
|
|
@@ -8829,7 +8466,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
|
|
|
8829
8466
|
};
|
|
8830
8467
|
/**
|
|
8831
8468
|
* StoreObjectApi - functional programming interface
|
|
8832
|
-
* @export
|
|
8833
8469
|
*/
|
|
8834
8470
|
const StoreObjectApiFp = function(configuration) {
|
|
8835
8471
|
const localVarAxiosParamCreator = StoreObjectApiAxiosParamCreator(configuration);
|
|
@@ -8874,7 +8510,6 @@ const StoreObjectApiFp = function(configuration) {
|
|
|
8874
8510
|
};
|
|
8875
8511
|
/**
|
|
8876
8512
|
* StoreObjectApi - factory interface
|
|
8877
|
-
* @export
|
|
8878
8513
|
*/
|
|
8879
8514
|
const StoreObjectApiFactory = function(configuration, basePath, axios) {
|
|
8880
8515
|
const localVarFp = StoreObjectApiFp(configuration);
|
|
@@ -8901,9 +8536,6 @@ const StoreObjectApiFactory = function(configuration, basePath, axios) {
|
|
|
8901
8536
|
};
|
|
8902
8537
|
/**
|
|
8903
8538
|
* StoreObjectApi - object-oriented interface
|
|
8904
|
-
* @export
|
|
8905
|
-
* @class StoreObjectApi
|
|
8906
|
-
* @extends {BaseAPI}
|
|
8907
8539
|
*/
|
|
8908
8540
|
var StoreObjectApi = class extends BaseAPI {
|
|
8909
8541
|
/**
|
|
@@ -8912,7 +8544,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
8912
8544
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8913
8545
|
* @param {*} [options] Override http request option.
|
|
8914
8546
|
* @throws {RequiredError}
|
|
8915
|
-
* @memberof StoreObjectApi
|
|
8916
8547
|
*/
|
|
8917
8548
|
clearAllObjects(cell, options) {
|
|
8918
8549
|
return StoreObjectApiFp(this.configuration).clearAllObjects(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8924,7 +8555,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
8924
8555
|
* @param {string} key
|
|
8925
8556
|
* @param {*} [options] Override http request option.
|
|
8926
8557
|
* @throws {RequiredError}
|
|
8927
|
-
* @memberof StoreObjectApi
|
|
8928
8558
|
*/
|
|
8929
8559
|
deleteObject(cell, key, options) {
|
|
8930
8560
|
return StoreObjectApiFp(this.configuration).deleteObject(cell, key, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8936,7 +8566,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
8936
8566
|
* @param {string} key
|
|
8937
8567
|
* @param {*} [options] Override http request option.
|
|
8938
8568
|
* @throws {RequiredError}
|
|
8939
|
-
* @memberof StoreObjectApi
|
|
8940
8569
|
*/
|
|
8941
8570
|
getObject(cell, key, options) {
|
|
8942
8571
|
return StoreObjectApiFp(this.configuration).getObject(cell, key, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8948,7 +8577,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
8948
8577
|
* @param {string} key
|
|
8949
8578
|
* @param {*} [options] Override http request option.
|
|
8950
8579
|
* @throws {RequiredError}
|
|
8951
|
-
* @memberof StoreObjectApi
|
|
8952
8580
|
*/
|
|
8953
8581
|
getObjectMetadata(cell, key, options) {
|
|
8954
8582
|
return StoreObjectApiFp(this.configuration).getObjectMetadata(cell, key, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8959,7 +8587,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
8959
8587
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8960
8588
|
* @param {*} [options] Override http request option.
|
|
8961
8589
|
* @throws {RequiredError}
|
|
8962
|
-
* @memberof StoreObjectApi
|
|
8963
8590
|
*/
|
|
8964
8591
|
listAllObjectKeys(cell, options) {
|
|
8965
8592
|
return StoreObjectApiFp(this.configuration).listAllObjectKeys(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8973,7 +8600,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
8973
8600
|
* @param {any} [anyValue]
|
|
8974
8601
|
* @param {*} [options] Override http request option.
|
|
8975
8602
|
* @throws {RequiredError}
|
|
8976
|
-
* @memberof StoreObjectApi
|
|
8977
8603
|
*/
|
|
8978
8604
|
storeObject(cell, key, xMetadata, anyValue, options) {
|
|
8979
8605
|
return StoreObjectApiFp(this.configuration).storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8981,7 +8607,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
8981
8607
|
};
|
|
8982
8608
|
/**
|
|
8983
8609
|
* SystemApi - axios parameter creator
|
|
8984
|
-
* @export
|
|
8985
8610
|
*/
|
|
8986
8611
|
const SystemApiAxiosParamCreator = function(configuration) {
|
|
8987
8612
|
return {
|
|
@@ -9119,7 +8744,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
|
|
|
9119
8744
|
};
|
|
9120
8745
|
/**
|
|
9121
8746
|
* SystemApi - functional programming interface
|
|
9122
|
-
* @export
|
|
9123
8747
|
*/
|
|
9124
8748
|
const SystemApiFp = function(configuration) {
|
|
9125
8749
|
const localVarAxiosParamCreator = SystemApiAxiosParamCreator(configuration);
|
|
@@ -9158,7 +8782,6 @@ const SystemApiFp = function(configuration) {
|
|
|
9158
8782
|
};
|
|
9159
8783
|
/**
|
|
9160
8784
|
* SystemApi - factory interface
|
|
9161
|
-
* @export
|
|
9162
8785
|
*/
|
|
9163
8786
|
const SystemApiFactory = function(configuration, basePath, axios) {
|
|
9164
8787
|
const localVarFp = SystemApiFp(configuration);
|
|
@@ -9182,9 +8805,6 @@ const SystemApiFactory = function(configuration, basePath, axios) {
|
|
|
9182
8805
|
};
|
|
9183
8806
|
/**
|
|
9184
8807
|
* SystemApi - object-oriented interface
|
|
9185
|
-
* @export
|
|
9186
|
-
* @class SystemApi
|
|
9187
|
-
* @extends {BaseAPI}
|
|
9188
8808
|
*/
|
|
9189
8809
|
var SystemApi = class extends BaseAPI {
|
|
9190
8810
|
/**
|
|
@@ -9193,7 +8813,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
9193
8813
|
* @param {ReleaseChannel} channel
|
|
9194
8814
|
* @param {*} [options] Override http request option.
|
|
9195
8815
|
* @throws {RequiredError}
|
|
9196
|
-
* @memberof SystemApi
|
|
9197
8816
|
*/
|
|
9198
8817
|
checkNovaVersionUpdate(channel, options) {
|
|
9199
8818
|
return SystemApiFp(this.configuration).checkNovaVersionUpdate(channel, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9203,7 +8822,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
9203
8822
|
* @summary Download Diagnosis Package
|
|
9204
8823
|
* @param {*} [options] Override http request option.
|
|
9205
8824
|
* @throws {RequiredError}
|
|
9206
|
-
* @memberof SystemApi
|
|
9207
8825
|
*/
|
|
9208
8826
|
getDiagnosePackage(options) {
|
|
9209
8827
|
return SystemApiFp(this.configuration).getDiagnosePackage(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9213,7 +8831,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
9213
8831
|
* @summary Wandelbots NOVA status
|
|
9214
8832
|
* @param {*} [options] Override http request option.
|
|
9215
8833
|
* @throws {RequiredError}
|
|
9216
|
-
* @memberof SystemApi
|
|
9217
8834
|
*/
|
|
9218
8835
|
getSystemStatus(options) {
|
|
9219
8836
|
return SystemApiFp(this.configuration).getSystemStatus(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9223,7 +8840,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
9223
8840
|
* @summary Wandelbots NOVA Version
|
|
9224
8841
|
* @param {*} [options] Override http request option.
|
|
9225
8842
|
* @throws {RequiredError}
|
|
9226
|
-
* @memberof SystemApi
|
|
9227
8843
|
*/
|
|
9228
8844
|
getSystemVersion(options) {
|
|
9229
8845
|
return SystemApiFp(this.configuration).getSystemVersion(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9234,15 +8850,78 @@ var SystemApi = class extends BaseAPI {
|
|
|
9234
8850
|
* @param {UpdateNovaVersionRequest} updateNovaVersionRequest
|
|
9235
8851
|
* @param {*} [options] Override http request option.
|
|
9236
8852
|
* @throws {RequiredError}
|
|
9237
|
-
* @memberof SystemApi
|
|
9238
8853
|
*/
|
|
9239
8854
|
updateNovaVersion(updateNovaVersionRequest, options) {
|
|
9240
8855
|
return SystemApiFp(this.configuration).updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(this.axios, this.basePath));
|
|
9241
8856
|
}
|
|
9242
8857
|
};
|
|
9243
8858
|
/**
|
|
8859
|
+
* VersionApi - axios parameter creator
|
|
8860
|
+
*/
|
|
8861
|
+
const VersionApiAxiosParamCreator = function(configuration) {
|
|
8862
|
+
return { getApiVersion: async (options = {}) => {
|
|
8863
|
+
const localVarUrlObj = new URL(`/version`, DUMMY_BASE_URL);
|
|
8864
|
+
let baseOptions;
|
|
8865
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
8866
|
+
const localVarRequestOptions = {
|
|
8867
|
+
method: "GET",
|
|
8868
|
+
...baseOptions,
|
|
8869
|
+
...options
|
|
8870
|
+
};
|
|
8871
|
+
const localVarHeaderParameter = {};
|
|
8872
|
+
const localVarQueryParameter = {};
|
|
8873
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
8874
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8875
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8876
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
8877
|
+
localVarRequestOptions.headers = {
|
|
8878
|
+
...localVarHeaderParameter,
|
|
8879
|
+
...headersFromBaseOptions,
|
|
8880
|
+
...options.headers
|
|
8881
|
+
};
|
|
8882
|
+
return {
|
|
8883
|
+
url: toPathString(localVarUrlObj),
|
|
8884
|
+
options: localVarRequestOptions
|
|
8885
|
+
};
|
|
8886
|
+
} };
|
|
8887
|
+
};
|
|
8888
|
+
/**
|
|
8889
|
+
* VersionApi - functional programming interface
|
|
8890
|
+
*/
|
|
8891
|
+
const VersionApiFp = function(configuration) {
|
|
8892
|
+
const localVarAxiosParamCreator = VersionApiAxiosParamCreator(configuration);
|
|
8893
|
+
return { async getApiVersion(options) {
|
|
8894
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getApiVersion(options);
|
|
8895
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8896
|
+
const localVarOperationServerBasePath = operationServerMap["VersionApi.getApiVersion"]?.[localVarOperationServerIndex]?.url;
|
|
8897
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
8898
|
+
} };
|
|
8899
|
+
};
|
|
8900
|
+
/**
|
|
8901
|
+
* VersionApi - factory interface
|
|
8902
|
+
*/
|
|
8903
|
+
const VersionApiFactory = function(configuration, basePath, axios) {
|
|
8904
|
+
const localVarFp = VersionApiFp(configuration);
|
|
8905
|
+
return { getApiVersion(options) {
|
|
8906
|
+
return localVarFp.getApiVersion(options).then((request) => request(axios, basePath));
|
|
8907
|
+
} };
|
|
8908
|
+
};
|
|
8909
|
+
/**
|
|
8910
|
+
* VersionApi - object-oriented interface
|
|
8911
|
+
*/
|
|
8912
|
+
var VersionApi = class extends BaseAPI {
|
|
8913
|
+
/**
|
|
8914
|
+
* Retrieves the version of the NOVA API.
|
|
8915
|
+
* @summary API Version
|
|
8916
|
+
* @param {*} [options] Override http request option.
|
|
8917
|
+
* @throws {RequiredError}
|
|
8918
|
+
*/
|
|
8919
|
+
getApiVersion(options) {
|
|
8920
|
+
return VersionApiFp(this.configuration).getApiVersion(options).then((request) => request(this.axios, this.basePath));
|
|
8921
|
+
}
|
|
8922
|
+
};
|
|
8923
|
+
/**
|
|
9244
8924
|
* VirtualRobotApi - axios parameter creator
|
|
9245
|
-
* @export
|
|
9246
8925
|
*/
|
|
9247
8926
|
const VirtualRobotApiAxiosParamCreator = function(configuration) {
|
|
9248
8927
|
return {
|
|
@@ -9428,7 +9107,6 @@ const VirtualRobotApiAxiosParamCreator = function(configuration) {
|
|
|
9428
9107
|
};
|
|
9429
9108
|
/**
|
|
9430
9109
|
* VirtualRobotApi - functional programming interface
|
|
9431
|
-
* @export
|
|
9432
9110
|
*/
|
|
9433
9111
|
const VirtualRobotApiFp = function(configuration) {
|
|
9434
9112
|
const localVarAxiosParamCreator = VirtualRobotApiAxiosParamCreator(configuration);
|
|
@@ -9473,7 +9151,6 @@ const VirtualRobotApiFp = function(configuration) {
|
|
|
9473
9151
|
};
|
|
9474
9152
|
/**
|
|
9475
9153
|
* VirtualRobotApi - factory interface
|
|
9476
|
-
* @export
|
|
9477
9154
|
*/
|
|
9478
9155
|
const VirtualRobotApiFactory = function(configuration, basePath, axios) {
|
|
9479
9156
|
const localVarFp = VirtualRobotApiFp(configuration);
|
|
@@ -9500,9 +9177,6 @@ const VirtualRobotApiFactory = function(configuration, basePath, axios) {
|
|
|
9500
9177
|
};
|
|
9501
9178
|
/**
|
|
9502
9179
|
* VirtualRobotApi - object-oriented interface
|
|
9503
|
-
* @export
|
|
9504
|
-
* @class VirtualRobotApi
|
|
9505
|
-
* @extends {BaseAPI}
|
|
9506
9180
|
*/
|
|
9507
9181
|
var VirtualRobotApi = class extends BaseAPI {
|
|
9508
9182
|
/**
|
|
@@ -9513,7 +9187,6 @@ var VirtualRobotApi = class extends BaseAPI {
|
|
|
9513
9187
|
* @param {number} id The controller specific motion-group id.
|
|
9514
9188
|
* @param {*} [options] Override http request option.
|
|
9515
9189
|
* @throws {RequiredError}
|
|
9516
|
-
* @memberof VirtualRobotApi
|
|
9517
9190
|
*/
|
|
9518
9191
|
getMotionGroupState(cell, controller, id, options) {
|
|
9519
9192
|
return VirtualRobotApiFp(this.configuration).getMotionGroupState(cell, controller, id, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9525,7 +9198,6 @@ var VirtualRobotApi = class extends BaseAPI {
|
|
|
9525
9198
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
9526
9199
|
* @param {*} [options] Override http request option.
|
|
9527
9200
|
* @throws {RequiredError}
|
|
9528
|
-
* @memberof VirtualRobotApi
|
|
9529
9201
|
*/
|
|
9530
9202
|
getMotionGroups(cell, controller, options) {
|
|
9531
9203
|
return VirtualRobotApiFp(this.configuration).getMotionGroups(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9538,7 +9210,6 @@ var VirtualRobotApi = class extends BaseAPI {
|
|
|
9538
9210
|
* @param {string} io The io id.
|
|
9539
9211
|
* @param {*} [options] Override http request option.
|
|
9540
9212
|
* @throws {RequiredError}
|
|
9541
|
-
* @memberof VirtualRobotApi
|
|
9542
9213
|
*/
|
|
9543
9214
|
getVirtualRobotIOValue(cell, controller, io, options) {
|
|
9544
9215
|
return VirtualRobotApiFp(this.configuration).getVirtualRobotIOValue(cell, controller, io, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9550,7 +9221,6 @@ var VirtualRobotApi = class extends BaseAPI {
|
|
|
9550
9221
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
9551
9222
|
* @param {*} [options] Override http request option.
|
|
9552
9223
|
* @throws {RequiredError}
|
|
9553
|
-
* @memberof VirtualRobotApi
|
|
9554
9224
|
*/
|
|
9555
9225
|
listIOs(cell, controller, options) {
|
|
9556
9226
|
return VirtualRobotApiFp(this.configuration).listIOs(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9564,7 +9234,6 @@ var VirtualRobotApi = class extends BaseAPI {
|
|
|
9564
9234
|
* @param {MotionGroupJoints} motionGroupJoints
|
|
9565
9235
|
* @param {*} [options] Override http request option.
|
|
9566
9236
|
* @throws {RequiredError}
|
|
9567
|
-
* @memberof VirtualRobotApi
|
|
9568
9237
|
*/
|
|
9569
9238
|
setMotionGroupState(cell, controller, id, motionGroupJoints, options) {
|
|
9570
9239
|
return VirtualRobotApiFp(this.configuration).setMotionGroupState(cell, controller, id, motionGroupJoints, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9580,7 +9249,6 @@ var VirtualRobotApi = class extends BaseAPI {
|
|
|
9580
9249
|
* @param {number} [_double]
|
|
9581
9250
|
* @param {*} [options] Override http request option.
|
|
9582
9251
|
* @throws {RequiredError}
|
|
9583
|
-
* @memberof VirtualRobotApi
|
|
9584
9252
|
*/
|
|
9585
9253
|
setVirtualRobotIOValue(cell, controller, io, bool, integer, _double, options) {
|
|
9586
9254
|
return VirtualRobotApiFp(this.configuration).setVirtualRobotIOValue(cell, controller, io, bool, integer, _double, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9588,7 +9256,6 @@ var VirtualRobotApi = class extends BaseAPI {
|
|
|
9588
9256
|
};
|
|
9589
9257
|
/**
|
|
9590
9258
|
* VirtualRobotBehaviorApi - axios parameter creator
|
|
9591
|
-
* @export
|
|
9592
9259
|
*/
|
|
9593
9260
|
const VirtualRobotBehaviorApiAxiosParamCreator = function(configuration) {
|
|
9594
9261
|
return {
|
|
@@ -9686,7 +9353,6 @@ const VirtualRobotBehaviorApiAxiosParamCreator = function(configuration) {
|
|
|
9686
9353
|
};
|
|
9687
9354
|
/**
|
|
9688
9355
|
* VirtualRobotBehaviorApi - functional programming interface
|
|
9689
|
-
* @export
|
|
9690
9356
|
*/
|
|
9691
9357
|
const VirtualRobotBehaviorApiFp = function(configuration) {
|
|
9692
9358
|
const localVarAxiosParamCreator = VirtualRobotBehaviorApiAxiosParamCreator(configuration);
|
|
@@ -9713,7 +9379,6 @@ const VirtualRobotBehaviorApiFp = function(configuration) {
|
|
|
9713
9379
|
};
|
|
9714
9380
|
/**
|
|
9715
9381
|
* VirtualRobotBehaviorApi - factory interface
|
|
9716
|
-
* @export
|
|
9717
9382
|
*/
|
|
9718
9383
|
const VirtualRobotBehaviorApiFactory = function(configuration, basePath, axios) {
|
|
9719
9384
|
const localVarFp = VirtualRobotBehaviorApiFp(configuration);
|
|
@@ -9731,9 +9396,6 @@ const VirtualRobotBehaviorApiFactory = function(configuration, basePath, axios)
|
|
|
9731
9396
|
};
|
|
9732
9397
|
/**
|
|
9733
9398
|
* VirtualRobotBehaviorApi - object-oriented interface
|
|
9734
|
-
* @export
|
|
9735
|
-
* @class VirtualRobotBehaviorApi
|
|
9736
|
-
* @extends {BaseAPI}
|
|
9737
9399
|
*/
|
|
9738
9400
|
var VirtualRobotBehaviorApi = class extends BaseAPI {
|
|
9739
9401
|
/**
|
|
@@ -9744,7 +9406,6 @@ var VirtualRobotBehaviorApi = class extends BaseAPI {
|
|
|
9744
9406
|
* @param {ExternalJointStreamDatapoint} externalJointStreamDatapoint
|
|
9745
9407
|
* @param {*} [options] Override http request option.
|
|
9746
9408
|
* @throws {RequiredError}
|
|
9747
|
-
* @memberof VirtualRobotBehaviorApi
|
|
9748
9409
|
*/
|
|
9749
9410
|
externalJointsStream(cell, controller, externalJointStreamDatapoint, options) {
|
|
9750
9411
|
return VirtualRobotBehaviorApiFp(this.configuration).externalJointsStream(cell, controller, externalJointStreamDatapoint, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9757,7 +9418,6 @@ var VirtualRobotBehaviorApi = class extends BaseAPI {
|
|
|
9757
9418
|
* @param {number} id The controller specific motion-group id.
|
|
9758
9419
|
* @param {*} [options] Override http request option.
|
|
9759
9420
|
* @throws {RequiredError}
|
|
9760
|
-
* @memberof VirtualRobotBehaviorApi
|
|
9761
9421
|
*/
|
|
9762
9422
|
getMotionGroupBehavior(cell, controller, id, options) {
|
|
9763
9423
|
return VirtualRobotBehaviorApiFp(this.configuration).getMotionGroupBehavior(cell, controller, id, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9771,7 +9431,6 @@ var VirtualRobotBehaviorApi = class extends BaseAPI {
|
|
|
9771
9431
|
* @param {Behavior} [behavior]
|
|
9772
9432
|
* @param {*} [options] Override http request option.
|
|
9773
9433
|
* @throws {RequiredError}
|
|
9774
|
-
* @memberof VirtualRobotBehaviorApi
|
|
9775
9434
|
*/
|
|
9776
9435
|
setMotionGroupBehavior(cell, controller, id, behavior, options) {
|
|
9777
9436
|
return VirtualRobotBehaviorApiFp(this.configuration).setMotionGroupBehavior(cell, controller, id, behavior, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9779,7 +9438,6 @@ var VirtualRobotBehaviorApi = class extends BaseAPI {
|
|
|
9779
9438
|
};
|
|
9780
9439
|
/**
|
|
9781
9440
|
* VirtualRobotModeApi - axios parameter creator
|
|
9782
|
-
* @export
|
|
9783
9441
|
*/
|
|
9784
9442
|
const VirtualRobotModeApiAxiosParamCreator = function(configuration) {
|
|
9785
9443
|
return {
|
|
@@ -9957,7 +9615,6 @@ const VirtualRobotModeApiAxiosParamCreator = function(configuration) {
|
|
|
9957
9615
|
};
|
|
9958
9616
|
/**
|
|
9959
9617
|
* VirtualRobotModeApi - functional programming interface
|
|
9960
|
-
* @export
|
|
9961
9618
|
*/
|
|
9962
9619
|
const VirtualRobotModeApiFp = function(configuration) {
|
|
9963
9620
|
const localVarAxiosParamCreator = VirtualRobotModeApiAxiosParamCreator(configuration);
|
|
@@ -10002,7 +9659,6 @@ const VirtualRobotModeApiFp = function(configuration) {
|
|
|
10002
9659
|
};
|
|
10003
9660
|
/**
|
|
10004
9661
|
* VirtualRobotModeApi - factory interface
|
|
10005
|
-
* @export
|
|
10006
9662
|
*/
|
|
10007
9663
|
const VirtualRobotModeApiFactory = function(configuration, basePath, axios) {
|
|
10008
9664
|
const localVarFp = VirtualRobotModeApiFp(configuration);
|
|
@@ -10029,9 +9685,6 @@ const VirtualRobotModeApiFactory = function(configuration, basePath, axios) {
|
|
|
10029
9685
|
};
|
|
10030
9686
|
/**
|
|
10031
9687
|
* VirtualRobotModeApi - object-oriented interface
|
|
10032
|
-
* @export
|
|
10033
|
-
* @class VirtualRobotModeApi
|
|
10034
|
-
* @extends {BaseAPI}
|
|
10035
9688
|
*/
|
|
10036
9689
|
var VirtualRobotModeApi = class extends BaseAPI {
|
|
10037
9690
|
/**
|
|
@@ -10041,7 +9694,6 @@ var VirtualRobotModeApi = class extends BaseAPI {
|
|
|
10041
9694
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
10042
9695
|
* @param {*} [options] Override http request option.
|
|
10043
9696
|
* @throws {RequiredError}
|
|
10044
|
-
* @memberof VirtualRobotModeApi
|
|
10045
9697
|
*/
|
|
10046
9698
|
getCycleTime(cell, controller, options) {
|
|
10047
9699
|
return VirtualRobotModeApiFp(this.configuration).getCycleTime(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10053,7 +9705,6 @@ var VirtualRobotModeApi = class extends BaseAPI {
|
|
|
10053
9705
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
10054
9706
|
* @param {*} [options] Override http request option.
|
|
10055
9707
|
* @throws {RequiredError}
|
|
10056
|
-
* @memberof VirtualRobotModeApi
|
|
10057
9708
|
*/
|
|
10058
9709
|
getEStop(cell, controller, options) {
|
|
10059
9710
|
return VirtualRobotModeApiFp(this.configuration).getEStop(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10065,7 +9716,6 @@ var VirtualRobotModeApi = class extends BaseAPI {
|
|
|
10065
9716
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
10066
9717
|
* @param {*} [options] Override http request option.
|
|
10067
9718
|
* @throws {RequiredError}
|
|
10068
|
-
* @memberof VirtualRobotModeApi
|
|
10069
9719
|
*/
|
|
10070
9720
|
getOperationMode(cell, controller, options) {
|
|
10071
9721
|
return VirtualRobotModeApiFp(this.configuration).getOperationMode(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10077,7 +9727,6 @@ var VirtualRobotModeApi = class extends BaseAPI {
|
|
|
10077
9727
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
10078
9728
|
* @param {*} [options] Override http request option.
|
|
10079
9729
|
* @throws {RequiredError}
|
|
10080
|
-
* @memberof VirtualRobotModeApi
|
|
10081
9730
|
*/
|
|
10082
9731
|
pushEStop(cell, controller, options) {
|
|
10083
9732
|
return VirtualRobotModeApiFp(this.configuration).pushEStop(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10089,7 +9738,6 @@ var VirtualRobotModeApi = class extends BaseAPI {
|
|
|
10089
9738
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
10090
9739
|
* @param {*} [options] Override http request option.
|
|
10091
9740
|
* @throws {RequiredError}
|
|
10092
|
-
* @memberof VirtualRobotModeApi
|
|
10093
9741
|
*/
|
|
10094
9742
|
releaseEStop(cell, controller, options) {
|
|
10095
9743
|
return VirtualRobotModeApiFp(this.configuration).releaseEStop(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10102,22 +9750,17 @@ var VirtualRobotModeApi = class extends BaseAPI {
|
|
|
10102
9750
|
* @param {SetOperationModeModeEnum} mode
|
|
10103
9751
|
* @param {*} [options] Override http request option.
|
|
10104
9752
|
* @throws {RequiredError}
|
|
10105
|
-
* @memberof VirtualRobotModeApi
|
|
10106
9753
|
*/
|
|
10107
9754
|
setOperationMode(cell, controller, mode, options) {
|
|
10108
9755
|
return VirtualRobotModeApiFp(this.configuration).setOperationMode(cell, controller, mode, options).then((request) => request(this.axios, this.basePath));
|
|
10109
9756
|
}
|
|
10110
9757
|
};
|
|
10111
|
-
/**
|
|
10112
|
-
* @export
|
|
10113
|
-
*/
|
|
10114
9758
|
const SetOperationModeModeEnum = {
|
|
10115
9759
|
OperationModeManual: "OPERATION_MODE_MANUAL",
|
|
10116
9760
|
OperationModeAuto: "OPERATION_MODE_AUTO"
|
|
10117
9761
|
};
|
|
10118
9762
|
/**
|
|
10119
9763
|
* VirtualRobotSetupApi - axios parameter creator
|
|
10120
|
-
* @export
|
|
10121
9764
|
*/
|
|
10122
9765
|
const VirtualRobotSetupApiAxiosParamCreator = function(configuration) {
|
|
10123
9766
|
return {
|
|
@@ -10366,7 +10009,6 @@ const VirtualRobotSetupApiAxiosParamCreator = function(configuration) {
|
|
|
10366
10009
|
};
|
|
10367
10010
|
/**
|
|
10368
10011
|
* VirtualRobotSetupApi - functional programming interface
|
|
10369
|
-
* @export
|
|
10370
10012
|
*/
|
|
10371
10013
|
const VirtualRobotSetupApiFp = function(configuration) {
|
|
10372
10014
|
const localVarAxiosParamCreator = VirtualRobotSetupApiAxiosParamCreator(configuration);
|
|
@@ -10423,7 +10065,6 @@ const VirtualRobotSetupApiFp = function(configuration) {
|
|
|
10423
10065
|
};
|
|
10424
10066
|
/**
|
|
10425
10067
|
* VirtualRobotSetupApi - factory interface
|
|
10426
|
-
* @export
|
|
10427
10068
|
*/
|
|
10428
10069
|
const VirtualRobotSetupApiFactory = function(configuration, basePath, axios) {
|
|
10429
10070
|
const localVarFp = VirtualRobotSetupApiFp(configuration);
|
|
@@ -10456,9 +10097,6 @@ const VirtualRobotSetupApiFactory = function(configuration, basePath, axios) {
|
|
|
10456
10097
|
};
|
|
10457
10098
|
/**
|
|
10458
10099
|
* VirtualRobotSetupApi - object-oriented interface
|
|
10459
|
-
* @export
|
|
10460
|
-
* @class VirtualRobotSetupApi
|
|
10461
|
-
* @extends {BaseAPI}
|
|
10462
10100
|
*/
|
|
10463
10101
|
var VirtualRobotSetupApi = class extends BaseAPI {
|
|
10464
10102
|
/**
|
|
@@ -10469,7 +10107,6 @@ var VirtualRobotSetupApi = class extends BaseAPI {
|
|
|
10469
10107
|
* @param {CoordinateSystem} coordinateSystem
|
|
10470
10108
|
* @param {*} [options] Override http request option.
|
|
10471
10109
|
* @throws {RequiredError}
|
|
10472
|
-
* @memberof VirtualRobotSetupApi
|
|
10473
10110
|
*/
|
|
10474
10111
|
addVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, options) {
|
|
10475
10112
|
return VirtualRobotSetupApiFp(this.configuration).addVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10483,7 +10120,6 @@ var VirtualRobotSetupApi = class extends BaseAPI {
|
|
|
10483
10120
|
* @param {RobotTcp} robotTcp
|
|
10484
10121
|
* @param {*} [options] Override http request option.
|
|
10485
10122
|
* @throws {RequiredError}
|
|
10486
|
-
* @memberof VirtualRobotSetupApi
|
|
10487
10123
|
*/
|
|
10488
10124
|
addVirtualRobotTcp(cell, controller, id, robotTcp, options) {
|
|
10489
10125
|
return VirtualRobotSetupApiFp(this.configuration).addVirtualRobotTcp(cell, controller, id, robotTcp, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10497,7 +10133,6 @@ var VirtualRobotSetupApi = class extends BaseAPI {
|
|
|
10497
10133
|
* @param {boolean} [deleteDependent] If true, all dependent coordinate systems will be deleted as well.
|
|
10498
10134
|
* @param {*} [options] Override http request option.
|
|
10499
10135
|
* @throws {RequiredError}
|
|
10500
|
-
* @memberof VirtualRobotSetupApi
|
|
10501
10136
|
*/
|
|
10502
10137
|
deleteVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
10503
10138
|
return VirtualRobotSetupApiFp(this.configuration).deleteVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10511,7 +10146,6 @@ var VirtualRobotSetupApi = class extends BaseAPI {
|
|
|
10511
10146
|
* @param {string} tcp The unique identifier of a TCP.
|
|
10512
10147
|
* @param {*} [options] Override http request option.
|
|
10513
10148
|
* @throws {RequiredError}
|
|
10514
|
-
* @memberof VirtualRobotSetupApi
|
|
10515
10149
|
*/
|
|
10516
10150
|
deleteVirtualRobotTcp(cell, controller, id, tcp, options) {
|
|
10517
10151
|
return VirtualRobotSetupApiFp(this.configuration).deleteVirtualRobotTcp(cell, controller, id, tcp, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10524,7 +10158,6 @@ var VirtualRobotSetupApi = class extends BaseAPI {
|
|
|
10524
10158
|
* @param {number} id The controller specific motion-group id.
|
|
10525
10159
|
* @param {*} [options] Override http request option.
|
|
10526
10160
|
* @throws {RequiredError}
|
|
10527
|
-
* @memberof VirtualRobotSetupApi
|
|
10528
10161
|
*/
|
|
10529
10162
|
getVirtualRobotMounting(cell, controller, id, options) {
|
|
10530
10163
|
return VirtualRobotSetupApiFp(this.configuration).getVirtualRobotMounting(cell, controller, id, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10536,7 +10169,6 @@ var VirtualRobotSetupApi = class extends BaseAPI {
|
|
|
10536
10169
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
10537
10170
|
* @param {*} [options] Override http request option.
|
|
10538
10171
|
* @throws {RequiredError}
|
|
10539
|
-
* @memberof VirtualRobotSetupApi
|
|
10540
10172
|
*/
|
|
10541
10173
|
listVirtualRobotCoordinateSystems(cell, controller, options) {
|
|
10542
10174
|
return VirtualRobotSetupApiFp(this.configuration).listVirtualRobotCoordinateSystems(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10549,7 +10181,6 @@ var VirtualRobotSetupApi = class extends BaseAPI {
|
|
|
10549
10181
|
* @param {number} id The controller specific motion-group id.
|
|
10550
10182
|
* @param {*} [options] Override http request option.
|
|
10551
10183
|
* @throws {RequiredError}
|
|
10552
|
-
* @memberof VirtualRobotSetupApi
|
|
10553
10184
|
*/
|
|
10554
10185
|
listVirtualRobotTcps(cell, controller, id, options) {
|
|
10555
10186
|
return VirtualRobotSetupApiFp(this.configuration).listVirtualRobotTcps(cell, controller, id, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10563,7 +10194,6 @@ var VirtualRobotSetupApi = class extends BaseAPI {
|
|
|
10563
10194
|
* @param {CoordinateSystem} coordinateSystem
|
|
10564
10195
|
* @param {*} [options] Override http request option.
|
|
10565
10196
|
* @throws {RequiredError}
|
|
10566
|
-
* @memberof VirtualRobotSetupApi
|
|
10567
10197
|
*/
|
|
10568
10198
|
setVirtualRobotMounting(cell, controller, id, coordinateSystem, options) {
|
|
10569
10199
|
return VirtualRobotSetupApiFp(this.configuration).setVirtualRobotMounting(cell, controller, id, coordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10579,7 +10209,6 @@ var Configuration = class {
|
|
|
10579
10209
|
/**
|
|
10580
10210
|
* parameter for apiKey security
|
|
10581
10211
|
* @param name security name
|
|
10582
|
-
* @memberof Configuration
|
|
10583
10212
|
*/
|
|
10584
10213
|
"apiKey",
|
|
10585
10214
|
void 0
|
|
@@ -10588,9 +10217,6 @@ var Configuration = class {
|
|
|
10588
10217
|
this,
|
|
10589
10218
|
/**
|
|
10590
10219
|
* parameter for basic security
|
|
10591
|
-
*
|
|
10592
|
-
* @type {string}
|
|
10593
|
-
* @memberof Configuration
|
|
10594
10220
|
*/
|
|
10595
10221
|
"username",
|
|
10596
10222
|
void 0
|
|
@@ -10599,9 +10225,6 @@ var Configuration = class {
|
|
|
10599
10225
|
this,
|
|
10600
10226
|
/**
|
|
10601
10227
|
* parameter for basic security
|
|
10602
|
-
*
|
|
10603
|
-
* @type {string}
|
|
10604
|
-
* @memberof Configuration
|
|
10605
10228
|
*/
|
|
10606
10229
|
"password",
|
|
10607
10230
|
void 0
|
|
@@ -10612,7 +10235,6 @@ var Configuration = class {
|
|
|
10612
10235
|
* parameter for oauth2 security
|
|
10613
10236
|
* @param name security name
|
|
10614
10237
|
* @param scopes oauth2 scope
|
|
10615
|
-
* @memberof Configuration
|
|
10616
10238
|
*/
|
|
10617
10239
|
"accessToken",
|
|
10618
10240
|
void 0
|
|
@@ -10620,11 +10242,23 @@ var Configuration = class {
|
|
|
10620
10242
|
_defineProperty(
|
|
10621
10243
|
this,
|
|
10622
10244
|
/**
|
|
10623
|
-
*
|
|
10624
|
-
*
|
|
10625
|
-
* @
|
|
10245
|
+
* parameter for aws4 signature security
|
|
10246
|
+
* @param {Object} AWS4Signature - AWS4 Signature security
|
|
10247
|
+
* @param {string} options.region - aws region
|
|
10248
|
+
* @param {string} options.service - name of the service.
|
|
10249
|
+
* @param {string} credentials.accessKeyId - aws access key id
|
|
10250
|
+
* @param {string} credentials.secretAccessKey - aws access key
|
|
10251
|
+
* @param {string} credentials.sessionToken - aws session token
|
|
10626
10252
|
* @memberof Configuration
|
|
10627
10253
|
*/
|
|
10254
|
+
"awsv4",
|
|
10255
|
+
void 0
|
|
10256
|
+
);
|
|
10257
|
+
_defineProperty(
|
|
10258
|
+
this,
|
|
10259
|
+
/**
|
|
10260
|
+
* override base path
|
|
10261
|
+
*/
|
|
10628
10262
|
"basePath",
|
|
10629
10263
|
void 0
|
|
10630
10264
|
);
|
|
@@ -10632,9 +10266,6 @@ var Configuration = class {
|
|
|
10632
10266
|
this,
|
|
10633
10267
|
/**
|
|
10634
10268
|
* override server index
|
|
10635
|
-
*
|
|
10636
|
-
* @type {number}
|
|
10637
|
-
* @memberof Configuration
|
|
10638
10269
|
*/
|
|
10639
10270
|
"serverIndex",
|
|
10640
10271
|
void 0
|
|
@@ -10643,9 +10274,6 @@ var Configuration = class {
|
|
|
10643
10274
|
this,
|
|
10644
10275
|
/**
|
|
10645
10276
|
* base options for axios calls
|
|
10646
|
-
*
|
|
10647
|
-
* @type {any}
|
|
10648
|
-
* @memberof Configuration
|
|
10649
10277
|
*/
|
|
10650
10278
|
"baseOptions",
|
|
10651
10279
|
void 0
|
|
@@ -10666,14 +10294,12 @@ var Configuration = class {
|
|
|
10666
10294
|
this.username = param.username;
|
|
10667
10295
|
this.password = param.password;
|
|
10668
10296
|
this.accessToken = param.accessToken;
|
|
10297
|
+
this.awsv4 = param.awsv4;
|
|
10669
10298
|
this.basePath = param.basePath;
|
|
10670
10299
|
this.serverIndex = param.serverIndex;
|
|
10671
10300
|
this.baseOptions = {
|
|
10672
|
-
|
|
10673
|
-
|
|
10674
|
-
"User-Agent": "OpenAPI-Generator/typescript-axios"
|
|
10675
|
-
},
|
|
10676
|
-
...param.baseOptions
|
|
10301
|
+
...param.baseOptions,
|
|
10302
|
+
headers: { ...param.baseOptions?.headers }
|
|
10677
10303
|
};
|
|
10678
10304
|
this.formDataCtor = param.formDataCtor;
|
|
10679
10305
|
}
|
|
@@ -10693,4 +10319,4 @@ var Configuration = class {
|
|
|
10693
10319
|
};
|
|
10694
10320
|
|
|
10695
10321
|
//#endregion
|
|
10696
|
-
export { AbbControllerKindEnum, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BaseAPI, Behavior, BlendingAutoBlendingNameEnum, BlendingPositionBlendingNameEnum, Box2BoxTypeEnum, Box2ShapeTypeEnum, Box3ShapeTypeEnum, Box3TypeEnum, BoxTypeEnum, COLLECTION_FORMATS, Capsule2ShapeTypeEnum, Capsule3ShapeTypeEnum, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, Comparator, Configuration, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerIOsApi, ControllerIOsApiAxiosParamCreator, ControllerIOsApiFactory, ControllerIOsApiFp, ConvexHull2ShapeTypeEnum, ConvexHull3ShapeTypeEnum, CoordinateSystemsApi, CoordinateSystemsApiAxiosParamCreator, CoordinateSystemsApiFactory, CoordinateSystemsApiFp, Cylinder2ShapeTypeEnum, Cylinder3ShapeTypeEnum, DeviceConfigurationApi, DeviceConfigurationApiAxiosParamCreator, DeviceConfigurationApiFactory, DeviceConfigurationApiFp, Direction, FanucControllerKindEnum, FeedbackCollisionErrorFeedbackNameEnum, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularityErrorFeedbackNameEnum, GetDefaultLinkChainMotionGroupModelEnum, IODescriptionTypeEnum, IODescriptionUnitEnum, IODescriptionValueTypeEnum, IODirectionEnum, JoggingResponseMovementStateEnum, JointLimitJointEnum, KukaControllerKindEnum, LibraryProgramApi, LibraryProgramApiAxiosParamCreator, LibraryProgramApiFactory, LibraryProgramApiFp, LibraryProgramMetadataApi, LibraryProgramMetadataApiAxiosParamCreator, LibraryProgramMetadataApiFactory, LibraryProgramMetadataApiFp, LibraryRecipeApi, LibraryRecipeApiAxiosParamCreator, LibraryRecipeApiFactory, LibraryRecipeApiFp, LibraryRecipeMetadataApi, LibraryRecipeMetadataApiAxiosParamCreator, LibraryRecipeMetadataApiFactory, LibraryRecipeMetadataApiFp, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatusEnum, Manufacturer, MotionApi, MotionApiAxiosParamCreator, MotionApiFactory, MotionApiFp, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupInfosApi, MotionGroupInfosApiAxiosParamCreator, MotionGroupInfosApiFactory, MotionGroupInfosApiFp, MotionGroupJoggingApi, MotionGroupJoggingApiAxiosParamCreator, MotionGroupJoggingApiFactory, MotionGroupJoggingApiFp, MotionGroupKinematicApi, MotionGroupKinematicApiAxiosParamCreator, MotionGroupKinematicApiFactory, MotionGroupKinematicApiFp, OpModeModeEnum, PathCartesianPTPPathDefinitionNameEnum, PathCirclePathDefinitionNameEnum, PathCubicSplinePathDefinitionNameEnum, PathJointPTPPathDefinitionNameEnum, PathLinePathDefinitionNameEnum, Plane2ShapeTypeEnum, Plane3ShapeTypeEnum, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramOperatorApi, ProgramOperatorApiAxiosParamCreator, ProgramOperatorApiFactory, ProgramOperatorApiFp, ProgramRunState, ProgramValuesApi, ProgramValuesApiAxiosParamCreator, ProgramValuesApiFactory, ProgramValuesApiFp, PyripheryPyraeRobotRobotConfigurationTypeEnum, PyripheryRoboticsRobotcellTimerConfigurationTypeEnum, Rectangle2ShapeTypeEnum, Rectangle3ShapeTypeEnum, RectangularCapsule2ShapeTypeEnum, RectangularCapsule3ShapeTypeEnum, ReleaseChannel, RequiredError, RobotControllerStateOperationModeEnum, RobotControllerStateSafetyStateEnum, RobotSystemMode, RotationAngleTypes, SafetySetupSafetySettingsSafetyStateEnum, ServiceStatusPhase, ServiceStatusSeverity, SetDefaultModeModeEnum, SetOperationModeModeEnum, SingleJointLimitJointEnum, SingularitySingularityTypeEnum, SingularityTypeEnum, Sphere2ShapeTypeEnum, Sphere3ShapeTypeEnum, StandstillReason, StopResponseStopCodeEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionScenesApi, StoreCollisionScenesApiAxiosParamCreator, StoreCollisionScenesApiFactory, StoreCollisionScenesApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TriggerType, UniversalrobotsControllerKindEnum, VirtualControllerKindEnum, VirtualControllerTypes, VirtualRobotApi, VirtualRobotApiAxiosParamCreator, VirtualRobotApiFactory, VirtualRobotApiFp, VirtualRobotBehaviorApi, VirtualRobotBehaviorApiAxiosParamCreator, VirtualRobotBehaviorApiFactory, VirtualRobotBehaviorApiFp, VirtualRobotModeApi, VirtualRobotModeApiAxiosParamCreator, VirtualRobotModeApiFactory, VirtualRobotModeApiFp, VirtualRobotSetupApi, VirtualRobotSetupApiAxiosParamCreator, VirtualRobotSetupApiFactory, VirtualRobotSetupApiFp, WaitForIOEventComparisonTypeEnum, YaskawaControllerKindEnum, operationServerMap };
|
|
10322
|
+
export { AbbControllerKindEnum, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BaseAPI, Behavior, BlendingAutoBlendingNameEnum, BlendingPositionBlendingNameEnum, Box2BoxTypeEnum, Box2ShapeTypeEnum, Box3ShapeTypeEnum, Box3TypeEnum, BoxTypeEnum, COLLECTION_FORMATS, Capsule2ShapeTypeEnum, Capsule3ShapeTypeEnum, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, Comparator, Configuration, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerIOsApi, ControllerIOsApiAxiosParamCreator, ControllerIOsApiFactory, ControllerIOsApiFp, ConvexHull2ShapeTypeEnum, ConvexHull3ShapeTypeEnum, CoordinateSystemsApi, CoordinateSystemsApiAxiosParamCreator, CoordinateSystemsApiFactory, CoordinateSystemsApiFp, Cylinder2ShapeTypeEnum, Cylinder3ShapeTypeEnum, DeviceConfigurationApi, DeviceConfigurationApiAxiosParamCreator, DeviceConfigurationApiFactory, DeviceConfigurationApiFp, Direction, FanucControllerKindEnum, FeedbackCollisionErrorFeedbackNameEnum, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularityErrorFeedbackNameEnum, GetDefaultLinkChainMotionGroupModelEnum, IODescriptionTypeEnum, IODescriptionUnitEnum, IODescriptionValueTypeEnum, IODirectionEnum, JoggingResponseMovementStateEnum, JointLimitJointEnum, KukaControllerKindEnum, LibraryProgramApi, LibraryProgramApiAxiosParamCreator, LibraryProgramApiFactory, LibraryProgramApiFp, LibraryProgramMetadataApi, LibraryProgramMetadataApiAxiosParamCreator, LibraryProgramMetadataApiFactory, LibraryProgramMetadataApiFp, LibraryRecipeApi, LibraryRecipeApiAxiosParamCreator, LibraryRecipeApiFactory, LibraryRecipeApiFp, LibraryRecipeMetadataApi, LibraryRecipeMetadataApiAxiosParamCreator, LibraryRecipeMetadataApiFactory, LibraryRecipeMetadataApiFp, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatusEnum, Manufacturer, MotionApi, MotionApiAxiosParamCreator, MotionApiFactory, MotionApiFp, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupInfosApi, MotionGroupInfosApiAxiosParamCreator, MotionGroupInfosApiFactory, MotionGroupInfosApiFp, MotionGroupJoggingApi, MotionGroupJoggingApiAxiosParamCreator, MotionGroupJoggingApiFactory, MotionGroupJoggingApiFp, MotionGroupKinematicApi, MotionGroupKinematicApiAxiosParamCreator, MotionGroupKinematicApiFactory, MotionGroupKinematicApiFp, OpModeModeEnum, PathCartesianPTPPathDefinitionNameEnum, PathCirclePathDefinitionNameEnum, PathCubicSplinePathDefinitionNameEnum, PathJointPTPPathDefinitionNameEnum, PathLinePathDefinitionNameEnum, Plane2ShapeTypeEnum, Plane3ShapeTypeEnum, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramOperatorApi, ProgramOperatorApiAxiosParamCreator, ProgramOperatorApiFactory, ProgramOperatorApiFp, ProgramRunState, ProgramValuesApi, ProgramValuesApiAxiosParamCreator, ProgramValuesApiFactory, ProgramValuesApiFp, PyripheryPyraeRobotRobotConfigurationTypeEnum, PyripheryRoboticsRobotcellTimerConfigurationTypeEnum, Rectangle2ShapeTypeEnum, Rectangle3ShapeTypeEnum, RectangularCapsule2ShapeTypeEnum, RectangularCapsule3ShapeTypeEnum, ReleaseChannel, RequiredError, RobotControllerStateOperationModeEnum, RobotControllerStateSafetyStateEnum, RobotSystemMode, RotationAngleTypes, SafetySetupSafetySettingsSafetyStateEnum, ServiceStatusPhase, ServiceStatusSeverity, SetDefaultModeModeEnum, SetOperationModeModeEnum, SingleJointLimitJointEnum, SingularitySingularityTypeEnum, SingularityTypeEnum, Sphere2ShapeTypeEnum, Sphere3ShapeTypeEnum, StandstillReason, StopResponseStopCodeEnum, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionScenesApi, StoreCollisionScenesApiAxiosParamCreator, StoreCollisionScenesApiFactory, StoreCollisionScenesApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TriggerType, UniversalrobotsControllerKindEnum, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualControllerKindEnum, VirtualControllerTypes, VirtualRobotApi, VirtualRobotApiAxiosParamCreator, VirtualRobotApiFactory, VirtualRobotApiFp, VirtualRobotBehaviorApi, VirtualRobotBehaviorApiAxiosParamCreator, VirtualRobotBehaviorApiFactory, VirtualRobotBehaviorApiFp, VirtualRobotModeApi, VirtualRobotModeApiAxiosParamCreator, VirtualRobotModeApiFactory, VirtualRobotModeApiFp, VirtualRobotSetupApi, VirtualRobotSetupApiAxiosParamCreator, VirtualRobotSetupApiFactory, VirtualRobotSetupApiFp, WaitForIOEventComparisonTypeEnum, YaskawaControllerKindEnum, operationServerMap };
|