@wandelbots/nova-api 25.10.0-dev.9 → 25.10.0-rc.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 +99 -409
- package/dist/v2/index.d.cts +106 -2985
- package/dist/v2/index.d.ts +106 -2985
- package/dist/v2/index.js +96 -410
- package/package.json +1 -1
package/dist/v1/index.cjs
CHANGED
|
@@ -5,21 +5,12 @@ axios = require_defineProperty$1.__toESM(axios);
|
|
|
5
5
|
//#region v1/base.ts
|
|
6
6
|
var import_defineProperty$1 = /* @__PURE__ */ require_defineProperty$1.__toESM(require_defineProperty$1.require_defineProperty(), 1);
|
|
7
7
|
const BASE_PATH = "/api/v1".replace(/\/+$/, "");
|
|
8
|
-
/**
|
|
9
|
-
*
|
|
10
|
-
* @export
|
|
11
|
-
*/
|
|
12
8
|
const COLLECTION_FORMATS = {
|
|
13
9
|
csv: ",",
|
|
14
10
|
ssv: " ",
|
|
15
11
|
tsv: " ",
|
|
16
12
|
pipes: "|"
|
|
17
13
|
};
|
|
18
|
-
/**
|
|
19
|
-
*
|
|
20
|
-
* @export
|
|
21
|
-
* @class BaseAPI
|
|
22
|
-
*/
|
|
23
14
|
var BaseAPI = class {
|
|
24
15
|
constructor(configuration, basePath = BASE_PATH, axios$1 = axios.default) {
|
|
25
16
|
this.basePath = basePath;
|
|
@@ -31,12 +22,6 @@ var BaseAPI = class {
|
|
|
31
22
|
}
|
|
32
23
|
}
|
|
33
24
|
};
|
|
34
|
-
/**
|
|
35
|
-
*
|
|
36
|
-
* @export
|
|
37
|
-
* @class RequiredError
|
|
38
|
-
* @extends {Error}
|
|
39
|
-
*/
|
|
40
25
|
var RequiredError = class extends Error {
|
|
41
26
|
constructor(field, msg) {
|
|
42
27
|
super(msg);
|
|
@@ -44,41 +29,24 @@ var RequiredError = class extends Error {
|
|
|
44
29
|
this.name = "RequiredError";
|
|
45
30
|
}
|
|
46
31
|
};
|
|
47
|
-
/**
|
|
48
|
-
*
|
|
49
|
-
* @export
|
|
50
|
-
*/
|
|
51
32
|
const operationServerMap = {};
|
|
52
33
|
|
|
53
34
|
//#endregion
|
|
54
35
|
//#region v1/common.ts
|
|
55
|
-
/**
|
|
56
|
-
*
|
|
57
|
-
* @export
|
|
58
|
-
*/
|
|
59
36
|
const DUMMY_BASE_URL = "https://example.com";
|
|
60
37
|
/**
|
|
61
38
|
*
|
|
62
39
|
* @throws {RequiredError}
|
|
63
|
-
* @export
|
|
64
40
|
*/
|
|
65
41
|
const assertParamExists = function(functionName, paramName, paramValue) {
|
|
66
42
|
if (paramValue === null || paramValue === void 0) throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);
|
|
67
43
|
};
|
|
68
|
-
/**
|
|
69
|
-
*
|
|
70
|
-
* @export
|
|
71
|
-
*/
|
|
72
44
|
const setBasicAuthToObject = function(object, configuration) {
|
|
73
45
|
if (configuration && (configuration.username || configuration.password)) object["auth"] = {
|
|
74
46
|
username: configuration.username,
|
|
75
47
|
password: configuration.password
|
|
76
48
|
};
|
|
77
49
|
};
|
|
78
|
-
/**
|
|
79
|
-
*
|
|
80
|
-
* @export
|
|
81
|
-
*/
|
|
82
50
|
const setBearerAuthToObject = async function(object, configuration) {
|
|
83
51
|
if (configuration && configuration.accessToken) object["Authorization"] = "Bearer " + (typeof configuration.accessToken === "function" ? await configuration.accessToken() : await configuration.accessToken);
|
|
84
52
|
};
|
|
@@ -89,34 +57,18 @@ function setFlattenedQueryParams(urlSearchParams, parameter, key = "") {
|
|
|
89
57
|
else if (urlSearchParams.has(key)) urlSearchParams.append(key, parameter);
|
|
90
58
|
else urlSearchParams.set(key, parameter);
|
|
91
59
|
}
|
|
92
|
-
/**
|
|
93
|
-
*
|
|
94
|
-
* @export
|
|
95
|
-
*/
|
|
96
60
|
const setSearchParams = function(url, ...objects) {
|
|
97
61
|
const searchParams = new URLSearchParams(url.search);
|
|
98
62
|
setFlattenedQueryParams(searchParams, objects);
|
|
99
63
|
url.search = searchParams.toString();
|
|
100
64
|
};
|
|
101
|
-
/**
|
|
102
|
-
*
|
|
103
|
-
* @export
|
|
104
|
-
*/
|
|
105
65
|
const serializeDataIfNeeded = function(value, requestOptions, configuration) {
|
|
106
66
|
const nonString = typeof value !== "string";
|
|
107
67
|
return (nonString && configuration && configuration.isJsonMime ? configuration.isJsonMime(requestOptions.headers["Content-Type"]) : nonString) ? JSON.stringify(value !== void 0 ? value : {}) : value || "";
|
|
108
68
|
};
|
|
109
|
-
/**
|
|
110
|
-
*
|
|
111
|
-
* @export
|
|
112
|
-
*/
|
|
113
69
|
const toPathString = function(url) {
|
|
114
70
|
return url.pathname + url.search + url.hash;
|
|
115
71
|
};
|
|
116
|
-
/**
|
|
117
|
-
*
|
|
118
|
-
* @export
|
|
119
|
-
*/
|
|
120
72
|
const createRequestFunction = function(axiosArgs, globalAxios$2, BASE_PATH$1, configuration) {
|
|
121
73
|
return (axios$1 = globalAxios$2, basePath = BASE_PATH$1) => {
|
|
122
74
|
const axiosRequestArgs = {
|
|
@@ -132,8 +84,6 @@ const createRequestFunction = function(axiosArgs, globalAxios$2, BASE_PATH$1, co
|
|
|
132
84
|
const AbbControllerKindEnum = { AbbController: "AbbController" };
|
|
133
85
|
/**
|
|
134
86
|
* ## BEHAVIOR_AUTOMATIC This is the default behavior. The motion 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).
|
|
135
|
-
* @export
|
|
136
|
-
* @enum {string}
|
|
137
87
|
*/
|
|
138
88
|
const Behavior = {
|
|
139
89
|
BehaviorAutomatic: "BEHAVIOR_AUTOMATIC",
|
|
@@ -160,8 +110,6 @@ const Capsule2ShapeTypeEnum = { Capsule: "capsule" };
|
|
|
160
110
|
const Capsule3ShapeTypeEnum = { Capsule: "capsule" };
|
|
161
111
|
/**
|
|
162
112
|
* 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.
|
|
163
|
-
* @export
|
|
164
|
-
* @enum {string}
|
|
165
113
|
*/
|
|
166
114
|
const Comparator = {
|
|
167
115
|
ComparatorUnknown: "COMPARATOR_UNKNOWN",
|
|
@@ -178,8 +126,6 @@ const Cylinder2ShapeTypeEnum = { Cylinder: "cylinder" };
|
|
|
178
126
|
const Cylinder3ShapeTypeEnum = { Cylinder: "cylinder" };
|
|
179
127
|
/**
|
|
180
128
|
* The direction in which the trajectory is executed. Default: Forward.
|
|
181
|
-
* @export
|
|
182
|
-
* @enum {string}
|
|
183
129
|
*/
|
|
184
130
|
const Direction = {
|
|
185
131
|
DirectionForward: "DIRECTION_FORWARD",
|
|
@@ -240,11 +186,6 @@ const JointLimitJointEnum = {
|
|
|
240
186
|
JointnameAxis12: "JOINTNAME_AXIS_12"
|
|
241
187
|
};
|
|
242
188
|
const KukaControllerKindEnum = { KukaController: "KukaController" };
|
|
243
|
-
/**
|
|
244
|
-
*
|
|
245
|
-
* @export
|
|
246
|
-
* @enum {string}
|
|
247
|
-
*/
|
|
248
189
|
const LicenseStatusEnum = {
|
|
249
190
|
Ok: "OK",
|
|
250
191
|
Expired: "EXPIRED",
|
|
@@ -252,11 +193,6 @@ const LicenseStatusEnum = {
|
|
|
252
193
|
GracePeriodOver: "GRACE_PERIOD_OVER",
|
|
253
194
|
NotFound: "NOT_FOUND"
|
|
254
195
|
};
|
|
255
|
-
/**
|
|
256
|
-
*
|
|
257
|
-
* @export
|
|
258
|
-
* @enum {string}
|
|
259
|
-
*/
|
|
260
196
|
const Manufacturer = {
|
|
261
197
|
Abb: "abb",
|
|
262
198
|
Fanuc: "fanuc",
|
|
@@ -275,11 +211,6 @@ const PathJointPTPPathDefinitionNameEnum = { PathJointPtp: "PathJointPTP" };
|
|
|
275
211
|
const PathLinePathDefinitionNameEnum = { PathLine: "PathLine" };
|
|
276
212
|
const Plane2ShapeTypeEnum = { Plane: "plane" };
|
|
277
213
|
const Plane3ShapeTypeEnum = { Plane: "plane" };
|
|
278
|
-
/**
|
|
279
|
-
*
|
|
280
|
-
* @export
|
|
281
|
-
* @enum {string}
|
|
282
|
-
*/
|
|
283
214
|
const ProgramRunState = {
|
|
284
215
|
NotStarted: "not started",
|
|
285
216
|
Running: "running",
|
|
@@ -301,8 +232,6 @@ const RectangularCapsule2ShapeTypeEnum = { RectangularCapsule: "rectangular_caps
|
|
|
301
232
|
const RectangularCapsule3ShapeTypeEnum = { RectangularCapsule: "rectangular_capsule" };
|
|
302
233
|
/**
|
|
303
234
|
* The channel that defines what a new Wandelbots NOVA version is. * `next` the over all latest version * `stable` newes patch of the current version
|
|
304
|
-
* @export
|
|
305
|
-
* @enum {string}
|
|
306
235
|
*/
|
|
307
236
|
const ReleaseChannel = {
|
|
308
237
|
Stable: "stable",
|
|
@@ -340,8 +269,6 @@ const RobotControllerStateSafetyStateEnum = {
|
|
|
340
269
|
};
|
|
341
270
|
/**
|
|
342
271
|
* 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.
|
|
343
|
-
* @export
|
|
344
|
-
* @enum {string}
|
|
345
272
|
*/
|
|
346
273
|
const RobotSystemMode = {
|
|
347
274
|
RobotSystemModeUndefined: "ROBOT_SYSTEM_MODE_UNDEFINED",
|
|
@@ -352,8 +279,6 @@ const RobotSystemMode = {
|
|
|
352
279
|
};
|
|
353
280
|
/**
|
|
354
281
|
* 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].
|
|
355
|
-
* @export
|
|
356
|
-
* @enum {string}
|
|
357
282
|
*/
|
|
358
283
|
const RotationAngleTypes = {
|
|
359
284
|
Quaternion: "QUATERNION",
|
|
@@ -388,11 +313,6 @@ const SafetySetupSafetySettingsSafetyStateEnum = {
|
|
|
388
313
|
SafetyNormal: "SAFETY_NORMAL",
|
|
389
314
|
SafetyReduced: "SAFETY_REDUCED"
|
|
390
315
|
};
|
|
391
|
-
/**
|
|
392
|
-
*
|
|
393
|
-
* @export
|
|
394
|
-
* @enum {string}
|
|
395
|
-
*/
|
|
396
316
|
const ServiceStatusPhase = {
|
|
397
317
|
Terminating: "Terminating",
|
|
398
318
|
Initialized: "Initialized",
|
|
@@ -409,11 +329,6 @@ const ServiceStatusPhase = {
|
|
|
409
329
|
Pending: "Pending",
|
|
410
330
|
Evicted: "Evicted"
|
|
411
331
|
};
|
|
412
|
-
/**
|
|
413
|
-
*
|
|
414
|
-
* @export
|
|
415
|
-
* @enum {string}
|
|
416
|
-
*/
|
|
417
332
|
const ServiceStatusSeverity = {
|
|
418
333
|
Info: "INFO",
|
|
419
334
|
Warning: "WARNING",
|
|
@@ -440,11 +355,6 @@ const SingularitySingularityTypeEnum = {
|
|
|
440
355
|
SingularityTypeElbow: "SINGULARITY_TYPE_ELBOW",
|
|
441
356
|
SingularityTypeShoulder: "SINGULARITY_TYPE_SHOULDER"
|
|
442
357
|
};
|
|
443
|
-
/**
|
|
444
|
-
*
|
|
445
|
-
* @export
|
|
446
|
-
* @enum {string}
|
|
447
|
-
*/
|
|
448
358
|
const SingularityTypeEnum = {
|
|
449
359
|
Wrist: "WRIST",
|
|
450
360
|
Elbow: "ELBOW",
|
|
@@ -454,8 +364,6 @@ const Sphere2ShapeTypeEnum = { Sphere: "sphere" };
|
|
|
454
364
|
const Sphere3ShapeTypeEnum = { Sphere: "sphere" };
|
|
455
365
|
/**
|
|
456
366
|
* The reason why the movement is paused.
|
|
457
|
-
* @export
|
|
458
|
-
* @enum {string}
|
|
459
367
|
*/
|
|
460
368
|
const StandstillReason = {
|
|
461
369
|
ReasonMotionEnded: "REASON_MOTION_ENDED",
|
|
@@ -474,17 +382,10 @@ const StopResponseStopCodeEnum = {
|
|
|
474
382
|
};
|
|
475
383
|
/**
|
|
476
384
|
* The type of the trigger.
|
|
477
|
-
* @export
|
|
478
|
-
* @enum {string}
|
|
479
385
|
*/
|
|
480
386
|
const TriggerType = { OpcuaNodeValue: "opcua_node_value" };
|
|
481
387
|
const UniversalrobotsControllerKindEnum = { UniversalrobotsController: "UniversalrobotsController" };
|
|
482
388
|
const VirtualControllerKindEnum = { VirtualController: "VirtualController" };
|
|
483
|
-
/**
|
|
484
|
-
*
|
|
485
|
-
* @export
|
|
486
|
-
* @enum {string}
|
|
487
|
-
*/
|
|
488
389
|
const VirtualControllerTypes = {
|
|
489
390
|
AbbIrb101003715: "abb-irb1010_037_15",
|
|
490
391
|
AbbIrb110004754: "abb-irb1100_0475_4",
|
|
@@ -507,6 +408,8 @@ const VirtualControllerTypes = {
|
|
|
507
408
|
AbbIrb460020560: "abb-irb4600_205_60",
|
|
508
409
|
AbbIrb460025020: "abb-irb4600_250_20",
|
|
509
410
|
AbbIrb460025540: "abb-irb4600_255_40",
|
|
411
|
+
AbbIrb6730210310: "abb-irb6730_210_310",
|
|
412
|
+
AbbIrb6730240290: "abb-irb6730_240_290",
|
|
510
413
|
FanucArcMate100iD: "fanuc-arc_mate_100iD",
|
|
511
414
|
FanucArcMate100iD16S: "fanuc-arc_mate_100iD16S",
|
|
512
415
|
FanucArcMate120iD: "fanuc-arc_mate_120iD",
|
|
@@ -538,17 +441,23 @@ const VirtualControllerTypes = {
|
|
|
538
441
|
KukaKr10R900: "kuka-kr10_r900",
|
|
539
442
|
KukaKr10R9002: "kuka-kr10_r900_2",
|
|
540
443
|
KukaKr120R27002: "kuka-kr120_r2700_2",
|
|
444
|
+
KukaKr120R31002: "kuka-kr120_r3100_2",
|
|
445
|
+
KukaKr120R39002K: "kuka-kr120_r3900_2_k",
|
|
541
446
|
KukaKr12R18102: "kuka-kr12_r1810_2",
|
|
542
447
|
KukaKr150R2: "kuka-kr150_r2",
|
|
543
448
|
KukaKr16R16102: "kuka-kr16_r1610_2",
|
|
544
449
|
KukaKr16R20102: "kuka-kr16_r2010_2",
|
|
545
450
|
KukaKr20R1810: "kuka-kr20_r1810",
|
|
546
451
|
KukaKr20R18102: "kuka-kr20_r1810_2",
|
|
452
|
+
KukaKr210R2700Extra: "kuka-kr210_r2700_extra",
|
|
547
453
|
KukaKr210R27002: "kuka-kr210_r2700_2",
|
|
548
454
|
KukaKr210R31002: "kuka-kr210_r3100_2",
|
|
549
455
|
KukaKr210R33002: "kuka-kr210_r3300_2",
|
|
550
456
|
KukaKr240R2700: "kuka-kr240_r2700",
|
|
457
|
+
KukaKr240R2900: "kuka-kr240_r2900",
|
|
458
|
+
KukaKr240R37002: "kuka-kr240_r3700_2",
|
|
551
459
|
KukaKr250R27002: "kuka-kr250_r2700_2",
|
|
460
|
+
KukaKr270R2700: "kuka-kr270_r2700",
|
|
552
461
|
KukaKr30R2100: "kuka-kr30_r2100",
|
|
553
462
|
KukaKr30R3: "kuka-kr30_r3",
|
|
554
463
|
KukaKr360L2403: "kuka-kr360_l240_3",
|
|
@@ -603,7 +512,6 @@ const VirtualControllerTypes = {
|
|
|
603
512
|
const YaskawaControllerKindEnum = { YaskawaController: "YaskawaController" };
|
|
604
513
|
/**
|
|
605
514
|
* ApplicationApi - axios parameter creator
|
|
606
|
-
* @export
|
|
607
515
|
*/
|
|
608
516
|
const ApplicationApiAxiosParamCreator = function(configuration) {
|
|
609
517
|
return {
|
|
@@ -786,7 +694,6 @@ const ApplicationApiAxiosParamCreator = function(configuration) {
|
|
|
786
694
|
};
|
|
787
695
|
/**
|
|
788
696
|
* ApplicationApi - functional programming interface
|
|
789
|
-
* @export
|
|
790
697
|
*/
|
|
791
698
|
const ApplicationApiFp = function(configuration) {
|
|
792
699
|
const localVarAxiosParamCreator = ApplicationApiAxiosParamCreator(configuration);
|
|
@@ -831,7 +738,6 @@ const ApplicationApiFp = function(configuration) {
|
|
|
831
738
|
};
|
|
832
739
|
/**
|
|
833
740
|
* ApplicationApi - factory interface
|
|
834
|
-
* @export
|
|
835
741
|
*/
|
|
836
742
|
const ApplicationApiFactory = function(configuration, basePath, axios$1) {
|
|
837
743
|
const localVarFp = ApplicationApiFp(configuration);
|
|
@@ -858,9 +764,6 @@ const ApplicationApiFactory = function(configuration, basePath, axios$1) {
|
|
|
858
764
|
};
|
|
859
765
|
/**
|
|
860
766
|
* ApplicationApi - object-oriented interface
|
|
861
|
-
* @export
|
|
862
|
-
* @class ApplicationApi
|
|
863
|
-
* @extends {BaseAPI}
|
|
864
767
|
*/
|
|
865
768
|
var ApplicationApi = class extends BaseAPI {
|
|
866
769
|
/**
|
|
@@ -871,7 +774,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
871
774
|
* @param {number} [completionTimeout]
|
|
872
775
|
* @param {*} [options] Override http request option.
|
|
873
776
|
* @throws {RequiredError}
|
|
874
|
-
* @memberof ApplicationApi
|
|
875
777
|
*/
|
|
876
778
|
addApp(cell, app, completionTimeout, options) {
|
|
877
779
|
return ApplicationApiFp(this.configuration).addApp(cell, app, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -883,7 +785,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
883
785
|
* @param {number} [completionTimeout]
|
|
884
786
|
* @param {*} [options] Override http request option.
|
|
885
787
|
* @throws {RequiredError}
|
|
886
|
-
* @memberof ApplicationApi
|
|
887
788
|
*/
|
|
888
789
|
clearApps(cell, completionTimeout, options) {
|
|
889
790
|
return ApplicationApiFp(this.configuration).clearApps(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -896,7 +797,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
896
797
|
* @param {number} [completionTimeout]
|
|
897
798
|
* @param {*} [options] Override http request option.
|
|
898
799
|
* @throws {RequiredError}
|
|
899
|
-
* @memberof ApplicationApi
|
|
900
800
|
*/
|
|
901
801
|
deleteApp(cell, app, completionTimeout, options) {
|
|
902
802
|
return ApplicationApiFp(this.configuration).deleteApp(cell, app, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -908,7 +808,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
908
808
|
* @param {string} app
|
|
909
809
|
* @param {*} [options] Override http request option.
|
|
910
810
|
* @throws {RequiredError}
|
|
911
|
-
* @memberof ApplicationApi
|
|
912
811
|
*/
|
|
913
812
|
getApp(cell, app, options) {
|
|
914
813
|
return ApplicationApiFp(this.configuration).getApp(cell, app, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -919,7 +818,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
919
818
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
920
819
|
* @param {*} [options] Override http request option.
|
|
921
820
|
* @throws {RequiredError}
|
|
922
|
-
* @memberof ApplicationApi
|
|
923
821
|
*/
|
|
924
822
|
listApps(cell, options) {
|
|
925
823
|
return ApplicationApiFp(this.configuration).listApps(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -933,7 +831,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
933
831
|
* @param {number} [completionTimeout]
|
|
934
832
|
* @param {*} [options] Override http request option.
|
|
935
833
|
* @throws {RequiredError}
|
|
936
|
-
* @memberof ApplicationApi
|
|
937
834
|
*/
|
|
938
835
|
updateApp(cell, app, app2, completionTimeout, options) {
|
|
939
836
|
return ApplicationApiFp(this.configuration).updateApp(cell, app, app2, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -941,7 +838,6 @@ var ApplicationApi = class extends BaseAPI {
|
|
|
941
838
|
};
|
|
942
839
|
/**
|
|
943
840
|
* CellApi - axios parameter creator
|
|
944
|
-
* @export
|
|
945
841
|
*/
|
|
946
842
|
const CellApiAxiosParamCreator = function(configuration) {
|
|
947
843
|
return {
|
|
@@ -1116,7 +1012,6 @@ const CellApiAxiosParamCreator = function(configuration) {
|
|
|
1116
1012
|
};
|
|
1117
1013
|
/**
|
|
1118
1014
|
* CellApi - functional programming interface
|
|
1119
|
-
* @export
|
|
1120
1015
|
*/
|
|
1121
1016
|
const CellApiFp = function(configuration) {
|
|
1122
1017
|
const localVarAxiosParamCreator = CellApiAxiosParamCreator(configuration);
|
|
@@ -1161,7 +1056,6 @@ const CellApiFp = function(configuration) {
|
|
|
1161
1056
|
};
|
|
1162
1057
|
/**
|
|
1163
1058
|
* CellApi - factory interface
|
|
1164
|
-
* @export
|
|
1165
1059
|
*/
|
|
1166
1060
|
const CellApiFactory = function(configuration, basePath, axios$1) {
|
|
1167
1061
|
const localVarFp = CellApiFp(configuration);
|
|
@@ -1188,9 +1082,6 @@ const CellApiFactory = function(configuration, basePath, axios$1) {
|
|
|
1188
1082
|
};
|
|
1189
1083
|
/**
|
|
1190
1084
|
* CellApi - object-oriented interface
|
|
1191
|
-
* @export
|
|
1192
|
-
* @class CellApi
|
|
1193
|
-
* @extends {BaseAPI}
|
|
1194
1085
|
*/
|
|
1195
1086
|
var CellApi = class extends BaseAPI {
|
|
1196
1087
|
/**
|
|
@@ -1200,7 +1091,6 @@ var CellApi = class extends BaseAPI {
|
|
|
1200
1091
|
* @param {number} [completionTimeout]
|
|
1201
1092
|
* @param {*} [options] Override http request option.
|
|
1202
1093
|
* @throws {RequiredError}
|
|
1203
|
-
* @memberof CellApi
|
|
1204
1094
|
*/
|
|
1205
1095
|
deleteCell(cell, completionTimeout, options) {
|
|
1206
1096
|
return CellApiFp(this.configuration).deleteCell(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1212,7 +1102,6 @@ var CellApi = class extends BaseAPI {
|
|
|
1212
1102
|
* @param {number} [completionTimeout]
|
|
1213
1103
|
* @param {*} [options] Override http request option.
|
|
1214
1104
|
* @throws {RequiredError}
|
|
1215
|
-
* @memberof CellApi
|
|
1216
1105
|
*/
|
|
1217
1106
|
deployCell(cell, completionTimeout, options) {
|
|
1218
1107
|
return CellApiFp(this.configuration).deployCell(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1223,7 +1112,6 @@ var CellApi = class extends BaseAPI {
|
|
|
1223
1112
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1224
1113
|
* @param {*} [options] Override http request option.
|
|
1225
1114
|
* @throws {RequiredError}
|
|
1226
|
-
* @memberof CellApi
|
|
1227
1115
|
*/
|
|
1228
1116
|
getCell(cell, options) {
|
|
1229
1117
|
return CellApiFp(this.configuration).getCell(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1234,7 +1122,6 @@ var CellApi = class extends BaseAPI {
|
|
|
1234
1122
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1235
1123
|
* @param {*} [options] Override http request option.
|
|
1236
1124
|
* @throws {RequiredError}
|
|
1237
|
-
* @memberof CellApi
|
|
1238
1125
|
*/
|
|
1239
1126
|
getCellStatus(cell, options) {
|
|
1240
1127
|
return CellApiFp(this.configuration).getCellStatus(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1244,7 +1131,6 @@ var CellApi = class extends BaseAPI {
|
|
|
1244
1131
|
* @summary List Cells
|
|
1245
1132
|
* @param {*} [options] Override http request option.
|
|
1246
1133
|
* @throws {RequiredError}
|
|
1247
|
-
* @memberof CellApi
|
|
1248
1134
|
*/
|
|
1249
1135
|
listCells(options) {
|
|
1250
1136
|
return CellApiFp(this.configuration).listCells(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1257,7 +1143,6 @@ var CellApi = class extends BaseAPI {
|
|
|
1257
1143
|
* @param {number} [completionTimeout]
|
|
1258
1144
|
* @param {*} [options] Override http request option.
|
|
1259
1145
|
* @throws {RequiredError}
|
|
1260
|
-
* @memberof CellApi
|
|
1261
1146
|
*/
|
|
1262
1147
|
updateCell(cell, cell2, completionTimeout, options) {
|
|
1263
1148
|
return CellApiFp(this.configuration).updateCell(cell, cell2, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1265,7 +1150,6 @@ var CellApi = class extends BaseAPI {
|
|
|
1265
1150
|
};
|
|
1266
1151
|
/**
|
|
1267
1152
|
* ControllerApi - axios parameter creator
|
|
1268
|
-
* @export
|
|
1269
1153
|
*/
|
|
1270
1154
|
const ControllerApiAxiosParamCreator = function(configuration) {
|
|
1271
1155
|
return {
|
|
@@ -1676,7 +1560,6 @@ const ControllerApiAxiosParamCreator = function(configuration) {
|
|
|
1676
1560
|
};
|
|
1677
1561
|
/**
|
|
1678
1562
|
* ControllerApi - functional programming interface
|
|
1679
|
-
* @export
|
|
1680
1563
|
*/
|
|
1681
1564
|
const ControllerApiFp = function(configuration) {
|
|
1682
1565
|
const localVarAxiosParamCreator = ControllerApiAxiosParamCreator(configuration);
|
|
@@ -1769,7 +1652,6 @@ const ControllerApiFp = function(configuration) {
|
|
|
1769
1652
|
};
|
|
1770
1653
|
/**
|
|
1771
1654
|
* ControllerApi - factory interface
|
|
1772
|
-
* @export
|
|
1773
1655
|
*/
|
|
1774
1656
|
const ControllerApiFactory = function(configuration, basePath, axios$1) {
|
|
1775
1657
|
const localVarFp = ControllerApiFp(configuration);
|
|
@@ -1820,9 +1702,6 @@ const ControllerApiFactory = function(configuration, basePath, axios$1) {
|
|
|
1820
1702
|
};
|
|
1821
1703
|
/**
|
|
1822
1704
|
* ControllerApi - object-oriented interface
|
|
1823
|
-
* @export
|
|
1824
|
-
* @class ControllerApi
|
|
1825
|
-
* @extends {BaseAPI}
|
|
1826
1705
|
*/
|
|
1827
1706
|
var ControllerApi = class extends BaseAPI {
|
|
1828
1707
|
/**
|
|
@@ -1833,7 +1712,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1833
1712
|
* @param {number} [completionTimeout]
|
|
1834
1713
|
* @param {*} [options] Override http request option.
|
|
1835
1714
|
* @throws {RequiredError}
|
|
1836
|
-
* @memberof ControllerApi
|
|
1837
1715
|
*/
|
|
1838
1716
|
addRobotController(cell, robotController, completionTimeout, options) {
|
|
1839
1717
|
return ControllerApiFp(this.configuration).addRobotController(cell, robotController, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1845,7 +1723,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1845
1723
|
* @param {number} [completionTimeout]
|
|
1846
1724
|
* @param {*} [options] Override http request option.
|
|
1847
1725
|
* @throws {RequiredError}
|
|
1848
|
-
* @memberof ControllerApi
|
|
1849
1726
|
*/
|
|
1850
1727
|
clearRobotControllers(cell, completionTimeout, options) {
|
|
1851
1728
|
return ControllerApiFp(this.configuration).clearRobotControllers(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1858,7 +1735,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1858
1735
|
* @param {number} [completionTimeout]
|
|
1859
1736
|
* @param {*} [options] Override http request option.
|
|
1860
1737
|
* @throws {RequiredError}
|
|
1861
|
-
* @memberof ControllerApi
|
|
1862
1738
|
*/
|
|
1863
1739
|
deleteRobotController(cell, controller, completionTimeout, options) {
|
|
1864
1740
|
return ControllerApiFp(this.configuration).deleteRobotController(cell, controller, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1870,7 +1746,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1870
1746
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
1871
1747
|
* @param {*} [options] Override http request option.
|
|
1872
1748
|
* @throws {RequiredError}
|
|
1873
|
-
* @memberof ControllerApi
|
|
1874
1749
|
*/
|
|
1875
1750
|
getCurrentRobotControllerState(cell, controller, options) {
|
|
1876
1751
|
return ControllerApiFp(this.configuration).getCurrentRobotControllerState(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1882,7 +1757,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1882
1757
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
1883
1758
|
* @param {*} [options] Override http request option.
|
|
1884
1759
|
* @throws {RequiredError}
|
|
1885
|
-
* @memberof ControllerApi
|
|
1886
1760
|
*/
|
|
1887
1761
|
getMode(cell, controller, options) {
|
|
1888
1762
|
return ControllerApiFp(this.configuration).getMode(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1894,7 +1768,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1894
1768
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
1895
1769
|
* @param {*} [options] Override http request option.
|
|
1896
1770
|
* @throws {RequiredError}
|
|
1897
|
-
* @memberof ControllerApi
|
|
1898
1771
|
*/
|
|
1899
1772
|
getRobotController(cell, controller, options) {
|
|
1900
1773
|
return ControllerApiFp(this.configuration).getRobotController(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1906,7 +1779,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1906
1779
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
1907
1780
|
* @param {*} [options] Override http request option.
|
|
1908
1781
|
* @throws {RequiredError}
|
|
1909
|
-
* @memberof ControllerApi
|
|
1910
1782
|
*/
|
|
1911
1783
|
getSupportedModes(cell, controller, options) {
|
|
1912
1784
|
return ControllerApiFp(this.configuration).getSupportedModes(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1918,7 +1790,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1918
1790
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
1919
1791
|
* @param {*} [options] Override http request option.
|
|
1920
1792
|
* @throws {RequiredError}
|
|
1921
|
-
* @memberof ControllerApi
|
|
1922
1793
|
*/
|
|
1923
1794
|
getVirtualRobotConfiguration(cell, controller, options) {
|
|
1924
1795
|
return ControllerApiFp(this.configuration).getVirtualRobotConfiguration(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1929,7 +1800,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1929
1800
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1930
1801
|
* @param {*} [options] Override http request option.
|
|
1931
1802
|
* @throws {RequiredError}
|
|
1932
|
-
* @memberof ControllerApi
|
|
1933
1803
|
*/
|
|
1934
1804
|
listControllers(cell, options) {
|
|
1935
1805
|
return ControllerApiFp(this.configuration).listControllers(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1942,7 +1812,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1942
1812
|
* @param {SetDefaultModeModeEnum} mode
|
|
1943
1813
|
* @param {*} [options] Override http request option.
|
|
1944
1814
|
* @throws {RequiredError}
|
|
1945
|
-
* @memberof ControllerApi
|
|
1946
1815
|
*/
|
|
1947
1816
|
setDefaultMode(cell, controller, mode, options) {
|
|
1948
1817
|
return ControllerApiFp(this.configuration).setDefaultMode(cell, controller, mode, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1955,7 +1824,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1955
1824
|
* @param {number} [responseRate]
|
|
1956
1825
|
* @param {*} [options] Override http request option.
|
|
1957
1826
|
* @throws {RequiredError}
|
|
1958
|
-
* @memberof ControllerApi
|
|
1959
1827
|
*/
|
|
1960
1828
|
streamFreeDrive(cell, controller, responseRate, options) {
|
|
1961
1829
|
return ControllerApiFp(this.configuration).streamFreeDrive(cell, controller, responseRate, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1967,7 +1835,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1967
1835
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
1968
1836
|
* @param {*} [options] Override http request option.
|
|
1969
1837
|
* @throws {RequiredError}
|
|
1970
|
-
* @memberof ControllerApi
|
|
1971
1838
|
*/
|
|
1972
1839
|
streamModeChange(cell, controller, options) {
|
|
1973
1840
|
return ControllerApiFp(this.configuration).streamModeChange(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1980,7 +1847,6 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1980
1847
|
* @param {number} [responseRate]
|
|
1981
1848
|
* @param {*} [options] Override http request option.
|
|
1982
1849
|
* @throws {RequiredError}
|
|
1983
|
-
* @memberof ControllerApi
|
|
1984
1850
|
*/
|
|
1985
1851
|
streamRobotControllerState(cell, controller, responseRate, options) {
|
|
1986
1852
|
return ControllerApiFp(this.configuration).streamRobotControllerState(cell, controller, responseRate, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -1994,22 +1860,17 @@ var ControllerApi = class extends BaseAPI {
|
|
|
1994
1860
|
* @param {number} [completionTimeout]
|
|
1995
1861
|
* @param {*} [options] Override http request option.
|
|
1996
1862
|
* @throws {RequiredError}
|
|
1997
|
-
* @memberof ControllerApi
|
|
1998
1863
|
*/
|
|
1999
1864
|
updateRobotController(cell, controller, robotController, completionTimeout, options) {
|
|
2000
1865
|
return ControllerApiFp(this.configuration).updateRobotController(cell, controller, robotController, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
2001
1866
|
}
|
|
2002
1867
|
};
|
|
2003
|
-
/**
|
|
2004
|
-
* @export
|
|
2005
|
-
*/
|
|
2006
1868
|
const SetDefaultModeModeEnum = {
|
|
2007
1869
|
ModeMonitor: "MODE_MONITOR",
|
|
2008
1870
|
ModeControl: "MODE_CONTROL"
|
|
2009
1871
|
};
|
|
2010
1872
|
/**
|
|
2011
1873
|
* ControllerIOsApi - axios parameter creator
|
|
2012
|
-
* @export
|
|
2013
1874
|
*/
|
|
2014
1875
|
const ControllerIOsApiAxiosParamCreator = function(configuration) {
|
|
2015
1876
|
return {
|
|
@@ -2170,7 +2031,6 @@ const ControllerIOsApiAxiosParamCreator = function(configuration) {
|
|
|
2170
2031
|
};
|
|
2171
2032
|
/**
|
|
2172
2033
|
* ControllerIOsApi - functional programming interface
|
|
2173
|
-
* @export
|
|
2174
2034
|
*/
|
|
2175
2035
|
const ControllerIOsApiFp = function(configuration) {
|
|
2176
2036
|
const localVarAxiosParamCreator = ControllerIOsApiAxiosParamCreator(configuration);
|
|
@@ -2209,7 +2069,6 @@ const ControllerIOsApiFp = function(configuration) {
|
|
|
2209
2069
|
};
|
|
2210
2070
|
/**
|
|
2211
2071
|
* ControllerIOsApi - factory interface
|
|
2212
|
-
* @export
|
|
2213
2072
|
*/
|
|
2214
2073
|
const ControllerIOsApiFactory = function(configuration, basePath, axios$1) {
|
|
2215
2074
|
const localVarFp = ControllerIOsApiFp(configuration);
|
|
@@ -2233,9 +2092,6 @@ const ControllerIOsApiFactory = function(configuration, basePath, axios$1) {
|
|
|
2233
2092
|
};
|
|
2234
2093
|
/**
|
|
2235
2094
|
* ControllerIOsApi - object-oriented interface
|
|
2236
|
-
* @export
|
|
2237
|
-
* @class ControllerIOsApi
|
|
2238
|
-
* @extends {BaseAPI}
|
|
2239
2095
|
*/
|
|
2240
2096
|
var ControllerIOsApi = class extends BaseAPI {
|
|
2241
2097
|
/**
|
|
@@ -2246,7 +2102,6 @@ var ControllerIOsApi = class extends BaseAPI {
|
|
|
2246
2102
|
* @param {Array<string>} [ios]
|
|
2247
2103
|
* @param {*} [options] Override http request option.
|
|
2248
2104
|
* @throws {RequiredError}
|
|
2249
|
-
* @memberof ControllerIOsApi
|
|
2250
2105
|
*/
|
|
2251
2106
|
listIODescriptions(cell, controller, ios, options) {
|
|
2252
2107
|
return ControllerIOsApiFp(this.configuration).listIODescriptions(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2259,7 +2114,6 @@ var ControllerIOsApi = class extends BaseAPI {
|
|
|
2259
2114
|
* @param {Array<string>} [ios]
|
|
2260
2115
|
* @param {*} [options] Override http request option.
|
|
2261
2116
|
* @throws {RequiredError}
|
|
2262
|
-
* @memberof ControllerIOsApi
|
|
2263
2117
|
*/
|
|
2264
2118
|
listIOValues(cell, controller, ios, options) {
|
|
2265
2119
|
return ControllerIOsApiFp(this.configuration).listIOValues(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2272,7 +2126,6 @@ var ControllerIOsApi = class extends BaseAPI {
|
|
|
2272
2126
|
* @param {Array<IOValue>} iOValue
|
|
2273
2127
|
* @param {*} [options] Override http request option.
|
|
2274
2128
|
* @throws {RequiredError}
|
|
2275
|
-
* @memberof ControllerIOsApi
|
|
2276
2129
|
*/
|
|
2277
2130
|
setOutputValues(cell, controller, iOValue, options) {
|
|
2278
2131
|
return ControllerIOsApiFp(this.configuration).setOutputValues(cell, controller, iOValue, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2285,7 +2138,6 @@ var ControllerIOsApi = class extends BaseAPI {
|
|
|
2285
2138
|
* @param {Array<string>} [ios]
|
|
2286
2139
|
* @param {*} [options] Override http request option.
|
|
2287
2140
|
* @throws {RequiredError}
|
|
2288
|
-
* @memberof ControllerIOsApi
|
|
2289
2141
|
*/
|
|
2290
2142
|
streamIOValues(cell, controller, ios, options) {
|
|
2291
2143
|
return ControllerIOsApiFp(this.configuration).streamIOValues(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2302,15 +2154,11 @@ var ControllerIOsApi = class extends BaseAPI {
|
|
|
2302
2154
|
* @param {number} [floatingValue]
|
|
2303
2155
|
* @param {*} [options] Override http request option.
|
|
2304
2156
|
* @throws {RequiredError}
|
|
2305
|
-
* @memberof ControllerIOsApi
|
|
2306
2157
|
*/
|
|
2307
2158
|
waitForIOEvent(cell, controller, io, comparisonType, booleanValue, integerValue, floatingValue, options) {
|
|
2308
2159
|
return ControllerIOsApiFp(this.configuration).waitForIOEvent(cell, controller, io, comparisonType, booleanValue, integerValue, floatingValue, options).then((request) => request(this.axios, this.basePath));
|
|
2309
2160
|
}
|
|
2310
2161
|
};
|
|
2311
|
-
/**
|
|
2312
|
-
* @export
|
|
2313
|
-
*/
|
|
2314
2162
|
const WaitForIOEventComparisonTypeEnum = {
|
|
2315
2163
|
ComparisonTypeEqual: "COMPARISON_TYPE_EQUAL",
|
|
2316
2164
|
ComparisonTypeGreater: "COMPARISON_TYPE_GREATER",
|
|
@@ -2318,7 +2166,6 @@ const WaitForIOEventComparisonTypeEnum = {
|
|
|
2318
2166
|
};
|
|
2319
2167
|
/**
|
|
2320
2168
|
* CoordinateSystemsApi - axios parameter creator
|
|
2321
|
-
* @export
|
|
2322
2169
|
*/
|
|
2323
2170
|
const CoordinateSystemsApiAxiosParamCreator = function(configuration) {
|
|
2324
2171
|
return {
|
|
@@ -2472,7 +2319,6 @@ const CoordinateSystemsApiAxiosParamCreator = function(configuration) {
|
|
|
2472
2319
|
};
|
|
2473
2320
|
/**
|
|
2474
2321
|
* CoordinateSystemsApi - functional programming interface
|
|
2475
|
-
* @export
|
|
2476
2322
|
*/
|
|
2477
2323
|
const CoordinateSystemsApiFp = function(configuration) {
|
|
2478
2324
|
const localVarAxiosParamCreator = CoordinateSystemsApiAxiosParamCreator(configuration);
|
|
@@ -2511,7 +2357,6 @@ const CoordinateSystemsApiFp = function(configuration) {
|
|
|
2511
2357
|
};
|
|
2512
2358
|
/**
|
|
2513
2359
|
* CoordinateSystemsApi - factory interface
|
|
2514
|
-
* @export
|
|
2515
2360
|
*/
|
|
2516
2361
|
const CoordinateSystemsApiFactory = function(configuration, basePath, axios$1) {
|
|
2517
2362
|
const localVarFp = CoordinateSystemsApiFp(configuration);
|
|
@@ -2535,9 +2380,6 @@ const CoordinateSystemsApiFactory = function(configuration, basePath, axios$1) {
|
|
|
2535
2380
|
};
|
|
2536
2381
|
/**
|
|
2537
2382
|
* CoordinateSystemsApi - object-oriented interface
|
|
2538
|
-
* @export
|
|
2539
|
-
* @class CoordinateSystemsApi
|
|
2540
|
-
* @extends {BaseAPI}
|
|
2541
2383
|
*/
|
|
2542
2384
|
var CoordinateSystemsApi = class extends BaseAPI {
|
|
2543
2385
|
/**
|
|
@@ -2547,7 +2389,6 @@ var CoordinateSystemsApi = class extends BaseAPI {
|
|
|
2547
2389
|
* @param {AddRequest} addRequest
|
|
2548
2390
|
* @param {*} [options] Override http request option.
|
|
2549
2391
|
* @throws {RequiredError}
|
|
2550
|
-
* @memberof CoordinateSystemsApi
|
|
2551
2392
|
*/
|
|
2552
2393
|
addCoordinateSystem(cell, addRequest, options) {
|
|
2553
2394
|
return CoordinateSystemsApiFp(this.configuration).addCoordinateSystem(cell, addRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2559,7 +2400,6 @@ var CoordinateSystemsApi = class extends BaseAPI {
|
|
|
2559
2400
|
* @param {string} coordinateSystem Unique identifier addressing a coordinate system.
|
|
2560
2401
|
* @param {*} [options] Override http request option.
|
|
2561
2402
|
* @throws {RequiredError}
|
|
2562
|
-
* @memberof CoordinateSystemsApi
|
|
2563
2403
|
*/
|
|
2564
2404
|
deleteCoordinateSystem(cell, coordinateSystem, options) {
|
|
2565
2405
|
return CoordinateSystemsApiFp(this.configuration).deleteCoordinateSystem(cell, coordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2572,7 +2412,6 @@ var CoordinateSystemsApi = class extends BaseAPI {
|
|
|
2572
2412
|
* @param {RotationAngleTypes} [rotationType]
|
|
2573
2413
|
* @param {*} [options] Override http request option.
|
|
2574
2414
|
* @throws {RequiredError}
|
|
2575
|
-
* @memberof CoordinateSystemsApi
|
|
2576
2415
|
*/
|
|
2577
2416
|
getCoordinateSystem(cell, coordinateSystem, rotationType, options) {
|
|
2578
2417
|
return CoordinateSystemsApiFp(this.configuration).getCoordinateSystem(cell, coordinateSystem, rotationType, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2584,7 +2423,6 @@ var CoordinateSystemsApi = class extends BaseAPI {
|
|
|
2584
2423
|
* @param {RotationAngleTypes} [rotationType]
|
|
2585
2424
|
* @param {*} [options] Override http request option.
|
|
2586
2425
|
* @throws {RequiredError}
|
|
2587
|
-
* @memberof CoordinateSystemsApi
|
|
2588
2426
|
*/
|
|
2589
2427
|
listCoordinateSystems(cell, rotationType, options) {
|
|
2590
2428
|
return CoordinateSystemsApiFp(this.configuration).listCoordinateSystems(cell, rotationType, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2597,7 +2435,6 @@ var CoordinateSystemsApi = class extends BaseAPI {
|
|
|
2597
2435
|
* @param {Pose} pose
|
|
2598
2436
|
* @param {*} [options] Override http request option.
|
|
2599
2437
|
* @throws {RequiredError}
|
|
2600
|
-
* @memberof CoordinateSystemsApi
|
|
2601
2438
|
*/
|
|
2602
2439
|
transformInCoordinateSystem(cell, coordinateSystem, pose, options) {
|
|
2603
2440
|
return CoordinateSystemsApiFp(this.configuration).transformInCoordinateSystem(cell, coordinateSystem, pose, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2605,7 +2442,6 @@ var CoordinateSystemsApi = class extends BaseAPI {
|
|
|
2605
2442
|
};
|
|
2606
2443
|
/**
|
|
2607
2444
|
* DeviceConfigurationApi - axios parameter creator
|
|
2608
|
-
* @export
|
|
2609
2445
|
*/
|
|
2610
2446
|
const DeviceConfigurationApiAxiosParamCreator = function(configuration) {
|
|
2611
2447
|
return {
|
|
@@ -2753,7 +2589,6 @@ const DeviceConfigurationApiAxiosParamCreator = function(configuration) {
|
|
|
2753
2589
|
};
|
|
2754
2590
|
/**
|
|
2755
2591
|
* DeviceConfigurationApi - functional programming interface
|
|
2756
|
-
* @export
|
|
2757
2592
|
*/
|
|
2758
2593
|
const DeviceConfigurationApiFp = function(configuration) {
|
|
2759
2594
|
const localVarAxiosParamCreator = DeviceConfigurationApiAxiosParamCreator(configuration);
|
|
@@ -2792,7 +2627,6 @@ const DeviceConfigurationApiFp = function(configuration) {
|
|
|
2792
2627
|
};
|
|
2793
2628
|
/**
|
|
2794
2629
|
* DeviceConfigurationApi - factory interface
|
|
2795
|
-
* @export
|
|
2796
2630
|
*/
|
|
2797
2631
|
const DeviceConfigurationApiFactory = function(configuration, basePath, axios$1) {
|
|
2798
2632
|
const localVarFp = DeviceConfigurationApiFp(configuration);
|
|
@@ -2816,9 +2650,6 @@ const DeviceConfigurationApiFactory = function(configuration, basePath, axios$1)
|
|
|
2816
2650
|
};
|
|
2817
2651
|
/**
|
|
2818
2652
|
* DeviceConfigurationApi - object-oriented interface
|
|
2819
|
-
* @export
|
|
2820
|
-
* @class DeviceConfigurationApi
|
|
2821
|
-
* @extends {BaseAPI}
|
|
2822
2653
|
*/
|
|
2823
2654
|
var DeviceConfigurationApi = class extends BaseAPI {
|
|
2824
2655
|
/**
|
|
@@ -2828,7 +2659,6 @@ var DeviceConfigurationApi = class extends BaseAPI {
|
|
|
2828
2659
|
* @param {*} [options] Override http request option.
|
|
2829
2660
|
* @deprecated
|
|
2830
2661
|
* @throws {RequiredError}
|
|
2831
|
-
* @memberof DeviceConfigurationApi
|
|
2832
2662
|
*/
|
|
2833
2663
|
clearDevices(cell, options) {
|
|
2834
2664
|
return DeviceConfigurationApiFp(this.configuration).clearDevices(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2841,7 +2671,6 @@ var DeviceConfigurationApi = class extends BaseAPI {
|
|
|
2841
2671
|
* @param {*} [options] Override http request option.
|
|
2842
2672
|
* @deprecated
|
|
2843
2673
|
* @throws {RequiredError}
|
|
2844
|
-
* @memberof DeviceConfigurationApi
|
|
2845
2674
|
*/
|
|
2846
2675
|
createDevice(cell, createDeviceRequestInner, options) {
|
|
2847
2676
|
return DeviceConfigurationApiFp(this.configuration).createDevice(cell, createDeviceRequestInner, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2854,7 +2683,6 @@ var DeviceConfigurationApi = class extends BaseAPI {
|
|
|
2854
2683
|
* @param {*} [options] Override http request option.
|
|
2855
2684
|
* @deprecated
|
|
2856
2685
|
* @throws {RequiredError}
|
|
2857
|
-
* @memberof DeviceConfigurationApi
|
|
2858
2686
|
*/
|
|
2859
2687
|
deleteDevice(cell, identifier, options) {
|
|
2860
2688
|
return DeviceConfigurationApiFp(this.configuration).deleteDevice(cell, identifier, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2867,7 +2695,6 @@ var DeviceConfigurationApi = class extends BaseAPI {
|
|
|
2867
2695
|
* @param {*} [options] Override http request option.
|
|
2868
2696
|
* @deprecated
|
|
2869
2697
|
* @throws {RequiredError}
|
|
2870
|
-
* @memberof DeviceConfigurationApi
|
|
2871
2698
|
*/
|
|
2872
2699
|
getDevice(cell, identifier, options) {
|
|
2873
2700
|
return DeviceConfigurationApiFp(this.configuration).getDevice(cell, identifier, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2879,7 +2706,6 @@ var DeviceConfigurationApi = class extends BaseAPI {
|
|
|
2879
2706
|
* @param {*} [options] Override http request option.
|
|
2880
2707
|
* @deprecated
|
|
2881
2708
|
* @throws {RequiredError}
|
|
2882
|
-
* @memberof DeviceConfigurationApi
|
|
2883
2709
|
*/
|
|
2884
2710
|
listDevices(cell, options) {
|
|
2885
2711
|
return DeviceConfigurationApiFp(this.configuration).listDevices(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -2887,7 +2713,6 @@ var DeviceConfigurationApi = class extends BaseAPI {
|
|
|
2887
2713
|
};
|
|
2888
2714
|
/**
|
|
2889
2715
|
* LibraryProgramApi - axios parameter creator
|
|
2890
|
-
* @export
|
|
2891
2716
|
*/
|
|
2892
2717
|
const LibraryProgramApiAxiosParamCreator = function(configuration) {
|
|
2893
2718
|
return {
|
|
@@ -3042,7 +2867,6 @@ const LibraryProgramApiAxiosParamCreator = function(configuration) {
|
|
|
3042
2867
|
};
|
|
3043
2868
|
/**
|
|
3044
2869
|
* LibraryProgramApi - functional programming interface
|
|
3045
|
-
* @export
|
|
3046
2870
|
*/
|
|
3047
2871
|
const LibraryProgramApiFp = function(configuration) {
|
|
3048
2872
|
const localVarAxiosParamCreator = LibraryProgramApiAxiosParamCreator(configuration);
|
|
@@ -3081,7 +2905,6 @@ const LibraryProgramApiFp = function(configuration) {
|
|
|
3081
2905
|
};
|
|
3082
2906
|
/**
|
|
3083
2907
|
* LibraryProgramApi - factory interface
|
|
3084
|
-
* @export
|
|
3085
2908
|
*/
|
|
3086
2909
|
const LibraryProgramApiFactory = function(configuration, basePath, axios$1) {
|
|
3087
2910
|
const localVarFp = LibraryProgramApiFp(configuration);
|
|
@@ -3105,9 +2928,6 @@ const LibraryProgramApiFactory = function(configuration, basePath, axios$1) {
|
|
|
3105
2928
|
};
|
|
3106
2929
|
/**
|
|
3107
2930
|
* LibraryProgramApi - object-oriented interface
|
|
3108
|
-
* @export
|
|
3109
|
-
* @class LibraryProgramApi
|
|
3110
|
-
* @extends {BaseAPI}
|
|
3111
2931
|
*/
|
|
3112
2932
|
var LibraryProgramApi = class extends BaseAPI {
|
|
3113
2933
|
/**
|
|
@@ -3118,7 +2938,6 @@ var LibraryProgramApi = class extends BaseAPI {
|
|
|
3118
2938
|
* @param {string} [name]
|
|
3119
2939
|
* @param {*} [options] Override http request option.
|
|
3120
2940
|
* @throws {RequiredError}
|
|
3121
|
-
* @memberof LibraryProgramApi
|
|
3122
2941
|
*/
|
|
3123
2942
|
createProgram(cell, body, name, options) {
|
|
3124
2943
|
return LibraryProgramApiFp(this.configuration).createProgram(cell, body, name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3130,7 +2949,6 @@ var LibraryProgramApi = class extends BaseAPI {
|
|
|
3130
2949
|
* @param {string} program Recieved from [listProgramMetadata](listProgramMetadata) or from the response of [createProgram](createProgram).
|
|
3131
2950
|
* @param {*} [options] Override http request option.
|
|
3132
2951
|
* @throws {RequiredError}
|
|
3133
|
-
* @memberof LibraryProgramApi
|
|
3134
2952
|
*/
|
|
3135
2953
|
deleteProgram(cell, program, options) {
|
|
3136
2954
|
return LibraryProgramApiFp(this.configuration).deleteProgram(cell, program, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3142,7 +2960,6 @@ var LibraryProgramApi = class extends BaseAPI {
|
|
|
3142
2960
|
* @param {Array<string>} programIds Recieved from [listProgramMetadata](listProgramMetadata) or from the response of [createProgram](createProgram).
|
|
3143
2961
|
* @param {*} [options] Override http request option.
|
|
3144
2962
|
* @throws {RequiredError}
|
|
3145
|
-
* @memberof LibraryProgramApi
|
|
3146
2963
|
*/
|
|
3147
2964
|
deleteProgramList(cell, programIds, options) {
|
|
3148
2965
|
return LibraryProgramApiFp(this.configuration).deleteProgramList(cell, programIds, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3154,7 +2971,6 @@ var LibraryProgramApi = class extends BaseAPI {
|
|
|
3154
2971
|
* @param {string} program Recieved from [listProgramMetadata](listProgramMetadata) or from the response of [createProgram](createProgram).
|
|
3155
2972
|
* @param {*} [options] Override http request option.
|
|
3156
2973
|
* @throws {RequiredError}
|
|
3157
|
-
* @memberof LibraryProgramApi
|
|
3158
2974
|
*/
|
|
3159
2975
|
getProgram(cell, program, options) {
|
|
3160
2976
|
return LibraryProgramApiFp(this.configuration).getProgram(cell, program, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3167,7 +2983,6 @@ var LibraryProgramApi = class extends BaseAPI {
|
|
|
3167
2983
|
* @param {string} body
|
|
3168
2984
|
* @param {*} [options] Override http request option.
|
|
3169
2985
|
* @throws {RequiredError}
|
|
3170
|
-
* @memberof LibraryProgramApi
|
|
3171
2986
|
*/
|
|
3172
2987
|
updateProgram(cell, program, body, options) {
|
|
3173
2988
|
return LibraryProgramApiFp(this.configuration).updateProgram(cell, program, body, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3175,7 +2990,6 @@ var LibraryProgramApi = class extends BaseAPI {
|
|
|
3175
2990
|
};
|
|
3176
2991
|
/**
|
|
3177
2992
|
* LibraryProgramMetadataApi - axios parameter creator
|
|
3178
|
-
* @export
|
|
3179
2993
|
*/
|
|
3180
2994
|
const LibraryProgramMetadataApiAxiosParamCreator = function(configuration) {
|
|
3181
2995
|
return {
|
|
@@ -3303,7 +3117,6 @@ const LibraryProgramMetadataApiAxiosParamCreator = function(configuration) {
|
|
|
3303
3117
|
};
|
|
3304
3118
|
/**
|
|
3305
3119
|
* LibraryProgramMetadataApi - functional programming interface
|
|
3306
|
-
* @export
|
|
3307
3120
|
*/
|
|
3308
3121
|
const LibraryProgramMetadataApiFp = function(configuration) {
|
|
3309
3122
|
const localVarAxiosParamCreator = LibraryProgramMetadataApiAxiosParamCreator(configuration);
|
|
@@ -3336,7 +3149,6 @@ const LibraryProgramMetadataApiFp = function(configuration) {
|
|
|
3336
3149
|
};
|
|
3337
3150
|
/**
|
|
3338
3151
|
* LibraryProgramMetadataApi - factory interface
|
|
3339
|
-
* @export
|
|
3340
3152
|
*/
|
|
3341
3153
|
const LibraryProgramMetadataApiFactory = function(configuration, basePath, axios$1) {
|
|
3342
3154
|
const localVarFp = LibraryProgramMetadataApiFp(configuration);
|
|
@@ -3357,9 +3169,6 @@ const LibraryProgramMetadataApiFactory = function(configuration, basePath, axios
|
|
|
3357
3169
|
};
|
|
3358
3170
|
/**
|
|
3359
3171
|
* LibraryProgramMetadataApi - object-oriented interface
|
|
3360
|
-
* @export
|
|
3361
|
-
* @class LibraryProgramMetadataApi
|
|
3362
|
-
* @extends {BaseAPI}
|
|
3363
3172
|
*/
|
|
3364
3173
|
var LibraryProgramMetadataApi = class extends BaseAPI {
|
|
3365
3174
|
/**
|
|
@@ -3369,7 +3178,6 @@ var LibraryProgramMetadataApi = class extends BaseAPI {
|
|
|
3369
3178
|
* @param {string} program Recieved from [listProgramMetadata](listProgramMetadata) or from the response of [createProgram](createProgram).
|
|
3370
3179
|
* @param {*} [options] Override http request option.
|
|
3371
3180
|
* @throws {RequiredError}
|
|
3372
|
-
* @memberof LibraryProgramMetadataApi
|
|
3373
3181
|
*/
|
|
3374
3182
|
getProgramMetadata(cell, program, options) {
|
|
3375
3183
|
return LibraryProgramMetadataApiFp(this.configuration).getProgramMetadata(cell, program, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3381,7 +3189,6 @@ var LibraryProgramMetadataApi = class extends BaseAPI {
|
|
|
3381
3189
|
* @param {boolean} [showHidden] If true, hidden programs, where the `is_hidden` flag is active, are included in the list.
|
|
3382
3190
|
* @param {*} [options] Override http request option.
|
|
3383
3191
|
* @throws {RequiredError}
|
|
3384
|
-
* @memberof LibraryProgramMetadataApi
|
|
3385
3192
|
*/
|
|
3386
3193
|
listProgramMetadata(cell, showHidden, options) {
|
|
3387
3194
|
return LibraryProgramMetadataApiFp(this.configuration).listProgramMetadata(cell, showHidden, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3394,7 +3201,6 @@ var LibraryProgramMetadataApi = class extends BaseAPI {
|
|
|
3394
3201
|
* @param {UpdateProgramMetadataRequest} updateProgramMetadataRequest
|
|
3395
3202
|
* @param {*} [options] Override http request option.
|
|
3396
3203
|
* @throws {RequiredError}
|
|
3397
|
-
* @memberof LibraryProgramMetadataApi
|
|
3398
3204
|
*/
|
|
3399
3205
|
updateProgramMetadata(cell, program, updateProgramMetadataRequest, options) {
|
|
3400
3206
|
return LibraryProgramMetadataApiFp(this.configuration).updateProgramMetadata(cell, program, updateProgramMetadataRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3407,7 +3213,6 @@ var LibraryProgramMetadataApi = class extends BaseAPI {
|
|
|
3407
3213
|
* @param {File} file
|
|
3408
3214
|
* @param {*} [options] Override http request option.
|
|
3409
3215
|
* @throws {RequiredError}
|
|
3410
|
-
* @memberof LibraryProgramMetadataApi
|
|
3411
3216
|
*/
|
|
3412
3217
|
uploadProgramMetadataImage(cell, program, file, options) {
|
|
3413
3218
|
return LibraryProgramMetadataApiFp(this.configuration).uploadProgramMetadataImage(cell, program, file, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3415,7 +3220,6 @@ var LibraryProgramMetadataApi = class extends BaseAPI {
|
|
|
3415
3220
|
};
|
|
3416
3221
|
/**
|
|
3417
3222
|
* LibraryRecipeApi - axios parameter creator
|
|
3418
|
-
* @export
|
|
3419
3223
|
*/
|
|
3420
3224
|
const LibraryRecipeApiAxiosParamCreator = function(configuration) {
|
|
3421
3225
|
return {
|
|
@@ -3572,7 +3376,6 @@ const LibraryRecipeApiAxiosParamCreator = function(configuration) {
|
|
|
3572
3376
|
};
|
|
3573
3377
|
/**
|
|
3574
3378
|
* LibraryRecipeApi - functional programming interface
|
|
3575
|
-
* @export
|
|
3576
3379
|
*/
|
|
3577
3380
|
const LibraryRecipeApiFp = function(configuration) {
|
|
3578
3381
|
const localVarAxiosParamCreator = LibraryRecipeApiAxiosParamCreator(configuration);
|
|
@@ -3611,7 +3414,6 @@ const LibraryRecipeApiFp = function(configuration) {
|
|
|
3611
3414
|
};
|
|
3612
3415
|
/**
|
|
3613
3416
|
* LibraryRecipeApi - factory interface
|
|
3614
|
-
* @export
|
|
3615
3417
|
*/
|
|
3616
3418
|
const LibraryRecipeApiFactory = function(configuration, basePath, axios$1) {
|
|
3617
3419
|
const localVarFp = LibraryRecipeApiFp(configuration);
|
|
@@ -3635,9 +3437,6 @@ const LibraryRecipeApiFactory = function(configuration, basePath, axios$1) {
|
|
|
3635
3437
|
};
|
|
3636
3438
|
/**
|
|
3637
3439
|
* LibraryRecipeApi - object-oriented interface
|
|
3638
|
-
* @export
|
|
3639
|
-
* @class LibraryRecipeApi
|
|
3640
|
-
* @extends {BaseAPI}
|
|
3641
3440
|
*/
|
|
3642
3441
|
var LibraryRecipeApi = class extends BaseAPI {
|
|
3643
3442
|
/**
|
|
@@ -3649,7 +3448,6 @@ var LibraryRecipeApi = class extends BaseAPI {
|
|
|
3649
3448
|
* @param {string} [name] If no inital name is set a default name based on the program and timestamp is created.
|
|
3650
3449
|
* @param {*} [options] Override http request option.
|
|
3651
3450
|
* @throws {RequiredError}
|
|
3652
|
-
* @memberof LibraryRecipeApi
|
|
3653
3451
|
*/
|
|
3654
3452
|
createRecipe(cell, programId, body, name, options) {
|
|
3655
3453
|
return LibraryRecipeApiFp(this.configuration).createRecipe(cell, programId, body, name, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3661,7 +3459,6 @@ var LibraryRecipeApi = class extends BaseAPI {
|
|
|
3661
3459
|
* @param {string} recipe Recieved from [listRecipeMetadata](listRecipeMetadata) or from the response of [createRecipe](createRecipe).
|
|
3662
3460
|
* @param {*} [options] Override http request option.
|
|
3663
3461
|
* @throws {RequiredError}
|
|
3664
|
-
* @memberof LibraryRecipeApi
|
|
3665
3462
|
*/
|
|
3666
3463
|
deleteRecipe(cell, recipe, options) {
|
|
3667
3464
|
return LibraryRecipeApiFp(this.configuration).deleteRecipe(cell, recipe, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3673,7 +3470,6 @@ var LibraryRecipeApi = class extends BaseAPI {
|
|
|
3673
3470
|
* @param {Array<string>} recipeIds Recieved from [listRecipeMetadata](listRecipeMetadata) or from the response of [createRecipe](createRecipe)
|
|
3674
3471
|
* @param {*} [options] Override http request option.
|
|
3675
3472
|
* @throws {RequiredError}
|
|
3676
|
-
* @memberof LibraryRecipeApi
|
|
3677
3473
|
*/
|
|
3678
3474
|
deleteRecipeList(cell, recipeIds, options) {
|
|
3679
3475
|
return LibraryRecipeApiFp(this.configuration).deleteRecipeList(cell, recipeIds, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3685,7 +3481,6 @@ var LibraryRecipeApi = class extends BaseAPI {
|
|
|
3685
3481
|
* @param {string} recipe Recieved from [listRecipeMetadata](listRecipeMetadata) or from the response of [createRecipe](createRecipe).
|
|
3686
3482
|
* @param {*} [options] Override http request option.
|
|
3687
3483
|
* @throws {RequiredError}
|
|
3688
|
-
* @memberof LibraryRecipeApi
|
|
3689
3484
|
*/
|
|
3690
3485
|
getRecipe(cell, recipe, options) {
|
|
3691
3486
|
return LibraryRecipeApiFp(this.configuration).getRecipe(cell, recipe, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3698,7 +3493,6 @@ var LibraryRecipeApi = class extends BaseAPI {
|
|
|
3698
3493
|
* @param {object} body
|
|
3699
3494
|
* @param {*} [options] Override http request option.
|
|
3700
3495
|
* @throws {RequiredError}
|
|
3701
|
-
* @memberof LibraryRecipeApi
|
|
3702
3496
|
*/
|
|
3703
3497
|
updateRecipe(cell, recipe, body, options) {
|
|
3704
3498
|
return LibraryRecipeApiFp(this.configuration).updateRecipe(cell, recipe, body, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3706,7 +3500,6 @@ var LibraryRecipeApi = class extends BaseAPI {
|
|
|
3706
3500
|
};
|
|
3707
3501
|
/**
|
|
3708
3502
|
* LibraryRecipeMetadataApi - axios parameter creator
|
|
3709
|
-
* @export
|
|
3710
3503
|
*/
|
|
3711
3504
|
const LibraryRecipeMetadataApiAxiosParamCreator = function(configuration) {
|
|
3712
3505
|
return {
|
|
@@ -3833,7 +3626,6 @@ const LibraryRecipeMetadataApiAxiosParamCreator = function(configuration) {
|
|
|
3833
3626
|
};
|
|
3834
3627
|
/**
|
|
3835
3628
|
* LibraryRecipeMetadataApi - functional programming interface
|
|
3836
|
-
* @export
|
|
3837
3629
|
*/
|
|
3838
3630
|
const LibraryRecipeMetadataApiFp = function(configuration) {
|
|
3839
3631
|
const localVarAxiosParamCreator = LibraryRecipeMetadataApiAxiosParamCreator(configuration);
|
|
@@ -3866,7 +3658,6 @@ const LibraryRecipeMetadataApiFp = function(configuration) {
|
|
|
3866
3658
|
};
|
|
3867
3659
|
/**
|
|
3868
3660
|
* LibraryRecipeMetadataApi - factory interface
|
|
3869
|
-
* @export
|
|
3870
3661
|
*/
|
|
3871
3662
|
const LibraryRecipeMetadataApiFactory = function(configuration, basePath, axios$1) {
|
|
3872
3663
|
const localVarFp = LibraryRecipeMetadataApiFp(configuration);
|
|
@@ -3887,9 +3678,6 @@ const LibraryRecipeMetadataApiFactory = function(configuration, basePath, axios$
|
|
|
3887
3678
|
};
|
|
3888
3679
|
/**
|
|
3889
3680
|
* LibraryRecipeMetadataApi - object-oriented interface
|
|
3890
|
-
* @export
|
|
3891
|
-
* @class LibraryRecipeMetadataApi
|
|
3892
|
-
* @extends {BaseAPI}
|
|
3893
3681
|
*/
|
|
3894
3682
|
var LibraryRecipeMetadataApi = class extends BaseAPI {
|
|
3895
3683
|
/**
|
|
@@ -3899,7 +3687,6 @@ var LibraryRecipeMetadataApi = class extends BaseAPI {
|
|
|
3899
3687
|
* @param {string} recipe Recieved from [listRecipeMetadata](listRecipeMetadata) or from the response of [createRecipe](createRecipe).
|
|
3900
3688
|
* @param {*} [options] Override http request option.
|
|
3901
3689
|
* @throws {RequiredError}
|
|
3902
|
-
* @memberof LibraryRecipeMetadataApi
|
|
3903
3690
|
*/
|
|
3904
3691
|
getRecipeMetadata(cell, recipe, options) {
|
|
3905
3692
|
return LibraryRecipeMetadataApiFp(this.configuration).getRecipeMetadata(cell, recipe, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3910,7 +3697,6 @@ var LibraryRecipeMetadataApi = class extends BaseAPI {
|
|
|
3910
3697
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
3911
3698
|
* @param {*} [options] Override http request option.
|
|
3912
3699
|
* @throws {RequiredError}
|
|
3913
|
-
* @memberof LibraryRecipeMetadataApi
|
|
3914
3700
|
*/
|
|
3915
3701
|
listRecipeMetadata(cell, options) {
|
|
3916
3702
|
return LibraryRecipeMetadataApiFp(this.configuration).listRecipeMetadata(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3923,7 +3709,6 @@ var LibraryRecipeMetadataApi = class extends BaseAPI {
|
|
|
3923
3709
|
* @param {UpdateRecipeMetadataRequest} updateRecipeMetadataRequest
|
|
3924
3710
|
* @param {*} [options] Override http request option.
|
|
3925
3711
|
* @throws {RequiredError}
|
|
3926
|
-
* @memberof LibraryRecipeMetadataApi
|
|
3927
3712
|
*/
|
|
3928
3713
|
updateRecipeMetadata(cell, recipe, updateRecipeMetadataRequest, options) {
|
|
3929
3714
|
return LibraryRecipeMetadataApiFp(this.configuration).updateRecipeMetadata(cell, recipe, updateRecipeMetadataRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3936,7 +3721,6 @@ var LibraryRecipeMetadataApi = class extends BaseAPI {
|
|
|
3936
3721
|
* @param {File} file
|
|
3937
3722
|
* @param {*} [options] Override http request option.
|
|
3938
3723
|
* @throws {RequiredError}
|
|
3939
|
-
* @memberof LibraryRecipeMetadataApi
|
|
3940
3724
|
*/
|
|
3941
3725
|
uploadRecipeMetadataImage(cell, recipe, file, options) {
|
|
3942
3726
|
return LibraryRecipeMetadataApiFp(this.configuration).uploadRecipeMetadataImage(cell, recipe, file, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -3944,7 +3728,6 @@ var LibraryRecipeMetadataApi = class extends BaseAPI {
|
|
|
3944
3728
|
};
|
|
3945
3729
|
/**
|
|
3946
3730
|
* LicenseApi - axios parameter creator
|
|
3947
|
-
* @export
|
|
3948
3731
|
*/
|
|
3949
3732
|
const LicenseApiAxiosParamCreator = function(configuration) {
|
|
3950
3733
|
return {
|
|
@@ -4055,7 +3838,6 @@ const LicenseApiAxiosParamCreator = function(configuration) {
|
|
|
4055
3838
|
};
|
|
4056
3839
|
/**
|
|
4057
3840
|
* LicenseApi - functional programming interface
|
|
4058
|
-
* @export
|
|
4059
3841
|
*/
|
|
4060
3842
|
const LicenseApiFp = function(configuration) {
|
|
4061
3843
|
const localVarAxiosParamCreator = LicenseApiAxiosParamCreator(configuration);
|
|
@@ -4088,7 +3870,6 @@ const LicenseApiFp = function(configuration) {
|
|
|
4088
3870
|
};
|
|
4089
3871
|
/**
|
|
4090
3872
|
* LicenseApi - factory interface
|
|
4091
|
-
* @export
|
|
4092
3873
|
*/
|
|
4093
3874
|
const LicenseApiFactory = function(configuration, basePath, axios$1) {
|
|
4094
3875
|
const localVarFp = LicenseApiFp(configuration);
|
|
@@ -4109,9 +3890,6 @@ const LicenseApiFactory = function(configuration, basePath, axios$1) {
|
|
|
4109
3890
|
};
|
|
4110
3891
|
/**
|
|
4111
3892
|
* LicenseApi - object-oriented interface
|
|
4112
|
-
* @export
|
|
4113
|
-
* @class LicenseApi
|
|
4114
|
-
* @extends {BaseAPI}
|
|
4115
3893
|
*/
|
|
4116
3894
|
var LicenseApi = class extends BaseAPI {
|
|
4117
3895
|
/**
|
|
@@ -4120,7 +3898,6 @@ var LicenseApi = class extends BaseAPI {
|
|
|
4120
3898
|
* @param {ActivateLicenseRequest} activateLicenseRequest
|
|
4121
3899
|
* @param {*} [options] Override http request option.
|
|
4122
3900
|
* @throws {RequiredError}
|
|
4123
|
-
* @memberof LicenseApi
|
|
4124
3901
|
*/
|
|
4125
3902
|
activateLicense(activateLicenseRequest, options) {
|
|
4126
3903
|
return LicenseApiFp(this.configuration).activateLicense(activateLicenseRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4130,7 +3907,6 @@ var LicenseApi = class extends BaseAPI {
|
|
|
4130
3907
|
* @summary Deactivate license
|
|
4131
3908
|
* @param {*} [options] Override http request option.
|
|
4132
3909
|
* @throws {RequiredError}
|
|
4133
|
-
* @memberof LicenseApi
|
|
4134
3910
|
*/
|
|
4135
3911
|
deactivateLicense(options) {
|
|
4136
3912
|
return LicenseApiFp(this.configuration).deactivateLicense(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4140,7 +3916,6 @@ var LicenseApi = class extends BaseAPI {
|
|
|
4140
3916
|
* @summary Get license
|
|
4141
3917
|
* @param {*} [options] Override http request option.
|
|
4142
3918
|
* @throws {RequiredError}
|
|
4143
|
-
* @memberof LicenseApi
|
|
4144
3919
|
*/
|
|
4145
3920
|
getLicense(options) {
|
|
4146
3921
|
return LicenseApiFp(this.configuration).getLicense(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4150,7 +3925,6 @@ var LicenseApi = class extends BaseAPI {
|
|
|
4150
3925
|
* @summary Get license status
|
|
4151
3926
|
* @param {*} [options] Override http request option.
|
|
4152
3927
|
* @throws {RequiredError}
|
|
4153
|
-
* @memberof LicenseApi
|
|
4154
3928
|
*/
|
|
4155
3929
|
getLicenseStatus(options) {
|
|
4156
3930
|
return LicenseApiFp(this.configuration).getLicenseStatus(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4158,7 +3932,6 @@ var LicenseApi = class extends BaseAPI {
|
|
|
4158
3932
|
};
|
|
4159
3933
|
/**
|
|
4160
3934
|
* MotionApi - axios parameter creator
|
|
4161
|
-
* @export
|
|
4162
3935
|
*/
|
|
4163
3936
|
const MotionApiAxiosParamCreator = function(configuration) {
|
|
4164
3937
|
return {
|
|
@@ -4674,7 +4447,6 @@ const MotionApiAxiosParamCreator = function(configuration) {
|
|
|
4674
4447
|
};
|
|
4675
4448
|
/**
|
|
4676
4449
|
* MotionApi - functional programming interface
|
|
4677
|
-
* @export
|
|
4678
4450
|
*/
|
|
4679
4451
|
const MotionApiFp = function(configuration) {
|
|
4680
4452
|
const localVarAxiosParamCreator = MotionApiAxiosParamCreator(configuration);
|
|
@@ -4785,7 +4557,6 @@ const MotionApiFp = function(configuration) {
|
|
|
4785
4557
|
};
|
|
4786
4558
|
/**
|
|
4787
4559
|
* MotionApi - factory interface
|
|
4788
|
-
* @export
|
|
4789
4560
|
*/
|
|
4790
4561
|
const MotionApiFactory = function(configuration, basePath, axios$1) {
|
|
4791
4562
|
const localVarFp = MotionApiFp(configuration);
|
|
@@ -4845,9 +4616,6 @@ const MotionApiFactory = function(configuration, basePath, axios$1) {
|
|
|
4845
4616
|
};
|
|
4846
4617
|
/**
|
|
4847
4618
|
* MotionApi - object-oriented interface
|
|
4848
|
-
* @export
|
|
4849
|
-
* @class MotionApi
|
|
4850
|
-
* @extends {BaseAPI}
|
|
4851
4619
|
*/
|
|
4852
4620
|
var MotionApi = class extends BaseAPI {
|
|
4853
4621
|
/**
|
|
@@ -4856,7 +4624,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4856
4624
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4857
4625
|
* @param {*} [options] Override http request option.
|
|
4858
4626
|
* @throws {RequiredError}
|
|
4859
|
-
* @memberof MotionApi
|
|
4860
4627
|
*/
|
|
4861
4628
|
deleteAllMotions(cell, options) {
|
|
4862
4629
|
return MotionApiFp(this.configuration).deleteAllMotions(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4868,7 +4635,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4868
4635
|
* @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.
|
|
4869
4636
|
* @param {*} [options] Override http request option.
|
|
4870
4637
|
* @throws {RequiredError}
|
|
4871
|
-
* @memberof MotionApi
|
|
4872
4638
|
*/
|
|
4873
4639
|
deleteMotion(cell, motion, options) {
|
|
4874
4640
|
return MotionApiFp(this.configuration).deleteMotion(cell, motion, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4880,7 +4646,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4880
4646
|
* @param {ExecuteTrajectoryRequest} executeTrajectoryRequest
|
|
4881
4647
|
* @param {*} [options] Override http request option.
|
|
4882
4648
|
* @throws {RequiredError}
|
|
4883
|
-
* @memberof MotionApi
|
|
4884
4649
|
*/
|
|
4885
4650
|
executeTrajectory(cell, executeTrajectoryRequest, options) {
|
|
4886
4651
|
return MotionApiFp(this.configuration).executeTrajectory(cell, executeTrajectoryRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4894,7 +4659,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4894
4659
|
* @param {string} [responsesCoordinateSystem] Unique identifier addressing a coordinate system to which the cartesian data of the responses should be converted. Default: world coordinate system.
|
|
4895
4660
|
* @param {*} [options] Override http request option.
|
|
4896
4661
|
* @throws {RequiredError}
|
|
4897
|
-
* @memberof MotionApi
|
|
4898
4662
|
*/
|
|
4899
4663
|
getMotionTrajectory(cell, motion, sampleTime, responsesCoordinateSystem, options) {
|
|
4900
4664
|
return MotionApiFp(this.configuration).getMotionTrajectory(cell, motion, sampleTime, responsesCoordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4908,7 +4672,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4908
4672
|
* @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.
|
|
4909
4673
|
* @param {*} [options] Override http request option.
|
|
4910
4674
|
* @throws {RequiredError}
|
|
4911
|
-
* @memberof MotionApi
|
|
4912
4675
|
*/
|
|
4913
4676
|
getMotionTrajectorySample(cell, motion, locationOnTrajectory, responseCoordinateSystem, options) {
|
|
4914
4677
|
return MotionApiFp(this.configuration).getMotionTrajectorySample(cell, motion, locationOnTrajectory, responseCoordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4921,7 +4684,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4921
4684
|
* @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.
|
|
4922
4685
|
* @param {*} [options] Override http request option.
|
|
4923
4686
|
* @throws {RequiredError}
|
|
4924
|
-
* @memberof MotionApi
|
|
4925
4687
|
*/
|
|
4926
4688
|
getPlannedMotion(cell, motion, sampleTime, options) {
|
|
4927
4689
|
return MotionApiFp(this.configuration).getPlannedMotion(cell, motion, sampleTime, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4932,7 +4694,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4932
4694
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4933
4695
|
* @param {*} [options] Override http request option.
|
|
4934
4696
|
* @throws {RequiredError}
|
|
4935
|
-
* @memberof MotionApi
|
|
4936
4697
|
*/
|
|
4937
4698
|
getPlanningMotionGroupModels(cell, options) {
|
|
4938
4699
|
return MotionApiFp(this.configuration).getPlanningMotionGroupModels(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4943,7 +4704,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4943
4704
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
4944
4705
|
* @param {*} [options] Override http request option.
|
|
4945
4706
|
* @throws {RequiredError}
|
|
4946
|
-
* @memberof MotionApi
|
|
4947
4707
|
*/
|
|
4948
4708
|
listMotions(cell, options) {
|
|
4949
4709
|
return MotionApiFp(this.configuration).listMotions(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4955,7 +4715,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4955
4715
|
* @param {PlannedMotion} plannedMotion
|
|
4956
4716
|
* @param {*} [options] Override http request option.
|
|
4957
4717
|
* @throws {RequiredError}
|
|
4958
|
-
* @memberof MotionApi
|
|
4959
4718
|
*/
|
|
4960
4719
|
loadPlannedMotion(cell, plannedMotion, options) {
|
|
4961
4720
|
return MotionApiFp(this.configuration).loadPlannedMotion(cell, plannedMotion, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4967,7 +4726,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4967
4726
|
* @param {PlanCollisionFreePTPRequest} [planCollisionFreePTPRequest]
|
|
4968
4727
|
* @param {*} [options] Override http request option.
|
|
4969
4728
|
* @throws {RequiredError}
|
|
4970
|
-
* @memberof MotionApi
|
|
4971
4729
|
*/
|
|
4972
4730
|
planCollisionFreePTP(cell, planCollisionFreePTPRequest, options) {
|
|
4973
4731
|
return MotionApiFp(this.configuration).planCollisionFreePTP(cell, planCollisionFreePTPRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4980,7 +4738,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4980
4738
|
* @param {*} [options] Override http request option.
|
|
4981
4739
|
* @deprecated
|
|
4982
4740
|
* @throws {RequiredError}
|
|
4983
|
-
* @memberof MotionApi
|
|
4984
4741
|
*/
|
|
4985
4742
|
planMotion(cell, planRequest, options) {
|
|
4986
4743
|
return MotionApiFp(this.configuration).planMotion(cell, planRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -4992,7 +4749,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
4992
4749
|
* @param {PlanTrajectoryRequest} [planTrajectoryRequest]
|
|
4993
4750
|
* @param {*} [options] Override http request option.
|
|
4994
4751
|
* @throws {RequiredError}
|
|
4995
|
-
* @memberof MotionApi
|
|
4996
4752
|
*/
|
|
4997
4753
|
planTrajectory(cell, planTrajectoryRequest, options) {
|
|
4998
4754
|
return MotionApiFp(this.configuration).planTrajectory(cell, planTrajectoryRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5004,7 +4760,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
5004
4760
|
* @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.
|
|
5005
4761
|
* @param {*} [options] Override http request option.
|
|
5006
4762
|
* @throws {RequiredError}
|
|
5007
|
-
* @memberof MotionApi
|
|
5008
4763
|
*/
|
|
5009
4764
|
stopExecution(cell, motion, options) {
|
|
5010
4765
|
return MotionApiFp(this.configuration).stopExecution(cell, motion, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5017,7 +4772,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
5017
4772
|
* @param {*} [options] Override http request option.
|
|
5018
4773
|
* @deprecated
|
|
5019
4774
|
* @throws {RequiredError}
|
|
5020
|
-
* @memberof MotionApi
|
|
5021
4775
|
*/
|
|
5022
4776
|
streamMove(cell, streamMoveRequest, options) {
|
|
5023
4777
|
return MotionApiFp(this.configuration).streamMove(cell, streamMoveRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5034,7 +4788,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
5034
4788
|
* @param {*} [options] Override http request option.
|
|
5035
4789
|
* @deprecated
|
|
5036
4790
|
* @throws {RequiredError}
|
|
5037
|
-
* @memberof MotionApi
|
|
5038
4791
|
*/
|
|
5039
4792
|
streamMoveBackward(cell, motion, playbackSpeedInPercent, responseRate, responseCoordinateSystem, startLocationOnTrajectory, options) {
|
|
5040
4793
|
return MotionApiFp(this.configuration).streamMoveBackward(cell, motion, playbackSpeedInPercent, responseRate, responseCoordinateSystem, startLocationOnTrajectory, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5051,7 +4804,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
5051
4804
|
* @param {*} [options] Override http request option.
|
|
5052
4805
|
* @deprecated
|
|
5053
4806
|
* @throws {RequiredError}
|
|
5054
|
-
* @memberof MotionApi
|
|
5055
4807
|
*/
|
|
5056
4808
|
streamMoveForward(cell, motion, playbackSpeedInPercent, responseRate, responseCoordinateSystem, startLocationOnTrajectory, options) {
|
|
5057
4809
|
return MotionApiFp(this.configuration).streamMoveForward(cell, motion, playbackSpeedInPercent, responseRate, responseCoordinateSystem, startLocationOnTrajectory, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5071,7 +4823,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
5071
4823
|
* @param {string} [responsesCoordinateSystem]
|
|
5072
4824
|
* @param {*} [options] Override http request option.
|
|
5073
4825
|
* @throws {RequiredError}
|
|
5074
|
-
* @memberof MotionApi
|
|
5075
4826
|
*/
|
|
5076
4827
|
streamMoveToTrajectoryViaJointPTP(cell, motion, locationOnTrajectory, limitOverrideJointVelocityLimitsJoints, limitOverrideJointAccelerationLimitsJoints, limitOverrideTcpVelocityLimit, limitOverrideTcpAccelerationLimit, limitOverrideTcpOrientationVelocityLimit, limitOverrideTcpOrientationAccelerationLimit, responsesCoordinateSystem, options) {
|
|
5077
4828
|
return MotionApiFp(this.configuration).streamMoveToTrajectoryViaJointPTP(cell, motion, locationOnTrajectory, limitOverrideJointVelocityLimitsJoints, limitOverrideJointAccelerationLimitsJoints, limitOverrideTcpVelocityLimit, limitOverrideTcpAccelerationLimit, limitOverrideTcpOrientationVelocityLimit, limitOverrideTcpOrientationAccelerationLimit, responsesCoordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5079,7 +4830,6 @@ var MotionApi = class extends BaseAPI {
|
|
|
5079
4830
|
};
|
|
5080
4831
|
/**
|
|
5081
4832
|
* MotionGroupApi - axios parameter creator
|
|
5082
|
-
* @export
|
|
5083
4833
|
*/
|
|
5084
4834
|
const MotionGroupApiAxiosParamCreator = function(configuration) {
|
|
5085
4835
|
return {
|
|
@@ -5200,7 +4950,6 @@ const MotionGroupApiAxiosParamCreator = function(configuration) {
|
|
|
5200
4950
|
};
|
|
5201
4951
|
/**
|
|
5202
4952
|
* MotionGroupApi - functional programming interface
|
|
5203
|
-
* @export
|
|
5204
4953
|
*/
|
|
5205
4954
|
const MotionGroupApiFp = function(configuration) {
|
|
5206
4955
|
const localVarAxiosParamCreator = MotionGroupApiAxiosParamCreator(configuration);
|
|
@@ -5233,7 +4982,6 @@ const MotionGroupApiFp = function(configuration) {
|
|
|
5233
4982
|
};
|
|
5234
4983
|
/**
|
|
5235
4984
|
* MotionGroupApi - factory interface
|
|
5236
|
-
* @export
|
|
5237
4985
|
*/
|
|
5238
4986
|
const MotionGroupApiFactory = function(configuration, basePath, axios$1) {
|
|
5239
4987
|
const localVarFp = MotionGroupApiFp(configuration);
|
|
@@ -5254,9 +5002,6 @@ const MotionGroupApiFactory = function(configuration, basePath, axios$1) {
|
|
|
5254
5002
|
};
|
|
5255
5003
|
/**
|
|
5256
5004
|
* MotionGroupApi - object-oriented interface
|
|
5257
|
-
* @export
|
|
5258
|
-
* @class MotionGroupApi
|
|
5259
|
-
* @extends {BaseAPI}
|
|
5260
5005
|
*/
|
|
5261
5006
|
var MotionGroupApi = class extends BaseAPI {
|
|
5262
5007
|
/**
|
|
@@ -5266,7 +5011,6 @@ var MotionGroupApi = class extends BaseAPI {
|
|
|
5266
5011
|
* @param {string} controller
|
|
5267
5012
|
* @param {*} [options] Override http request option.
|
|
5268
5013
|
* @throws {RequiredError}
|
|
5269
|
-
* @memberof MotionGroupApi
|
|
5270
5014
|
*/
|
|
5271
5015
|
activateAllMotionGroups(cell, controller, options) {
|
|
5272
5016
|
return MotionGroupApiFp(this.configuration).activateAllMotionGroups(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5278,7 +5022,6 @@ var MotionGroupApi = class extends BaseAPI {
|
|
|
5278
5022
|
* @param {string} motionGroup
|
|
5279
5023
|
* @param {*} [options] Override http request option.
|
|
5280
5024
|
* @throws {RequiredError}
|
|
5281
|
-
* @memberof MotionGroupApi
|
|
5282
5025
|
*/
|
|
5283
5026
|
activateMotionGroup(cell, motionGroup, options) {
|
|
5284
5027
|
return MotionGroupApiFp(this.configuration).activateMotionGroup(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5290,7 +5033,6 @@ var MotionGroupApi = class extends BaseAPI {
|
|
|
5290
5033
|
* @param {string} motionGroup The motion-group id.
|
|
5291
5034
|
* @param {*} [options] Override http request option.
|
|
5292
5035
|
* @throws {RequiredError}
|
|
5293
|
-
* @memberof MotionGroupApi
|
|
5294
5036
|
*/
|
|
5295
5037
|
deactivateMotionGroup(cell, motionGroup, options) {
|
|
5296
5038
|
return MotionGroupApiFp(this.configuration).deactivateMotionGroup(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5301,7 +5043,6 @@ var MotionGroupApi = class extends BaseAPI {
|
|
|
5301
5043
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
5302
5044
|
* @param {*} [options] Override http request option.
|
|
5303
5045
|
* @throws {RequiredError}
|
|
5304
|
-
* @memberof MotionGroupApi
|
|
5305
5046
|
*/
|
|
5306
5047
|
listMotionGroups(cell, options) {
|
|
5307
5048
|
return MotionGroupApiFp(this.configuration).listMotionGroups(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5309,7 +5050,6 @@ var MotionGroupApi = class extends BaseAPI {
|
|
|
5309
5050
|
};
|
|
5310
5051
|
/**
|
|
5311
5052
|
* MotionGroupInfosApi - axios parameter creator
|
|
5312
|
-
* @export
|
|
5313
5053
|
*/
|
|
5314
5054
|
const MotionGroupInfosApiAxiosParamCreator = function(configuration) {
|
|
5315
5055
|
return {
|
|
@@ -5633,7 +5373,6 @@ const MotionGroupInfosApiAxiosParamCreator = function(configuration) {
|
|
|
5633
5373
|
};
|
|
5634
5374
|
/**
|
|
5635
5375
|
* MotionGroupInfosApi - functional programming interface
|
|
5636
|
-
* @export
|
|
5637
5376
|
*/
|
|
5638
5377
|
const MotionGroupInfosApiFp = function(configuration) {
|
|
5639
5378
|
const localVarAxiosParamCreator = MotionGroupInfosApiAxiosParamCreator(configuration);
|
|
@@ -5708,7 +5447,6 @@ const MotionGroupInfosApiFp = function(configuration) {
|
|
|
5708
5447
|
};
|
|
5709
5448
|
/**
|
|
5710
5449
|
* MotionGroupInfosApi - factory interface
|
|
5711
|
-
* @export
|
|
5712
5450
|
*/
|
|
5713
5451
|
const MotionGroupInfosApiFactory = function(configuration, basePath, axios$1) {
|
|
5714
5452
|
const localVarFp = MotionGroupInfosApiFp(configuration);
|
|
@@ -5750,9 +5488,6 @@ const MotionGroupInfosApiFactory = function(configuration, basePath, axios$1) {
|
|
|
5750
5488
|
};
|
|
5751
5489
|
/**
|
|
5752
5490
|
* MotionGroupInfosApi - object-oriented interface
|
|
5753
|
-
* @export
|
|
5754
|
-
* @class MotionGroupInfosApi
|
|
5755
|
-
* @extends {BaseAPI}
|
|
5756
5491
|
*/
|
|
5757
5492
|
var MotionGroupInfosApi = class extends BaseAPI {
|
|
5758
5493
|
/**
|
|
@@ -5762,7 +5497,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5762
5497
|
* @param {string} motionGroup The motion-group id.
|
|
5763
5498
|
* @param {*} [options] Override http request option.
|
|
5764
5499
|
* @throws {RequiredError}
|
|
5765
|
-
* @memberof MotionGroupInfosApi
|
|
5766
5500
|
*/
|
|
5767
5501
|
getActivePayload(cell, motionGroup, options) {
|
|
5768
5502
|
return MotionGroupInfosApiFp(this.configuration).getActivePayload(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5775,7 +5509,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5775
5509
|
* @param {RotationAngleTypes} [rotationType]
|
|
5776
5510
|
* @param {*} [options] Override http request option.
|
|
5777
5511
|
* @throws {RequiredError}
|
|
5778
|
-
* @memberof MotionGroupInfosApi
|
|
5779
5512
|
*/
|
|
5780
5513
|
getActiveTcp(cell, motionGroup, rotationType, options) {
|
|
5781
5514
|
return MotionGroupInfosApiFp(this.configuration).getActiveTcp(cell, motionGroup, rotationType, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5789,7 +5522,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5789
5522
|
* @param {string} [responseCoordinateSystem] Unique identifier addressing a coordinate system to which the responses should be converted. If not set, world coordinate system is used.
|
|
5790
5523
|
* @param {*} [options] Override http request option.
|
|
5791
5524
|
* @throws {RequiredError}
|
|
5792
|
-
* @memberof MotionGroupInfosApi
|
|
5793
5525
|
*/
|
|
5794
5526
|
getCurrentMotionGroupState(cell, motionGroup, tcp, responseCoordinateSystem, options) {
|
|
5795
5527
|
return MotionGroupInfosApiFp(this.configuration).getCurrentMotionGroupState(cell, motionGroup, tcp, responseCoordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5801,7 +5533,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5801
5533
|
* @param {string} motionGroup The motion-group id.
|
|
5802
5534
|
* @param {*} [options] Override http request option.
|
|
5803
5535
|
* @throws {RequiredError}
|
|
5804
|
-
* @memberof MotionGroupInfosApi
|
|
5805
5536
|
*/
|
|
5806
5537
|
getInfoCapabilities(cell, motionGroup, options) {
|
|
5807
5538
|
return MotionGroupInfosApiFp(this.configuration).getInfoCapabilities(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5813,7 +5544,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5813
5544
|
* @param {string} motionGroup The motion-group id.
|
|
5814
5545
|
* @param {*} [options] Override http request option.
|
|
5815
5546
|
* @throws {RequiredError}
|
|
5816
|
-
* @memberof MotionGroupInfosApi
|
|
5817
5547
|
*/
|
|
5818
5548
|
getMotionGroupSpecification(cell, motionGroup, options) {
|
|
5819
5549
|
return MotionGroupInfosApiFp(this.configuration).getMotionGroupSpecification(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5825,7 +5555,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5825
5555
|
* @param {string} motionGroup The motion-group id.
|
|
5826
5556
|
* @param {*} [options] Override http request option.
|
|
5827
5557
|
* @throws {RequiredError}
|
|
5828
|
-
* @memberof MotionGroupInfosApi
|
|
5829
5558
|
*/
|
|
5830
5559
|
getMounting(cell, motionGroup, options) {
|
|
5831
5560
|
return MotionGroupInfosApiFp(this.configuration).getMounting(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5838,7 +5567,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5838
5567
|
* @param {string} [tcp]
|
|
5839
5568
|
* @param {*} [options] Override http request option.
|
|
5840
5569
|
* @throws {RequiredError}
|
|
5841
|
-
* @memberof MotionGroupInfosApi
|
|
5842
5570
|
*/
|
|
5843
5571
|
getOptimizerConfiguration(cell, motionGroup, tcp, options) {
|
|
5844
5572
|
return MotionGroupInfosApiFp(this.configuration).getOptimizerConfiguration(cell, motionGroup, tcp, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5850,7 +5578,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5850
5578
|
* @param {string} motionGroup The motion-group id.
|
|
5851
5579
|
* @param {*} [options] Override http request option.
|
|
5852
5580
|
* @throws {RequiredError}
|
|
5853
|
-
* @memberof MotionGroupInfosApi
|
|
5854
5581
|
*/
|
|
5855
5582
|
getSafetySetup(cell, motionGroup, options) {
|
|
5856
5583
|
return MotionGroupInfosApiFp(this.configuration).getSafetySetup(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5862,7 +5589,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5862
5589
|
* @param {string} motionGroup The motion-group id.
|
|
5863
5590
|
* @param {*} [options] Override http request option.
|
|
5864
5591
|
* @throws {RequiredError}
|
|
5865
|
-
* @memberof MotionGroupInfosApi
|
|
5866
5592
|
*/
|
|
5867
5593
|
listPayloads(cell, motionGroup, options) {
|
|
5868
5594
|
return MotionGroupInfosApiFp(this.configuration).listPayloads(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5875,7 +5601,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5875
5601
|
* @param {RotationAngleTypes} [rotationType]
|
|
5876
5602
|
* @param {*} [options] Override http request option.
|
|
5877
5603
|
* @throws {RequiredError}
|
|
5878
|
-
* @memberof MotionGroupInfosApi
|
|
5879
5604
|
*/
|
|
5880
5605
|
listTcps(cell, motionGroup, rotationType, options) {
|
|
5881
5606
|
return MotionGroupInfosApiFp(this.configuration).listTcps(cell, motionGroup, rotationType, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5890,7 +5615,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5890
5615
|
* @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.
|
|
5891
5616
|
* @param {*} [options] Override http request option.
|
|
5892
5617
|
* @throws {RequiredError}
|
|
5893
|
-
* @memberof MotionGroupInfosApi
|
|
5894
5618
|
*/
|
|
5895
5619
|
streamMotionGroupState(cell, motionGroup, responseRate, responseCoordinateSystem, tcp, options) {
|
|
5896
5620
|
return MotionGroupInfosApiFp(this.configuration).streamMotionGroupState(cell, motionGroup, responseRate, responseCoordinateSystem, tcp, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -5898,7 +5622,6 @@ var MotionGroupInfosApi = class extends BaseAPI {
|
|
|
5898
5622
|
};
|
|
5899
5623
|
/**
|
|
5900
5624
|
* MotionGroupJoggingApi - axios parameter creator
|
|
5901
|
-
* @export
|
|
5902
5625
|
*/
|
|
5903
5626
|
const MotionGroupJoggingApiAxiosParamCreator = function(configuration) {
|
|
5904
5627
|
return {
|
|
@@ -6022,7 +5745,6 @@ const MotionGroupJoggingApiAxiosParamCreator = function(configuration) {
|
|
|
6022
5745
|
};
|
|
6023
5746
|
/**
|
|
6024
5747
|
* MotionGroupJoggingApi - functional programming interface
|
|
6025
|
-
* @export
|
|
6026
5748
|
*/
|
|
6027
5749
|
const MotionGroupJoggingApiFp = function(configuration) {
|
|
6028
5750
|
const localVarAxiosParamCreator = MotionGroupJoggingApiAxiosParamCreator(configuration);
|
|
@@ -6055,7 +5777,6 @@ const MotionGroupJoggingApiFp = function(configuration) {
|
|
|
6055
5777
|
};
|
|
6056
5778
|
/**
|
|
6057
5779
|
* MotionGroupJoggingApi - factory interface
|
|
6058
|
-
* @export
|
|
6059
5780
|
*/
|
|
6060
5781
|
const MotionGroupJoggingApiFactory = function(configuration, basePath, axios$1) {
|
|
6061
5782
|
const localVarFp = MotionGroupJoggingApiFp(configuration);
|
|
@@ -6076,9 +5797,6 @@ const MotionGroupJoggingApiFactory = function(configuration, basePath, axios$1)
|
|
|
6076
5797
|
};
|
|
6077
5798
|
/**
|
|
6078
5799
|
* MotionGroupJoggingApi - object-oriented interface
|
|
6079
|
-
* @export
|
|
6080
|
-
* @class MotionGroupJoggingApi
|
|
6081
|
-
* @extends {BaseAPI}
|
|
6082
5800
|
*/
|
|
6083
5801
|
var MotionGroupJoggingApi = class extends BaseAPI {
|
|
6084
5802
|
/**
|
|
@@ -6088,7 +5806,6 @@ var MotionGroupJoggingApi = class extends BaseAPI {
|
|
|
6088
5806
|
* @param {DirectionJoggingRequest} directionJoggingRequest
|
|
6089
5807
|
* @param {*} [options] Override http request option.
|
|
6090
5808
|
* @throws {RequiredError}
|
|
6091
|
-
* @memberof MotionGroupJoggingApi
|
|
6092
5809
|
*/
|
|
6093
5810
|
directionJogging(cell, directionJoggingRequest, options) {
|
|
6094
5811
|
return MotionGroupJoggingApiFp(this.configuration).directionJogging(cell, directionJoggingRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6100,7 +5817,6 @@ var MotionGroupJoggingApi = class extends BaseAPI {
|
|
|
6100
5817
|
* @param {string} motionGroup The motion-group id.
|
|
6101
5818
|
* @param {*} [options] Override http request option.
|
|
6102
5819
|
* @throws {RequiredError}
|
|
6103
|
-
* @memberof MotionGroupJoggingApi
|
|
6104
5820
|
*/
|
|
6105
5821
|
getJoggingCapabilities(cell, motionGroup, options) {
|
|
6106
5822
|
return MotionGroupJoggingApiFp(this.configuration).getJoggingCapabilities(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6112,7 +5828,6 @@ var MotionGroupJoggingApi = class extends BaseAPI {
|
|
|
6112
5828
|
* @param {JointJoggingRequest} jointJoggingRequest
|
|
6113
5829
|
* @param {*} [options] Override http request option.
|
|
6114
5830
|
* @throws {RequiredError}
|
|
6115
|
-
* @memberof MotionGroupJoggingApi
|
|
6116
5831
|
*/
|
|
6117
5832
|
jointJogging(cell, jointJoggingRequest, options) {
|
|
6118
5833
|
return MotionGroupJoggingApiFp(this.configuration).jointJogging(cell, jointJoggingRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6124,7 +5839,6 @@ var MotionGroupJoggingApi = class extends BaseAPI {
|
|
|
6124
5839
|
* @param {string} motionGroup The motion-group id.
|
|
6125
5840
|
* @param {*} [options] Override http request option.
|
|
6126
5841
|
* @throws {RequiredError}
|
|
6127
|
-
* @memberof MotionGroupJoggingApi
|
|
6128
5842
|
*/
|
|
6129
5843
|
stopJogging(cell, motionGroup, options) {
|
|
6130
5844
|
return MotionGroupJoggingApiFp(this.configuration).stopJogging(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6132,7 +5846,6 @@ var MotionGroupJoggingApi = class extends BaseAPI {
|
|
|
6132
5846
|
};
|
|
6133
5847
|
/**
|
|
6134
5848
|
* MotionGroupKinematicApi - axios parameter creator
|
|
6135
|
-
* @export
|
|
6136
5849
|
*/
|
|
6137
5850
|
const MotionGroupKinematicApiAxiosParamCreator = function(configuration) {
|
|
6138
5851
|
return {
|
|
@@ -6261,7 +5974,6 @@ const MotionGroupKinematicApiAxiosParamCreator = function(configuration) {
|
|
|
6261
5974
|
};
|
|
6262
5975
|
/**
|
|
6263
5976
|
* MotionGroupKinematicApi - functional programming interface
|
|
6264
|
-
* @export
|
|
6265
5977
|
*/
|
|
6266
5978
|
const MotionGroupKinematicApiFp = function(configuration) {
|
|
6267
5979
|
const localVarAxiosParamCreator = MotionGroupKinematicApiAxiosParamCreator(configuration);
|
|
@@ -6294,7 +6006,6 @@ const MotionGroupKinematicApiFp = function(configuration) {
|
|
|
6294
6006
|
};
|
|
6295
6007
|
/**
|
|
6296
6008
|
* MotionGroupKinematicApi - factory interface
|
|
6297
|
-
* @export
|
|
6298
6009
|
*/
|
|
6299
6010
|
const MotionGroupKinematicApiFactory = function(configuration, basePath, axios$1) {
|
|
6300
6011
|
const localVarFp = MotionGroupKinematicApiFp(configuration);
|
|
@@ -6315,9 +6026,6 @@ const MotionGroupKinematicApiFactory = function(configuration, basePath, axios$1
|
|
|
6315
6026
|
};
|
|
6316
6027
|
/**
|
|
6317
6028
|
* MotionGroupKinematicApi - object-oriented interface
|
|
6318
|
-
* @export
|
|
6319
|
-
* @class MotionGroupKinematicApi
|
|
6320
|
-
* @extends {BaseAPI}
|
|
6321
6029
|
*/
|
|
6322
6030
|
var MotionGroupKinematicApi = class extends BaseAPI {
|
|
6323
6031
|
/**
|
|
@@ -6328,7 +6036,6 @@ var MotionGroupKinematicApi = class extends BaseAPI {
|
|
|
6328
6036
|
* @param {AllJointPositionsRequest} allJointPositionsRequest
|
|
6329
6037
|
* @param {*} [options] Override http request option.
|
|
6330
6038
|
* @throws {RequiredError}
|
|
6331
|
-
* @memberof MotionGroupKinematicApi
|
|
6332
6039
|
*/
|
|
6333
6040
|
calculateAllInverseKinematic(cell, motionGroup, allJointPositionsRequest, options) {
|
|
6334
6041
|
return MotionGroupKinematicApiFp(this.configuration).calculateAllInverseKinematic(cell, motionGroup, allJointPositionsRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6341,7 +6048,6 @@ var MotionGroupKinematicApi = class extends BaseAPI {
|
|
|
6341
6048
|
* @param {TcpPoseRequest} tcpPoseRequest
|
|
6342
6049
|
* @param {*} [options] Override http request option.
|
|
6343
6050
|
* @throws {RequiredError}
|
|
6344
|
-
* @memberof MotionGroupKinematicApi
|
|
6345
6051
|
*/
|
|
6346
6052
|
calculateForwardKinematic(cell, motionGroup, tcpPoseRequest, options) {
|
|
6347
6053
|
return MotionGroupKinematicApiFp(this.configuration).calculateForwardKinematic(cell, motionGroup, tcpPoseRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6354,7 +6060,6 @@ var MotionGroupKinematicApi = class extends BaseAPI {
|
|
|
6354
6060
|
* @param {JointPositionRequest} jointPositionRequest
|
|
6355
6061
|
* @param {*} [options] Override http request option.
|
|
6356
6062
|
* @throws {RequiredError}
|
|
6357
|
-
* @memberof MotionGroupKinematicApi
|
|
6358
6063
|
*/
|
|
6359
6064
|
calculateInverseKinematic(cell, motionGroup, jointPositionRequest, options) {
|
|
6360
6065
|
return MotionGroupKinematicApiFp(this.configuration).calculateInverseKinematic(cell, motionGroup, jointPositionRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6366,7 +6071,6 @@ var MotionGroupKinematicApi = class extends BaseAPI {
|
|
|
6366
6071
|
* @param {string} motionGroup The motion-group id.
|
|
6367
6072
|
* @param {*} [options] Override http request option.
|
|
6368
6073
|
* @throws {RequiredError}
|
|
6369
|
-
* @memberof MotionGroupKinematicApi
|
|
6370
6074
|
*/
|
|
6371
6075
|
getKinematicCapabilities(cell, motionGroup, options) {
|
|
6372
6076
|
return MotionGroupKinematicApiFp(this.configuration).getKinematicCapabilities(cell, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6374,7 +6078,6 @@ var MotionGroupKinematicApi = class extends BaseAPI {
|
|
|
6374
6078
|
};
|
|
6375
6079
|
/**
|
|
6376
6080
|
* ProgramApi - axios parameter creator
|
|
6377
|
-
* @export
|
|
6378
6081
|
*/
|
|
6379
6082
|
const ProgramApiAxiosParamCreator = function(configuration) {
|
|
6380
6083
|
return {
|
|
@@ -6613,7 +6316,6 @@ const ProgramApiAxiosParamCreator = function(configuration) {
|
|
|
6613
6316
|
};
|
|
6614
6317
|
/**
|
|
6615
6318
|
* ProgramApi - functional programming interface
|
|
6616
|
-
* @export
|
|
6617
6319
|
*/
|
|
6618
6320
|
const ProgramApiFp = function(configuration) {
|
|
6619
6321
|
const localVarAxiosParamCreator = ProgramApiAxiosParamCreator(configuration);
|
|
@@ -6670,7 +6372,6 @@ const ProgramApiFp = function(configuration) {
|
|
|
6670
6372
|
};
|
|
6671
6373
|
/**
|
|
6672
6374
|
* ProgramApi - factory interface
|
|
6673
|
-
* @export
|
|
6674
6375
|
*/
|
|
6675
6376
|
const ProgramApiFactory = function(configuration, basePath, axios$1) {
|
|
6676
6377
|
const localVarFp = ProgramApiFp(configuration);
|
|
@@ -6703,9 +6404,6 @@ const ProgramApiFactory = function(configuration, basePath, axios$1) {
|
|
|
6703
6404
|
};
|
|
6704
6405
|
/**
|
|
6705
6406
|
* ProgramApi - object-oriented interface
|
|
6706
|
-
* @export
|
|
6707
|
-
* @class ProgramApi
|
|
6708
|
-
* @extends {BaseAPI}
|
|
6709
6407
|
*/
|
|
6710
6408
|
var ProgramApi = class extends BaseAPI {
|
|
6711
6409
|
/**
|
|
@@ -6715,7 +6413,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
6715
6413
|
* @param {Request} request
|
|
6716
6414
|
* @param {*} [options] Override http request option.
|
|
6717
6415
|
* @throws {RequiredError}
|
|
6718
|
-
* @memberof ProgramApi
|
|
6719
6416
|
*/
|
|
6720
6417
|
createProgramRunner(cell, request, options) {
|
|
6721
6418
|
return ProgramApiFp(this.configuration).createProgramRunner(cell, request, options).then((request$1) => request$1(this.axios, this.basePath));
|
|
@@ -6727,7 +6424,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
6727
6424
|
* @param {CodeWithArguments} codeWithArguments
|
|
6728
6425
|
* @param {*} [options] Override http request option.
|
|
6729
6426
|
* @throws {RequiredError}
|
|
6730
|
-
* @memberof ProgramApi
|
|
6731
6427
|
*/
|
|
6732
6428
|
executeProgram(cell, codeWithArguments, options) {
|
|
6733
6429
|
return ProgramApiFp(this.configuration).executeProgram(cell, codeWithArguments, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6739,7 +6435,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
6739
6435
|
* @param {string} runner
|
|
6740
6436
|
* @param {*} [options] Override http request option.
|
|
6741
6437
|
* @throws {RequiredError}
|
|
6742
|
-
* @memberof ProgramApi
|
|
6743
6438
|
*/
|
|
6744
6439
|
getProgramRunner(cell, runner, options) {
|
|
6745
6440
|
return ProgramApiFp(this.configuration).getProgramRunner(cell, runner, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6750,7 +6445,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
6750
6445
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6751
6446
|
* @param {*} [options] Override http request option.
|
|
6752
6447
|
* @throws {RequiredError}
|
|
6753
|
-
* @memberof ProgramApi
|
|
6754
6448
|
*/
|
|
6755
6449
|
listProgramRunners(cell, options) {
|
|
6756
6450
|
return ProgramApiFp(this.configuration).listProgramRunners(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6762,7 +6456,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
6762
6456
|
* @param {Request1} request1
|
|
6763
6457
|
* @param {*} [options] Override http request option.
|
|
6764
6458
|
* @throws {RequiredError}
|
|
6765
|
-
* @memberof ProgramApi
|
|
6766
6459
|
*/
|
|
6767
6460
|
migrateProgram(cell, request1, options) {
|
|
6768
6461
|
return ProgramApiFp(this.configuration).migrateProgram(cell, request1, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6775,7 +6468,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
6775
6468
|
* @param {string} [identifier]
|
|
6776
6469
|
* @param {*} [options] Override http request option.
|
|
6777
6470
|
* @throws {RequiredError}
|
|
6778
|
-
* @memberof ProgramApi
|
|
6779
6471
|
*/
|
|
6780
6472
|
planProgram(cell, request, identifier, options) {
|
|
6781
6473
|
return ProgramApiFp(this.configuration).planProgram(cell, request, identifier, options).then((request$1) => request$1(this.axios, this.basePath));
|
|
@@ -6786,7 +6478,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
6786
6478
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6787
6479
|
* @param {*} [options] Override http request option.
|
|
6788
6480
|
* @throws {RequiredError}
|
|
6789
|
-
* @memberof ProgramApi
|
|
6790
6481
|
*/
|
|
6791
6482
|
stopAllProgramRunner(cell, options) {
|
|
6792
6483
|
return ProgramApiFp(this.configuration).stopAllProgramRunner(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6798,7 +6489,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
6798
6489
|
* @param {string} runner
|
|
6799
6490
|
* @param {*} [options] Override http request option.
|
|
6800
6491
|
* @throws {RequiredError}
|
|
6801
|
-
* @memberof ProgramApi
|
|
6802
6492
|
*/
|
|
6803
6493
|
stopProgramRunner(cell, runner, options) {
|
|
6804
6494
|
return ProgramApiFp(this.configuration).stopProgramRunner(cell, runner, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -6806,7 +6496,6 @@ var ProgramApi = class extends BaseAPI {
|
|
|
6806
6496
|
};
|
|
6807
6497
|
/**
|
|
6808
6498
|
* ProgramOperatorApi - axios parameter creator
|
|
6809
|
-
* @export
|
|
6810
6499
|
*/
|
|
6811
6500
|
const ProgramOperatorApiAxiosParamCreator = function(configuration) {
|
|
6812
6501
|
return {
|
|
@@ -7044,7 +6733,6 @@ const ProgramOperatorApiAxiosParamCreator = function(configuration) {
|
|
|
7044
6733
|
};
|
|
7045
6734
|
/**
|
|
7046
6735
|
* ProgramOperatorApi - functional programming interface
|
|
7047
|
-
* @export
|
|
7048
6736
|
*/
|
|
7049
6737
|
const ProgramOperatorApiFp = function(configuration) {
|
|
7050
6738
|
const localVarAxiosParamCreator = ProgramOperatorApiAxiosParamCreator(configuration);
|
|
@@ -7101,7 +6789,6 @@ const ProgramOperatorApiFp = function(configuration) {
|
|
|
7101
6789
|
};
|
|
7102
6790
|
/**
|
|
7103
6791
|
* ProgramOperatorApi - factory interface
|
|
7104
|
-
* @export
|
|
7105
6792
|
*/
|
|
7106
6793
|
const ProgramOperatorApiFactory = function(configuration, basePath, axios$1) {
|
|
7107
6794
|
const localVarFp = ProgramOperatorApiFp(configuration);
|
|
@@ -7134,9 +6821,6 @@ const ProgramOperatorApiFactory = function(configuration, basePath, axios$1) {
|
|
|
7134
6821
|
};
|
|
7135
6822
|
/**
|
|
7136
6823
|
* ProgramOperatorApi - object-oriented interface
|
|
7137
|
-
* @export
|
|
7138
|
-
* @class ProgramOperatorApi
|
|
7139
|
-
* @extends {BaseAPI}
|
|
7140
6824
|
*/
|
|
7141
6825
|
var ProgramOperatorApi = class extends BaseAPI {
|
|
7142
6826
|
/**
|
|
@@ -7146,7 +6830,6 @@ var ProgramOperatorApi = class extends BaseAPI {
|
|
|
7146
6830
|
* @param {CreateProgramRunRequest} createProgramRunRequest
|
|
7147
6831
|
* @param {*} [options] Override http request option.
|
|
7148
6832
|
* @throws {RequiredError}
|
|
7149
|
-
* @memberof ProgramOperatorApi
|
|
7150
6833
|
*/
|
|
7151
6834
|
createProgramRun(cell, createProgramRunRequest, options) {
|
|
7152
6835
|
return ProgramOperatorApiFp(this.configuration).createProgramRun(cell, createProgramRunRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7158,7 +6841,6 @@ var ProgramOperatorApi = class extends BaseAPI {
|
|
|
7158
6841
|
* @param {CreateTriggerRequest} createTriggerRequest
|
|
7159
6842
|
* @param {*} [options] Override http request option.
|
|
7160
6843
|
* @throws {RequiredError}
|
|
7161
|
-
* @memberof ProgramOperatorApi
|
|
7162
6844
|
*/
|
|
7163
6845
|
createTrigger(cell, createTriggerRequest, options) {
|
|
7164
6846
|
return ProgramOperatorApiFp(this.configuration).createTrigger(cell, createTriggerRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7170,7 +6852,6 @@ var ProgramOperatorApi = class extends BaseAPI {
|
|
|
7170
6852
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7171
6853
|
* @param {*} [options] Override http request option.
|
|
7172
6854
|
* @throws {RequiredError}
|
|
7173
|
-
* @memberof ProgramOperatorApi
|
|
7174
6855
|
*/
|
|
7175
6856
|
deleteTrigger(trigger, cell, options) {
|
|
7176
6857
|
return ProgramOperatorApiFp(this.configuration).deleteTrigger(trigger, cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7182,7 +6863,6 @@ var ProgramOperatorApi = class extends BaseAPI {
|
|
|
7182
6863
|
* @param {string} [state]
|
|
7183
6864
|
* @param {*} [options] Override http request option.
|
|
7184
6865
|
* @throws {RequiredError}
|
|
7185
|
-
* @memberof ProgramOperatorApi
|
|
7186
6866
|
*/
|
|
7187
6867
|
getAllProgramRuns(cell, state, options) {
|
|
7188
6868
|
return ProgramOperatorApiFp(this.configuration).getAllProgramRuns(cell, state, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7193,7 +6873,6 @@ var ProgramOperatorApi = class extends BaseAPI {
|
|
|
7193
6873
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7194
6874
|
* @param {*} [options] Override http request option.
|
|
7195
6875
|
* @throws {RequiredError}
|
|
7196
|
-
* @memberof ProgramOperatorApi
|
|
7197
6876
|
*/
|
|
7198
6877
|
getAllTriggers(cell, options) {
|
|
7199
6878
|
return ProgramOperatorApiFp(this.configuration).getAllTriggers(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7205,7 +6884,6 @@ var ProgramOperatorApi = class extends BaseAPI {
|
|
|
7205
6884
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7206
6885
|
* @param {*} [options] Override http request option.
|
|
7207
6886
|
* @throws {RequiredError}
|
|
7208
|
-
* @memberof ProgramOperatorApi
|
|
7209
6887
|
*/
|
|
7210
6888
|
getProgramRun(run, cell, options) {
|
|
7211
6889
|
return ProgramOperatorApiFp(this.configuration).getProgramRun(run, cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7217,7 +6895,6 @@ var ProgramOperatorApi = class extends BaseAPI {
|
|
|
7217
6895
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7218
6896
|
* @param {*} [options] Override http request option.
|
|
7219
6897
|
* @throws {RequiredError}
|
|
7220
|
-
* @memberof ProgramOperatorApi
|
|
7221
6898
|
*/
|
|
7222
6899
|
getTrigger(trigger, cell, options) {
|
|
7223
6900
|
return ProgramOperatorApiFp(this.configuration).getTrigger(trigger, cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7230,7 +6907,6 @@ var ProgramOperatorApi = class extends BaseAPI {
|
|
|
7230
6907
|
* @param {UpdateTriggerRequest} updateTriggerRequest
|
|
7231
6908
|
* @param {*} [options] Override http request option.
|
|
7232
6909
|
* @throws {RequiredError}
|
|
7233
|
-
* @memberof ProgramOperatorApi
|
|
7234
6910
|
*/
|
|
7235
6911
|
updateTrigger(trigger, cell, updateTriggerRequest, options) {
|
|
7236
6912
|
return ProgramOperatorApiFp(this.configuration).updateTrigger(trigger, cell, updateTriggerRequest, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7238,7 +6914,6 @@ var ProgramOperatorApi = class extends BaseAPI {
|
|
|
7238
6914
|
};
|
|
7239
6915
|
/**
|
|
7240
6916
|
* ProgramValuesApi - axios parameter creator
|
|
7241
|
-
* @export
|
|
7242
6917
|
*/
|
|
7243
6918
|
const ProgramValuesApiAxiosParamCreator = function(configuration) {
|
|
7244
6919
|
return {
|
|
@@ -7417,7 +7092,6 @@ const ProgramValuesApiAxiosParamCreator = function(configuration) {
|
|
|
7417
7092
|
};
|
|
7418
7093
|
/**
|
|
7419
7094
|
* ProgramValuesApi - functional programming interface
|
|
7420
|
-
* @export
|
|
7421
7095
|
*/
|
|
7422
7096
|
const ProgramValuesApiFp = function(configuration) {
|
|
7423
7097
|
const localVarAxiosParamCreator = ProgramValuesApiAxiosParamCreator(configuration);
|
|
@@ -7462,7 +7136,6 @@ const ProgramValuesApiFp = function(configuration) {
|
|
|
7462
7136
|
};
|
|
7463
7137
|
/**
|
|
7464
7138
|
* ProgramValuesApi - factory interface
|
|
7465
|
-
* @export
|
|
7466
7139
|
*/
|
|
7467
7140
|
const ProgramValuesApiFactory = function(configuration, basePath, axios$1) {
|
|
7468
7141
|
const localVarFp = ProgramValuesApiFp(configuration);
|
|
@@ -7489,9 +7162,6 @@ const ProgramValuesApiFactory = function(configuration, basePath, axios$1) {
|
|
|
7489
7162
|
};
|
|
7490
7163
|
/**
|
|
7491
7164
|
* ProgramValuesApi - object-oriented interface
|
|
7492
|
-
* @export
|
|
7493
|
-
* @class ProgramValuesApi
|
|
7494
|
-
* @extends {BaseAPI}
|
|
7495
7165
|
*/
|
|
7496
7166
|
var ProgramValuesApi = class extends BaseAPI {
|
|
7497
7167
|
/**
|
|
@@ -7501,7 +7171,6 @@ var ProgramValuesApi = class extends BaseAPI {
|
|
|
7501
7171
|
* @param {*} [options] Override http request option.
|
|
7502
7172
|
* @deprecated
|
|
7503
7173
|
* @throws {RequiredError}
|
|
7504
|
-
* @memberof ProgramValuesApi
|
|
7505
7174
|
*/
|
|
7506
7175
|
clearProgramsValues(cell, options) {
|
|
7507
7176
|
return ProgramValuesApiFp(this.configuration).clearProgramsValues(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7514,7 +7183,6 @@ var ProgramValuesApi = class extends BaseAPI {
|
|
|
7514
7183
|
* @param {*} [options] Override http request option.
|
|
7515
7184
|
* @deprecated
|
|
7516
7185
|
* @throws {RequiredError}
|
|
7517
|
-
* @memberof ProgramValuesApi
|
|
7518
7186
|
*/
|
|
7519
7187
|
createProgramsValue(cell, requestBody, options) {
|
|
7520
7188
|
return ProgramValuesApiFp(this.configuration).createProgramsValue(cell, requestBody, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7527,7 +7195,6 @@ var ProgramValuesApi = class extends BaseAPI {
|
|
|
7527
7195
|
* @param {*} [options] Override http request option.
|
|
7528
7196
|
* @deprecated
|
|
7529
7197
|
* @throws {RequiredError}
|
|
7530
|
-
* @memberof ProgramValuesApi
|
|
7531
7198
|
*/
|
|
7532
7199
|
deleteProgramValue(cell, key, options) {
|
|
7533
7200
|
return ProgramValuesApiFp(this.configuration).deleteProgramValue(cell, key, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7540,7 +7207,6 @@ var ProgramValuesApi = class extends BaseAPI {
|
|
|
7540
7207
|
* @param {*} [options] Override http request option.
|
|
7541
7208
|
* @deprecated
|
|
7542
7209
|
* @throws {RequiredError}
|
|
7543
|
-
* @memberof ProgramValuesApi
|
|
7544
7210
|
*/
|
|
7545
7211
|
getProgramValue(cell, key, options) {
|
|
7546
7212
|
return ProgramValuesApiFp(this.configuration).getProgramValue(cell, key, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7552,7 +7218,6 @@ var ProgramValuesApi = class extends BaseAPI {
|
|
|
7552
7218
|
* @param {*} [options] Override http request option.
|
|
7553
7219
|
* @deprecated
|
|
7554
7220
|
* @throws {RequiredError}
|
|
7555
|
-
* @memberof ProgramValuesApi
|
|
7556
7221
|
*/
|
|
7557
7222
|
listProgramsValues(cell, options) {
|
|
7558
7223
|
return ProgramValuesApiFp(this.configuration).listProgramsValues(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7566,7 +7231,6 @@ var ProgramValuesApi = class extends BaseAPI {
|
|
|
7566
7231
|
* @param {*} [options] Override http request option.
|
|
7567
7232
|
* @deprecated
|
|
7568
7233
|
* @throws {RequiredError}
|
|
7569
|
-
* @memberof ProgramValuesApi
|
|
7570
7234
|
*/
|
|
7571
7235
|
updateProgramValue(cell, key, value, options) {
|
|
7572
7236
|
return ProgramValuesApiFp(this.configuration).updateProgramValue(cell, key, value, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -7574,7 +7238,6 @@ var ProgramValuesApi = class extends BaseAPI {
|
|
|
7574
7238
|
};
|
|
7575
7239
|
/**
|
|
7576
7240
|
* StoreCollisionComponentsApi - axios parameter creator
|
|
7577
|
-
* @export
|
|
7578
7241
|
*/
|
|
7579
7242
|
const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
7580
7243
|
return {
|
|
@@ -7952,7 +7615,6 @@ const StoreCollisionComponentsApiAxiosParamCreator = function(configuration) {
|
|
|
7952
7615
|
};
|
|
7953
7616
|
/**
|
|
7954
7617
|
* StoreCollisionComponentsApi - functional programming interface
|
|
7955
|
-
* @export
|
|
7956
7618
|
*/
|
|
7957
7619
|
const StoreCollisionComponentsApiFp = function(configuration) {
|
|
7958
7620
|
const localVarAxiosParamCreator = StoreCollisionComponentsApiAxiosParamCreator(configuration);
|
|
@@ -8039,7 +7701,6 @@ const StoreCollisionComponentsApiFp = function(configuration) {
|
|
|
8039
7701
|
};
|
|
8040
7702
|
/**
|
|
8041
7703
|
* StoreCollisionComponentsApi - factory interface
|
|
8042
|
-
* @export
|
|
8043
7704
|
*/
|
|
8044
7705
|
const StoreCollisionComponentsApiFactory = function(configuration, basePath, axios$1) {
|
|
8045
7706
|
const localVarFp = StoreCollisionComponentsApiFp(configuration);
|
|
@@ -8087,9 +7748,6 @@ const StoreCollisionComponentsApiFactory = function(configuration, basePath, axi
|
|
|
8087
7748
|
};
|
|
8088
7749
|
/**
|
|
8089
7750
|
* StoreCollisionComponentsApi - object-oriented interface
|
|
8090
|
-
* @export
|
|
8091
|
-
* @class StoreCollisionComponentsApi
|
|
8092
|
-
* @extends {BaseAPI}
|
|
8093
7751
|
*/
|
|
8094
7752
|
var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
8095
7753
|
/**
|
|
@@ -8099,7 +7757,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8099
7757
|
* @param {string} collider Unique identifier addressing a collider.
|
|
8100
7758
|
* @param {*} [options] Override http request option.
|
|
8101
7759
|
* @throws {RequiredError}
|
|
8102
|
-
* @memberof StoreCollisionComponentsApi
|
|
8103
7760
|
*/
|
|
8104
7761
|
deleteStoredCollider(cell, collider, options) {
|
|
8105
7762
|
return StoreCollisionComponentsApiFp(this.configuration).deleteStoredCollider(cell, collider, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8111,7 +7768,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8111
7768
|
* @param {string} linkChain Unique identifier addressing a collision link chain.
|
|
8112
7769
|
* @param {*} [options] Override http request option.
|
|
8113
7770
|
* @throws {RequiredError}
|
|
8114
|
-
* @memberof StoreCollisionComponentsApi
|
|
8115
7771
|
*/
|
|
8116
7772
|
deleteStoredCollisionLinkChain(cell, linkChain, options) {
|
|
8117
7773
|
return StoreCollisionComponentsApiFp(this.configuration).deleteStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8123,7 +7779,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8123
7779
|
* @param {string} tool Unique identifier addressing a collision tool.
|
|
8124
7780
|
* @param {*} [options] Override http request option.
|
|
8125
7781
|
* @throws {RequiredError}
|
|
8126
|
-
* @memberof StoreCollisionComponentsApi
|
|
8127
7782
|
*/
|
|
8128
7783
|
deleteStoredCollisionTool(cell, tool, options) {
|
|
8129
7784
|
return StoreCollisionComponentsApiFp(this.configuration).deleteStoredCollisionTool(cell, tool, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8136,7 +7791,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8136
7791
|
* @param {*} [options] Override http request option.
|
|
8137
7792
|
* @deprecated
|
|
8138
7793
|
* @throws {RequiredError}
|
|
8139
|
-
* @memberof StoreCollisionComponentsApi
|
|
8140
7794
|
*/
|
|
8141
7795
|
getDefaultLinkChain(cell, motionGroupModel, options) {
|
|
8142
7796
|
return StoreCollisionComponentsApiFp(this.configuration).getDefaultLinkChain(cell, motionGroupModel, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8148,7 +7802,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8148
7802
|
* @param {string} collider Unique identifier addressing a collider.
|
|
8149
7803
|
* @param {*} [options] Override http request option.
|
|
8150
7804
|
* @throws {RequiredError}
|
|
8151
|
-
* @memberof StoreCollisionComponentsApi
|
|
8152
7805
|
*/
|
|
8153
7806
|
getStoredCollider(cell, collider, options) {
|
|
8154
7807
|
return StoreCollisionComponentsApiFp(this.configuration).getStoredCollider(cell, collider, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8160,7 +7813,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8160
7813
|
* @param {string} linkChain Unique identifier addressing a collision link chain.
|
|
8161
7814
|
* @param {*} [options] Override http request option.
|
|
8162
7815
|
* @throws {RequiredError}
|
|
8163
|
-
* @memberof StoreCollisionComponentsApi
|
|
8164
7816
|
*/
|
|
8165
7817
|
getStoredCollisionLinkChain(cell, linkChain, options) {
|
|
8166
7818
|
return StoreCollisionComponentsApiFp(this.configuration).getStoredCollisionLinkChain(cell, linkChain, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8172,7 +7824,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8172
7824
|
* @param {string} tool Unique identifier addressing a collision tool.
|
|
8173
7825
|
* @param {*} [options] Override http request option.
|
|
8174
7826
|
* @throws {RequiredError}
|
|
8175
|
-
* @memberof StoreCollisionComponentsApi
|
|
8176
7827
|
*/
|
|
8177
7828
|
getStoredCollisionTool(cell, tool, options) {
|
|
8178
7829
|
return StoreCollisionComponentsApiFp(this.configuration).getStoredCollisionTool(cell, tool, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8183,7 +7834,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8183
7834
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8184
7835
|
* @param {*} [options] Override http request option.
|
|
8185
7836
|
* @throws {RequiredError}
|
|
8186
|
-
* @memberof StoreCollisionComponentsApi
|
|
8187
7837
|
*/
|
|
8188
7838
|
listCollisionLinkChains(cell, options) {
|
|
8189
7839
|
return StoreCollisionComponentsApiFp(this.configuration).listCollisionLinkChains(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8194,7 +7844,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8194
7844
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8195
7845
|
* @param {*} [options] Override http request option.
|
|
8196
7846
|
* @throws {RequiredError}
|
|
8197
|
-
* @memberof StoreCollisionComponentsApi
|
|
8198
7847
|
*/
|
|
8199
7848
|
listStoredColliders(cell, options) {
|
|
8200
7849
|
return StoreCollisionComponentsApiFp(this.configuration).listStoredColliders(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8205,7 +7854,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8205
7854
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8206
7855
|
* @param {*} [options] Override http request option.
|
|
8207
7856
|
* @throws {RequiredError}
|
|
8208
|
-
* @memberof StoreCollisionComponentsApi
|
|
8209
7857
|
*/
|
|
8210
7858
|
listStoredCollisionTools(cell, options) {
|
|
8211
7859
|
return StoreCollisionComponentsApiFp(this.configuration).listStoredCollisionTools(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8218,7 +7866,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8218
7866
|
* @param {Collider} collider2
|
|
8219
7867
|
* @param {*} [options] Override http request option.
|
|
8220
7868
|
* @throws {RequiredError}
|
|
8221
|
-
* @memberof StoreCollisionComponentsApi
|
|
8222
7869
|
*/
|
|
8223
7870
|
storeCollider(cell, collider, collider2, options) {
|
|
8224
7871
|
return StoreCollisionComponentsApiFp(this.configuration).storeCollider(cell, collider, collider2, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8231,7 +7878,6 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8231
7878
|
* @param {Array<{ [key: string]: Collider; }>} collider
|
|
8232
7879
|
* @param {*} [options] Override http request option.
|
|
8233
7880
|
* @throws {RequiredError}
|
|
8234
|
-
* @memberof StoreCollisionComponentsApi
|
|
8235
7881
|
*/
|
|
8236
7882
|
storeCollisionLinkChain(cell, linkChain, collider, options) {
|
|
8237
7883
|
return StoreCollisionComponentsApiFp(this.configuration).storeCollisionLinkChain(cell, linkChain, collider, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8244,15 +7890,11 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8244
7890
|
* @param {{ [key: string]: Collider; }} requestBody
|
|
8245
7891
|
* @param {*} [options] Override http request option.
|
|
8246
7892
|
* @throws {RequiredError}
|
|
8247
|
-
* @memberof StoreCollisionComponentsApi
|
|
8248
7893
|
*/
|
|
8249
7894
|
storeCollisionTool(cell, tool, requestBody, options) {
|
|
8250
7895
|
return StoreCollisionComponentsApiFp(this.configuration).storeCollisionTool(cell, tool, requestBody, options).then((request) => request(this.axios, this.basePath));
|
|
8251
7896
|
}
|
|
8252
7897
|
};
|
|
8253
|
-
/**
|
|
8254
|
-
* @export
|
|
8255
|
-
*/
|
|
8256
7898
|
const GetDefaultLinkChainMotionGroupModelEnum = {
|
|
8257
7899
|
Abb101003715: "ABB_1010_037_15",
|
|
8258
7900
|
Abb110004754: "ABB_1100_0475_4",
|
|
@@ -8280,6 +7922,8 @@ const GetDefaultLinkChainMotionGroupModelEnum = {
|
|
|
8280
7922
|
Abb460020560: "ABB_4600_205_60",
|
|
8281
7923
|
Abb460025020: "ABB_4600_250_20",
|
|
8282
7924
|
Abb460025540: "ABB_4600_255_40",
|
|
7925
|
+
Abb6730210310: "ABB_6730_210_310",
|
|
7926
|
+
Abb6730240290: "ABB_6730_240_290",
|
|
8283
7927
|
FanucArcMate100iD: "FANUC_ARC_Mate_100iD",
|
|
8284
7928
|
FanucArcMate100iD10L: "FANUC_ARC_Mate_100iD10L",
|
|
8285
7929
|
FanucArcMate100iD16S: "FANUC_ARC_Mate_100iD16S",
|
|
@@ -8327,6 +7971,7 @@ const GetDefaultLinkChainMotionGroupModelEnum = {
|
|
|
8327
7971
|
KukaKr120R2700: "KUKA_KR120_R2700",
|
|
8328
7972
|
KukaKr120R27002: "KUKA_KR120_R2700_2",
|
|
8329
7973
|
KukaKr120R31002: "KUKA_KR120_R3100_2",
|
|
7974
|
+
KukaKr120R39002K: "KUKA_KR120_R3900_2_K",
|
|
8330
7975
|
KukaKr12R18102: "KUKA_KR12_R1810_2",
|
|
8331
7976
|
KukaKr150R2: "KUKA_KR150_R2",
|
|
8332
7977
|
KukaKr16R1610: "KUKA_KR16_R1610",
|
|
@@ -8336,12 +7981,15 @@ const GetDefaultLinkChainMotionGroupModelEnum = {
|
|
|
8336
7981
|
KukaKr20R1810: "KUKA_KR20_R1810",
|
|
8337
7982
|
KukaKr20R18102: "KUKA_KR20_R1810_2",
|
|
8338
7983
|
KukaKr210R2700: "KUKA_KR210_R2700",
|
|
7984
|
+
KukaKr210R2700Extra: "KUKA_KR210_R2700_extra",
|
|
8339
7985
|
KukaKr210R27002: "KUKA_KR210_R2700_2",
|
|
8340
7986
|
KukaKr210R3100: "KUKA_KR210_R3100",
|
|
8341
7987
|
KukaKr210R31002: "KUKA_KR210_R3100_2",
|
|
8342
7988
|
KukaKr210R3300: "KUKA_KR210_R3300",
|
|
8343
7989
|
KukaKr210R33002: "KUKA_KR210_R3300_2",
|
|
8344
7990
|
KukaKr240R2700: "KUKA_KR240_R2700",
|
|
7991
|
+
KukaKr240R2900: "KUKA_KR240_R2900",
|
|
7992
|
+
KukaKr240R37002: "KUKA_KR240_R3700_2",
|
|
8345
7993
|
KukaKr250R27002: "KUKA_KR250_R2700_2",
|
|
8346
7994
|
KukaKr270R2700: "KUKA_KR270_R2700",
|
|
8347
7995
|
KukaKr270R3100: "KUKA_KR270_R3100",
|
|
@@ -8420,7 +8068,6 @@ const GetDefaultLinkChainMotionGroupModelEnum = {
|
|
|
8420
8068
|
};
|
|
8421
8069
|
/**
|
|
8422
8070
|
* StoreCollisionScenesApi - axios parameter creator
|
|
8423
|
-
* @export
|
|
8424
8071
|
*/
|
|
8425
8072
|
const StoreCollisionScenesApiAxiosParamCreator = function(configuration) {
|
|
8426
8073
|
return {
|
|
@@ -8542,7 +8189,6 @@ const StoreCollisionScenesApiAxiosParamCreator = function(configuration) {
|
|
|
8542
8189
|
};
|
|
8543
8190
|
/**
|
|
8544
8191
|
* StoreCollisionScenesApi - functional programming interface
|
|
8545
|
-
* @export
|
|
8546
8192
|
*/
|
|
8547
8193
|
const StoreCollisionScenesApiFp = function(configuration) {
|
|
8548
8194
|
const localVarAxiosParamCreator = StoreCollisionScenesApiAxiosParamCreator(configuration);
|
|
@@ -8575,7 +8221,6 @@ const StoreCollisionScenesApiFp = function(configuration) {
|
|
|
8575
8221
|
};
|
|
8576
8222
|
/**
|
|
8577
8223
|
* StoreCollisionScenesApi - factory interface
|
|
8578
|
-
* @export
|
|
8579
8224
|
*/
|
|
8580
8225
|
const StoreCollisionScenesApiFactory = function(configuration, basePath, axios$1) {
|
|
8581
8226
|
const localVarFp = StoreCollisionScenesApiFp(configuration);
|
|
@@ -8596,9 +8241,6 @@ const StoreCollisionScenesApiFactory = function(configuration, basePath, axios$1
|
|
|
8596
8241
|
};
|
|
8597
8242
|
/**
|
|
8598
8243
|
* StoreCollisionScenesApi - object-oriented interface
|
|
8599
|
-
* @export
|
|
8600
|
-
* @class StoreCollisionScenesApi
|
|
8601
|
-
* @extends {BaseAPI}
|
|
8602
8244
|
*/
|
|
8603
8245
|
var StoreCollisionScenesApi = class extends BaseAPI {
|
|
8604
8246
|
/**
|
|
@@ -8608,7 +8250,6 @@ var StoreCollisionScenesApi = class extends BaseAPI {
|
|
|
8608
8250
|
* @param {string} scene Unique identifier addressing a collision scene.
|
|
8609
8251
|
* @param {*} [options] Override http request option.
|
|
8610
8252
|
* @throws {RequiredError}
|
|
8611
|
-
* @memberof StoreCollisionScenesApi
|
|
8612
8253
|
*/
|
|
8613
8254
|
deleteStoredCollisionScene(cell, scene, options) {
|
|
8614
8255
|
return StoreCollisionScenesApiFp(this.configuration).deleteStoredCollisionScene(cell, scene, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8620,7 +8261,6 @@ var StoreCollisionScenesApi = class extends BaseAPI {
|
|
|
8620
8261
|
* @param {string} scene Unique identifier addressing a collision scene.
|
|
8621
8262
|
* @param {*} [options] Override http request option.
|
|
8622
8263
|
* @throws {RequiredError}
|
|
8623
|
-
* @memberof StoreCollisionScenesApi
|
|
8624
8264
|
*/
|
|
8625
8265
|
getStoredCollisionScene(cell, scene, options) {
|
|
8626
8266
|
return StoreCollisionScenesApiFp(this.configuration).getStoredCollisionScene(cell, scene, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8631,7 +8271,6 @@ var StoreCollisionScenesApi = class extends BaseAPI {
|
|
|
8631
8271
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8632
8272
|
* @param {*} [options] Override http request option.
|
|
8633
8273
|
* @throws {RequiredError}
|
|
8634
|
-
* @memberof StoreCollisionScenesApi
|
|
8635
8274
|
*/
|
|
8636
8275
|
listStoredCollisionScenes(cell, options) {
|
|
8637
8276
|
return StoreCollisionScenesApiFp(this.configuration).listStoredCollisionScenes(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8644,7 +8283,6 @@ var StoreCollisionScenesApi = class extends BaseAPI {
|
|
|
8644
8283
|
* @param {CollisionSceneAssembly} collisionSceneAssembly
|
|
8645
8284
|
* @param {*} [options] Override http request option.
|
|
8646
8285
|
* @throws {RequiredError}
|
|
8647
|
-
* @memberof StoreCollisionScenesApi
|
|
8648
8286
|
*/
|
|
8649
8287
|
storeCollisionScene(cell, scene, collisionSceneAssembly, options) {
|
|
8650
8288
|
return StoreCollisionScenesApiFp(this.configuration).storeCollisionScene(cell, scene, collisionSceneAssembly, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8652,7 +8290,6 @@ var StoreCollisionScenesApi = class extends BaseAPI {
|
|
|
8652
8290
|
};
|
|
8653
8291
|
/**
|
|
8654
8292
|
* StoreObjectApi - axios parameter creator
|
|
8655
|
-
* @export
|
|
8656
8293
|
*/
|
|
8657
8294
|
const StoreObjectApiAxiosParamCreator = function(configuration) {
|
|
8658
8295
|
return {
|
|
@@ -8831,7 +8468,6 @@ const StoreObjectApiAxiosParamCreator = function(configuration) {
|
|
|
8831
8468
|
};
|
|
8832
8469
|
/**
|
|
8833
8470
|
* StoreObjectApi - functional programming interface
|
|
8834
|
-
* @export
|
|
8835
8471
|
*/
|
|
8836
8472
|
const StoreObjectApiFp = function(configuration) {
|
|
8837
8473
|
const localVarAxiosParamCreator = StoreObjectApiAxiosParamCreator(configuration);
|
|
@@ -8876,7 +8512,6 @@ const StoreObjectApiFp = function(configuration) {
|
|
|
8876
8512
|
};
|
|
8877
8513
|
/**
|
|
8878
8514
|
* StoreObjectApi - factory interface
|
|
8879
|
-
* @export
|
|
8880
8515
|
*/
|
|
8881
8516
|
const StoreObjectApiFactory = function(configuration, basePath, axios$1) {
|
|
8882
8517
|
const localVarFp = StoreObjectApiFp(configuration);
|
|
@@ -8903,9 +8538,6 @@ const StoreObjectApiFactory = function(configuration, basePath, axios$1) {
|
|
|
8903
8538
|
};
|
|
8904
8539
|
/**
|
|
8905
8540
|
* StoreObjectApi - object-oriented interface
|
|
8906
|
-
* @export
|
|
8907
|
-
* @class StoreObjectApi
|
|
8908
|
-
* @extends {BaseAPI}
|
|
8909
8541
|
*/
|
|
8910
8542
|
var StoreObjectApi = class extends BaseAPI {
|
|
8911
8543
|
/**
|
|
@@ -8914,7 +8546,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
8914
8546
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8915
8547
|
* @param {*} [options] Override http request option.
|
|
8916
8548
|
* @throws {RequiredError}
|
|
8917
|
-
* @memberof StoreObjectApi
|
|
8918
8549
|
*/
|
|
8919
8550
|
clearAllObjects(cell, options) {
|
|
8920
8551
|
return StoreObjectApiFp(this.configuration).clearAllObjects(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8926,7 +8557,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
8926
8557
|
* @param {string} key
|
|
8927
8558
|
* @param {*} [options] Override http request option.
|
|
8928
8559
|
* @throws {RequiredError}
|
|
8929
|
-
* @memberof StoreObjectApi
|
|
8930
8560
|
*/
|
|
8931
8561
|
deleteObject(cell, key, options) {
|
|
8932
8562
|
return StoreObjectApiFp(this.configuration).deleteObject(cell, key, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8938,7 +8568,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
8938
8568
|
* @param {string} key
|
|
8939
8569
|
* @param {*} [options] Override http request option.
|
|
8940
8570
|
* @throws {RequiredError}
|
|
8941
|
-
* @memberof StoreObjectApi
|
|
8942
8571
|
*/
|
|
8943
8572
|
getObject(cell, key, options) {
|
|
8944
8573
|
return StoreObjectApiFp(this.configuration).getObject(cell, key, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8950,7 +8579,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
8950
8579
|
* @param {string} key
|
|
8951
8580
|
* @param {*} [options] Override http request option.
|
|
8952
8581
|
* @throws {RequiredError}
|
|
8953
|
-
* @memberof StoreObjectApi
|
|
8954
8582
|
*/
|
|
8955
8583
|
getObjectMetadata(cell, key, options) {
|
|
8956
8584
|
return StoreObjectApiFp(this.configuration).getObjectMetadata(cell, key, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8961,7 +8589,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
8961
8589
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8962
8590
|
* @param {*} [options] Override http request option.
|
|
8963
8591
|
* @throws {RequiredError}
|
|
8964
|
-
* @memberof StoreObjectApi
|
|
8965
8592
|
*/
|
|
8966
8593
|
listAllObjectKeys(cell, options) {
|
|
8967
8594
|
return StoreObjectApiFp(this.configuration).listAllObjectKeys(cell, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8975,7 +8602,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
8975
8602
|
* @param {any} [anyValue]
|
|
8976
8603
|
* @param {*} [options] Override http request option.
|
|
8977
8604
|
* @throws {RequiredError}
|
|
8978
|
-
* @memberof StoreObjectApi
|
|
8979
8605
|
*/
|
|
8980
8606
|
storeObject(cell, key, xMetadata, anyValue, options) {
|
|
8981
8607
|
return StoreObjectApiFp(this.configuration).storeObject(cell, key, xMetadata, anyValue, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -8983,7 +8609,6 @@ var StoreObjectApi = class extends BaseAPI {
|
|
|
8983
8609
|
};
|
|
8984
8610
|
/**
|
|
8985
8611
|
* SystemApi - axios parameter creator
|
|
8986
|
-
* @export
|
|
8987
8612
|
*/
|
|
8988
8613
|
const SystemApiAxiosParamCreator = function(configuration) {
|
|
8989
8614
|
return {
|
|
@@ -9121,7 +8746,6 @@ const SystemApiAxiosParamCreator = function(configuration) {
|
|
|
9121
8746
|
};
|
|
9122
8747
|
/**
|
|
9123
8748
|
* SystemApi - functional programming interface
|
|
9124
|
-
* @export
|
|
9125
8749
|
*/
|
|
9126
8750
|
const SystemApiFp = function(configuration) {
|
|
9127
8751
|
const localVarAxiosParamCreator = SystemApiAxiosParamCreator(configuration);
|
|
@@ -9160,7 +8784,6 @@ const SystemApiFp = function(configuration) {
|
|
|
9160
8784
|
};
|
|
9161
8785
|
/**
|
|
9162
8786
|
* SystemApi - factory interface
|
|
9163
|
-
* @export
|
|
9164
8787
|
*/
|
|
9165
8788
|
const SystemApiFactory = function(configuration, basePath, axios$1) {
|
|
9166
8789
|
const localVarFp = SystemApiFp(configuration);
|
|
@@ -9184,9 +8807,6 @@ const SystemApiFactory = function(configuration, basePath, axios$1) {
|
|
|
9184
8807
|
};
|
|
9185
8808
|
/**
|
|
9186
8809
|
* SystemApi - object-oriented interface
|
|
9187
|
-
* @export
|
|
9188
|
-
* @class SystemApi
|
|
9189
|
-
* @extends {BaseAPI}
|
|
9190
8810
|
*/
|
|
9191
8811
|
var SystemApi = class extends BaseAPI {
|
|
9192
8812
|
/**
|
|
@@ -9195,7 +8815,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
9195
8815
|
* @param {ReleaseChannel} channel
|
|
9196
8816
|
* @param {*} [options] Override http request option.
|
|
9197
8817
|
* @throws {RequiredError}
|
|
9198
|
-
* @memberof SystemApi
|
|
9199
8818
|
*/
|
|
9200
8819
|
checkNovaVersionUpdate(channel, options) {
|
|
9201
8820
|
return SystemApiFp(this.configuration).checkNovaVersionUpdate(channel, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9205,7 +8824,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
9205
8824
|
* @summary Download Diagnosis Package
|
|
9206
8825
|
* @param {*} [options] Override http request option.
|
|
9207
8826
|
* @throws {RequiredError}
|
|
9208
|
-
* @memberof SystemApi
|
|
9209
8827
|
*/
|
|
9210
8828
|
getDiagnosePackage(options) {
|
|
9211
8829
|
return SystemApiFp(this.configuration).getDiagnosePackage(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9215,7 +8833,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
9215
8833
|
* @summary Wandelbots NOVA status
|
|
9216
8834
|
* @param {*} [options] Override http request option.
|
|
9217
8835
|
* @throws {RequiredError}
|
|
9218
|
-
* @memberof SystemApi
|
|
9219
8836
|
*/
|
|
9220
8837
|
getSystemStatus(options) {
|
|
9221
8838
|
return SystemApiFp(this.configuration).getSystemStatus(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9225,7 +8842,6 @@ var SystemApi = class extends BaseAPI {
|
|
|
9225
8842
|
* @summary Wandelbots NOVA Version
|
|
9226
8843
|
* @param {*} [options] Override http request option.
|
|
9227
8844
|
* @throws {RequiredError}
|
|
9228
|
-
* @memberof SystemApi
|
|
9229
8845
|
*/
|
|
9230
8846
|
getSystemVersion(options) {
|
|
9231
8847
|
return SystemApiFp(this.configuration).getSystemVersion(options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9236,15 +8852,78 @@ var SystemApi = class extends BaseAPI {
|
|
|
9236
8852
|
* @param {UpdateNovaVersionRequest} updateNovaVersionRequest
|
|
9237
8853
|
* @param {*} [options] Override http request option.
|
|
9238
8854
|
* @throws {RequiredError}
|
|
9239
|
-
* @memberof SystemApi
|
|
9240
8855
|
*/
|
|
9241
8856
|
updateNovaVersion(updateNovaVersionRequest, options) {
|
|
9242
8857
|
return SystemApiFp(this.configuration).updateNovaVersion(updateNovaVersionRequest, options).then((request) => request(this.axios, this.basePath));
|
|
9243
8858
|
}
|
|
9244
8859
|
};
|
|
9245
8860
|
/**
|
|
8861
|
+
* VersionApi - axios parameter creator
|
|
8862
|
+
*/
|
|
8863
|
+
const VersionApiAxiosParamCreator = function(configuration) {
|
|
8864
|
+
return { getApiVersion: async (options = {}) => {
|
|
8865
|
+
const localVarUrlObj = new URL(`/version`, DUMMY_BASE_URL);
|
|
8866
|
+
let baseOptions;
|
|
8867
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
8868
|
+
const localVarRequestOptions = {
|
|
8869
|
+
method: "GET",
|
|
8870
|
+
...baseOptions,
|
|
8871
|
+
...options
|
|
8872
|
+
};
|
|
8873
|
+
const localVarHeaderParameter = {};
|
|
8874
|
+
const localVarQueryParameter = {};
|
|
8875
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
8876
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
8877
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
8878
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
8879
|
+
localVarRequestOptions.headers = {
|
|
8880
|
+
...localVarHeaderParameter,
|
|
8881
|
+
...headersFromBaseOptions,
|
|
8882
|
+
...options.headers
|
|
8883
|
+
};
|
|
8884
|
+
return {
|
|
8885
|
+
url: toPathString(localVarUrlObj),
|
|
8886
|
+
options: localVarRequestOptions
|
|
8887
|
+
};
|
|
8888
|
+
} };
|
|
8889
|
+
};
|
|
8890
|
+
/**
|
|
8891
|
+
* VersionApi - functional programming interface
|
|
8892
|
+
*/
|
|
8893
|
+
const VersionApiFp = function(configuration) {
|
|
8894
|
+
const localVarAxiosParamCreator = VersionApiAxiosParamCreator(configuration);
|
|
8895
|
+
return { async getApiVersion(options) {
|
|
8896
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getApiVersion(options);
|
|
8897
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
8898
|
+
const localVarOperationServerBasePath = operationServerMap["VersionApi.getApiVersion"]?.[localVarOperationServerIndex]?.url;
|
|
8899
|
+
return (axios$1, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$1, localVarOperationServerBasePath || basePath);
|
|
8900
|
+
} };
|
|
8901
|
+
};
|
|
8902
|
+
/**
|
|
8903
|
+
* VersionApi - factory interface
|
|
8904
|
+
*/
|
|
8905
|
+
const VersionApiFactory = function(configuration, basePath, axios$1) {
|
|
8906
|
+
const localVarFp = VersionApiFp(configuration);
|
|
8907
|
+
return { getApiVersion(options) {
|
|
8908
|
+
return localVarFp.getApiVersion(options).then((request) => request(axios$1, basePath));
|
|
8909
|
+
} };
|
|
8910
|
+
};
|
|
8911
|
+
/**
|
|
8912
|
+
* VersionApi - object-oriented interface
|
|
8913
|
+
*/
|
|
8914
|
+
var VersionApi = class extends BaseAPI {
|
|
8915
|
+
/**
|
|
8916
|
+
* Retrieves the version of the NOVA API.
|
|
8917
|
+
* @summary API Version
|
|
8918
|
+
* @param {*} [options] Override http request option.
|
|
8919
|
+
* @throws {RequiredError}
|
|
8920
|
+
*/
|
|
8921
|
+
getApiVersion(options) {
|
|
8922
|
+
return VersionApiFp(this.configuration).getApiVersion(options).then((request) => request(this.axios, this.basePath));
|
|
8923
|
+
}
|
|
8924
|
+
};
|
|
8925
|
+
/**
|
|
9246
8926
|
* VirtualRobotApi - axios parameter creator
|
|
9247
|
-
* @export
|
|
9248
8927
|
*/
|
|
9249
8928
|
const VirtualRobotApiAxiosParamCreator = function(configuration) {
|
|
9250
8929
|
return {
|
|
@@ -9430,7 +9109,6 @@ const VirtualRobotApiAxiosParamCreator = function(configuration) {
|
|
|
9430
9109
|
};
|
|
9431
9110
|
/**
|
|
9432
9111
|
* VirtualRobotApi - functional programming interface
|
|
9433
|
-
* @export
|
|
9434
9112
|
*/
|
|
9435
9113
|
const VirtualRobotApiFp = function(configuration) {
|
|
9436
9114
|
const localVarAxiosParamCreator = VirtualRobotApiAxiosParamCreator(configuration);
|
|
@@ -9475,7 +9153,6 @@ const VirtualRobotApiFp = function(configuration) {
|
|
|
9475
9153
|
};
|
|
9476
9154
|
/**
|
|
9477
9155
|
* VirtualRobotApi - factory interface
|
|
9478
|
-
* @export
|
|
9479
9156
|
*/
|
|
9480
9157
|
const VirtualRobotApiFactory = function(configuration, basePath, axios$1) {
|
|
9481
9158
|
const localVarFp = VirtualRobotApiFp(configuration);
|
|
@@ -9502,9 +9179,6 @@ const VirtualRobotApiFactory = function(configuration, basePath, axios$1) {
|
|
|
9502
9179
|
};
|
|
9503
9180
|
/**
|
|
9504
9181
|
* VirtualRobotApi - object-oriented interface
|
|
9505
|
-
* @export
|
|
9506
|
-
* @class VirtualRobotApi
|
|
9507
|
-
* @extends {BaseAPI}
|
|
9508
9182
|
*/
|
|
9509
9183
|
var VirtualRobotApi = class extends BaseAPI {
|
|
9510
9184
|
/**
|
|
@@ -9515,7 +9189,6 @@ var VirtualRobotApi = class extends BaseAPI {
|
|
|
9515
9189
|
* @param {number} id The controller specific motion-group id.
|
|
9516
9190
|
* @param {*} [options] Override http request option.
|
|
9517
9191
|
* @throws {RequiredError}
|
|
9518
|
-
* @memberof VirtualRobotApi
|
|
9519
9192
|
*/
|
|
9520
9193
|
getMotionGroupState(cell, controller, id, options) {
|
|
9521
9194
|
return VirtualRobotApiFp(this.configuration).getMotionGroupState(cell, controller, id, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9527,7 +9200,6 @@ var VirtualRobotApi = class extends BaseAPI {
|
|
|
9527
9200
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
9528
9201
|
* @param {*} [options] Override http request option.
|
|
9529
9202
|
* @throws {RequiredError}
|
|
9530
|
-
* @memberof VirtualRobotApi
|
|
9531
9203
|
*/
|
|
9532
9204
|
getMotionGroups(cell, controller, options) {
|
|
9533
9205
|
return VirtualRobotApiFp(this.configuration).getMotionGroups(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9540,7 +9212,6 @@ var VirtualRobotApi = class extends BaseAPI {
|
|
|
9540
9212
|
* @param {string} io The io id.
|
|
9541
9213
|
* @param {*} [options] Override http request option.
|
|
9542
9214
|
* @throws {RequiredError}
|
|
9543
|
-
* @memberof VirtualRobotApi
|
|
9544
9215
|
*/
|
|
9545
9216
|
getVirtualRobotIOValue(cell, controller, io, options) {
|
|
9546
9217
|
return VirtualRobotApiFp(this.configuration).getVirtualRobotIOValue(cell, controller, io, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9552,7 +9223,6 @@ var VirtualRobotApi = class extends BaseAPI {
|
|
|
9552
9223
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
9553
9224
|
* @param {*} [options] Override http request option.
|
|
9554
9225
|
* @throws {RequiredError}
|
|
9555
|
-
* @memberof VirtualRobotApi
|
|
9556
9226
|
*/
|
|
9557
9227
|
listIOs(cell, controller, options) {
|
|
9558
9228
|
return VirtualRobotApiFp(this.configuration).listIOs(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9566,7 +9236,6 @@ var VirtualRobotApi = class extends BaseAPI {
|
|
|
9566
9236
|
* @param {MotionGroupJoints} motionGroupJoints
|
|
9567
9237
|
* @param {*} [options] Override http request option.
|
|
9568
9238
|
* @throws {RequiredError}
|
|
9569
|
-
* @memberof VirtualRobotApi
|
|
9570
9239
|
*/
|
|
9571
9240
|
setMotionGroupState(cell, controller, id, motionGroupJoints, options) {
|
|
9572
9241
|
return VirtualRobotApiFp(this.configuration).setMotionGroupState(cell, controller, id, motionGroupJoints, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9582,7 +9251,6 @@ var VirtualRobotApi = class extends BaseAPI {
|
|
|
9582
9251
|
* @param {number} [_double]
|
|
9583
9252
|
* @param {*} [options] Override http request option.
|
|
9584
9253
|
* @throws {RequiredError}
|
|
9585
|
-
* @memberof VirtualRobotApi
|
|
9586
9254
|
*/
|
|
9587
9255
|
setVirtualRobotIOValue(cell, controller, io, bool, integer, _double, options) {
|
|
9588
9256
|
return VirtualRobotApiFp(this.configuration).setVirtualRobotIOValue(cell, controller, io, bool, integer, _double, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9590,7 +9258,6 @@ var VirtualRobotApi = class extends BaseAPI {
|
|
|
9590
9258
|
};
|
|
9591
9259
|
/**
|
|
9592
9260
|
* VirtualRobotBehaviorApi - axios parameter creator
|
|
9593
|
-
* @export
|
|
9594
9261
|
*/
|
|
9595
9262
|
const VirtualRobotBehaviorApiAxiosParamCreator = function(configuration) {
|
|
9596
9263
|
return {
|
|
@@ -9688,7 +9355,6 @@ const VirtualRobotBehaviorApiAxiosParamCreator = function(configuration) {
|
|
|
9688
9355
|
};
|
|
9689
9356
|
/**
|
|
9690
9357
|
* VirtualRobotBehaviorApi - functional programming interface
|
|
9691
|
-
* @export
|
|
9692
9358
|
*/
|
|
9693
9359
|
const VirtualRobotBehaviorApiFp = function(configuration) {
|
|
9694
9360
|
const localVarAxiosParamCreator = VirtualRobotBehaviorApiAxiosParamCreator(configuration);
|
|
@@ -9715,7 +9381,6 @@ const VirtualRobotBehaviorApiFp = function(configuration) {
|
|
|
9715
9381
|
};
|
|
9716
9382
|
/**
|
|
9717
9383
|
* VirtualRobotBehaviorApi - factory interface
|
|
9718
|
-
* @export
|
|
9719
9384
|
*/
|
|
9720
9385
|
const VirtualRobotBehaviorApiFactory = function(configuration, basePath, axios$1) {
|
|
9721
9386
|
const localVarFp = VirtualRobotBehaviorApiFp(configuration);
|
|
@@ -9733,9 +9398,6 @@ const VirtualRobotBehaviorApiFactory = function(configuration, basePath, axios$1
|
|
|
9733
9398
|
};
|
|
9734
9399
|
/**
|
|
9735
9400
|
* VirtualRobotBehaviorApi - object-oriented interface
|
|
9736
|
-
* @export
|
|
9737
|
-
* @class VirtualRobotBehaviorApi
|
|
9738
|
-
* @extends {BaseAPI}
|
|
9739
9401
|
*/
|
|
9740
9402
|
var VirtualRobotBehaviorApi = class extends BaseAPI {
|
|
9741
9403
|
/**
|
|
@@ -9746,7 +9408,6 @@ var VirtualRobotBehaviorApi = class extends BaseAPI {
|
|
|
9746
9408
|
* @param {ExternalJointStreamDatapoint} externalJointStreamDatapoint
|
|
9747
9409
|
* @param {*} [options] Override http request option.
|
|
9748
9410
|
* @throws {RequiredError}
|
|
9749
|
-
* @memberof VirtualRobotBehaviorApi
|
|
9750
9411
|
*/
|
|
9751
9412
|
externalJointsStream(cell, controller, externalJointStreamDatapoint, options) {
|
|
9752
9413
|
return VirtualRobotBehaviorApiFp(this.configuration).externalJointsStream(cell, controller, externalJointStreamDatapoint, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9759,7 +9420,6 @@ var VirtualRobotBehaviorApi = class extends BaseAPI {
|
|
|
9759
9420
|
* @param {number} id The controller specific motion-group id.
|
|
9760
9421
|
* @param {*} [options] Override http request option.
|
|
9761
9422
|
* @throws {RequiredError}
|
|
9762
|
-
* @memberof VirtualRobotBehaviorApi
|
|
9763
9423
|
*/
|
|
9764
9424
|
getMotionGroupBehavior(cell, controller, id, options) {
|
|
9765
9425
|
return VirtualRobotBehaviorApiFp(this.configuration).getMotionGroupBehavior(cell, controller, id, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9773,7 +9433,6 @@ var VirtualRobotBehaviorApi = class extends BaseAPI {
|
|
|
9773
9433
|
* @param {Behavior} [behavior]
|
|
9774
9434
|
* @param {*} [options] Override http request option.
|
|
9775
9435
|
* @throws {RequiredError}
|
|
9776
|
-
* @memberof VirtualRobotBehaviorApi
|
|
9777
9436
|
*/
|
|
9778
9437
|
setMotionGroupBehavior(cell, controller, id, behavior, options) {
|
|
9779
9438
|
return VirtualRobotBehaviorApiFp(this.configuration).setMotionGroupBehavior(cell, controller, id, behavior, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -9781,7 +9440,6 @@ var VirtualRobotBehaviorApi = class extends BaseAPI {
|
|
|
9781
9440
|
};
|
|
9782
9441
|
/**
|
|
9783
9442
|
* VirtualRobotModeApi - axios parameter creator
|
|
9784
|
-
* @export
|
|
9785
9443
|
*/
|
|
9786
9444
|
const VirtualRobotModeApiAxiosParamCreator = function(configuration) {
|
|
9787
9445
|
return {
|
|
@@ -9959,7 +9617,6 @@ const VirtualRobotModeApiAxiosParamCreator = function(configuration) {
|
|
|
9959
9617
|
};
|
|
9960
9618
|
/**
|
|
9961
9619
|
* VirtualRobotModeApi - functional programming interface
|
|
9962
|
-
* @export
|
|
9963
9620
|
*/
|
|
9964
9621
|
const VirtualRobotModeApiFp = function(configuration) {
|
|
9965
9622
|
const localVarAxiosParamCreator = VirtualRobotModeApiAxiosParamCreator(configuration);
|
|
@@ -10004,7 +9661,6 @@ const VirtualRobotModeApiFp = function(configuration) {
|
|
|
10004
9661
|
};
|
|
10005
9662
|
/**
|
|
10006
9663
|
* VirtualRobotModeApi - factory interface
|
|
10007
|
-
* @export
|
|
10008
9664
|
*/
|
|
10009
9665
|
const VirtualRobotModeApiFactory = function(configuration, basePath, axios$1) {
|
|
10010
9666
|
const localVarFp = VirtualRobotModeApiFp(configuration);
|
|
@@ -10031,9 +9687,6 @@ const VirtualRobotModeApiFactory = function(configuration, basePath, axios$1) {
|
|
|
10031
9687
|
};
|
|
10032
9688
|
/**
|
|
10033
9689
|
* VirtualRobotModeApi - object-oriented interface
|
|
10034
|
-
* @export
|
|
10035
|
-
* @class VirtualRobotModeApi
|
|
10036
|
-
* @extends {BaseAPI}
|
|
10037
9690
|
*/
|
|
10038
9691
|
var VirtualRobotModeApi = class extends BaseAPI {
|
|
10039
9692
|
/**
|
|
@@ -10043,7 +9696,6 @@ var VirtualRobotModeApi = class extends BaseAPI {
|
|
|
10043
9696
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
10044
9697
|
* @param {*} [options] Override http request option.
|
|
10045
9698
|
* @throws {RequiredError}
|
|
10046
|
-
* @memberof VirtualRobotModeApi
|
|
10047
9699
|
*/
|
|
10048
9700
|
getCycleTime(cell, controller, options) {
|
|
10049
9701
|
return VirtualRobotModeApiFp(this.configuration).getCycleTime(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10055,7 +9707,6 @@ var VirtualRobotModeApi = class extends BaseAPI {
|
|
|
10055
9707
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
10056
9708
|
* @param {*} [options] Override http request option.
|
|
10057
9709
|
* @throws {RequiredError}
|
|
10058
|
-
* @memberof VirtualRobotModeApi
|
|
10059
9710
|
*/
|
|
10060
9711
|
getEStop(cell, controller, options) {
|
|
10061
9712
|
return VirtualRobotModeApiFp(this.configuration).getEStop(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10067,7 +9718,6 @@ var VirtualRobotModeApi = class extends BaseAPI {
|
|
|
10067
9718
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
10068
9719
|
* @param {*} [options] Override http request option.
|
|
10069
9720
|
* @throws {RequiredError}
|
|
10070
|
-
* @memberof VirtualRobotModeApi
|
|
10071
9721
|
*/
|
|
10072
9722
|
getOperationMode(cell, controller, options) {
|
|
10073
9723
|
return VirtualRobotModeApiFp(this.configuration).getOperationMode(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10079,7 +9729,6 @@ var VirtualRobotModeApi = class extends BaseAPI {
|
|
|
10079
9729
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
10080
9730
|
* @param {*} [options] Override http request option.
|
|
10081
9731
|
* @throws {RequiredError}
|
|
10082
|
-
* @memberof VirtualRobotModeApi
|
|
10083
9732
|
*/
|
|
10084
9733
|
pushEStop(cell, controller, options) {
|
|
10085
9734
|
return VirtualRobotModeApiFp(this.configuration).pushEStop(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10091,7 +9740,6 @@ var VirtualRobotModeApi = class extends BaseAPI {
|
|
|
10091
9740
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
10092
9741
|
* @param {*} [options] Override http request option.
|
|
10093
9742
|
* @throws {RequiredError}
|
|
10094
|
-
* @memberof VirtualRobotModeApi
|
|
10095
9743
|
*/
|
|
10096
9744
|
releaseEStop(cell, controller, options) {
|
|
10097
9745
|
return VirtualRobotModeApiFp(this.configuration).releaseEStop(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10104,22 +9752,17 @@ var VirtualRobotModeApi = class extends BaseAPI {
|
|
|
10104
9752
|
* @param {SetOperationModeModeEnum} mode
|
|
10105
9753
|
* @param {*} [options] Override http request option.
|
|
10106
9754
|
* @throws {RequiredError}
|
|
10107
|
-
* @memberof VirtualRobotModeApi
|
|
10108
9755
|
*/
|
|
10109
9756
|
setOperationMode(cell, controller, mode, options) {
|
|
10110
9757
|
return VirtualRobotModeApiFp(this.configuration).setOperationMode(cell, controller, mode, options).then((request) => request(this.axios, this.basePath));
|
|
10111
9758
|
}
|
|
10112
9759
|
};
|
|
10113
|
-
/**
|
|
10114
|
-
* @export
|
|
10115
|
-
*/
|
|
10116
9760
|
const SetOperationModeModeEnum = {
|
|
10117
9761
|
OperationModeManual: "OPERATION_MODE_MANUAL",
|
|
10118
9762
|
OperationModeAuto: "OPERATION_MODE_AUTO"
|
|
10119
9763
|
};
|
|
10120
9764
|
/**
|
|
10121
9765
|
* VirtualRobotSetupApi - axios parameter creator
|
|
10122
|
-
* @export
|
|
10123
9766
|
*/
|
|
10124
9767
|
const VirtualRobotSetupApiAxiosParamCreator = function(configuration) {
|
|
10125
9768
|
return {
|
|
@@ -10368,7 +10011,6 @@ const VirtualRobotSetupApiAxiosParamCreator = function(configuration) {
|
|
|
10368
10011
|
};
|
|
10369
10012
|
/**
|
|
10370
10013
|
* VirtualRobotSetupApi - functional programming interface
|
|
10371
|
-
* @export
|
|
10372
10014
|
*/
|
|
10373
10015
|
const VirtualRobotSetupApiFp = function(configuration) {
|
|
10374
10016
|
const localVarAxiosParamCreator = VirtualRobotSetupApiAxiosParamCreator(configuration);
|
|
@@ -10425,7 +10067,6 @@ const VirtualRobotSetupApiFp = function(configuration) {
|
|
|
10425
10067
|
};
|
|
10426
10068
|
/**
|
|
10427
10069
|
* VirtualRobotSetupApi - factory interface
|
|
10428
|
-
* @export
|
|
10429
10070
|
*/
|
|
10430
10071
|
const VirtualRobotSetupApiFactory = function(configuration, basePath, axios$1) {
|
|
10431
10072
|
const localVarFp = VirtualRobotSetupApiFp(configuration);
|
|
@@ -10458,9 +10099,6 @@ const VirtualRobotSetupApiFactory = function(configuration, basePath, axios$1) {
|
|
|
10458
10099
|
};
|
|
10459
10100
|
/**
|
|
10460
10101
|
* VirtualRobotSetupApi - object-oriented interface
|
|
10461
|
-
* @export
|
|
10462
|
-
* @class VirtualRobotSetupApi
|
|
10463
|
-
* @extends {BaseAPI}
|
|
10464
10102
|
*/
|
|
10465
10103
|
var VirtualRobotSetupApi = class extends BaseAPI {
|
|
10466
10104
|
/**
|
|
@@ -10471,7 +10109,6 @@ var VirtualRobotSetupApi = class extends BaseAPI {
|
|
|
10471
10109
|
* @param {CoordinateSystem} coordinateSystem
|
|
10472
10110
|
* @param {*} [options] Override http request option.
|
|
10473
10111
|
* @throws {RequiredError}
|
|
10474
|
-
* @memberof VirtualRobotSetupApi
|
|
10475
10112
|
*/
|
|
10476
10113
|
addVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, options) {
|
|
10477
10114
|
return VirtualRobotSetupApiFp(this.configuration).addVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10485,7 +10122,6 @@ var VirtualRobotSetupApi = class extends BaseAPI {
|
|
|
10485
10122
|
* @param {RobotTcp} robotTcp
|
|
10486
10123
|
* @param {*} [options] Override http request option.
|
|
10487
10124
|
* @throws {RequiredError}
|
|
10488
|
-
* @memberof VirtualRobotSetupApi
|
|
10489
10125
|
*/
|
|
10490
10126
|
addVirtualRobotTcp(cell, controller, id, robotTcp, options) {
|
|
10491
10127
|
return VirtualRobotSetupApiFp(this.configuration).addVirtualRobotTcp(cell, controller, id, robotTcp, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10499,7 +10135,6 @@ var VirtualRobotSetupApi = class extends BaseAPI {
|
|
|
10499
10135
|
* @param {boolean} [deleteDependent] If true, all dependent coordinate systems will be deleted as well.
|
|
10500
10136
|
* @param {*} [options] Override http request option.
|
|
10501
10137
|
* @throws {RequiredError}
|
|
10502
|
-
* @memberof VirtualRobotSetupApi
|
|
10503
10138
|
*/
|
|
10504
10139
|
deleteVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options) {
|
|
10505
10140
|
return VirtualRobotSetupApiFp(this.configuration).deleteVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10513,7 +10148,6 @@ var VirtualRobotSetupApi = class extends BaseAPI {
|
|
|
10513
10148
|
* @param {string} tcp The unique identifier of a TCP.
|
|
10514
10149
|
* @param {*} [options] Override http request option.
|
|
10515
10150
|
* @throws {RequiredError}
|
|
10516
|
-
* @memberof VirtualRobotSetupApi
|
|
10517
10151
|
*/
|
|
10518
10152
|
deleteVirtualRobotTcp(cell, controller, id, tcp, options) {
|
|
10519
10153
|
return VirtualRobotSetupApiFp(this.configuration).deleteVirtualRobotTcp(cell, controller, id, tcp, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10526,7 +10160,6 @@ var VirtualRobotSetupApi = class extends BaseAPI {
|
|
|
10526
10160
|
* @param {number} id The controller specific motion-group id.
|
|
10527
10161
|
* @param {*} [options] Override http request option.
|
|
10528
10162
|
* @throws {RequiredError}
|
|
10529
|
-
* @memberof VirtualRobotSetupApi
|
|
10530
10163
|
*/
|
|
10531
10164
|
getVirtualRobotMounting(cell, controller, id, options) {
|
|
10532
10165
|
return VirtualRobotSetupApiFp(this.configuration).getVirtualRobotMounting(cell, controller, id, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10538,7 +10171,6 @@ var VirtualRobotSetupApi = class extends BaseAPI {
|
|
|
10538
10171
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
10539
10172
|
* @param {*} [options] Override http request option.
|
|
10540
10173
|
* @throws {RequiredError}
|
|
10541
|
-
* @memberof VirtualRobotSetupApi
|
|
10542
10174
|
*/
|
|
10543
10175
|
listVirtualRobotCoordinateSystems(cell, controller, options) {
|
|
10544
10176
|
return VirtualRobotSetupApiFp(this.configuration).listVirtualRobotCoordinateSystems(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10551,7 +10183,6 @@ var VirtualRobotSetupApi = class extends BaseAPI {
|
|
|
10551
10183
|
* @param {number} id The controller specific motion-group id.
|
|
10552
10184
|
* @param {*} [options] Override http request option.
|
|
10553
10185
|
* @throws {RequiredError}
|
|
10554
|
-
* @memberof VirtualRobotSetupApi
|
|
10555
10186
|
*/
|
|
10556
10187
|
listVirtualRobotTcps(cell, controller, id, options) {
|
|
10557
10188
|
return VirtualRobotSetupApiFp(this.configuration).listVirtualRobotTcps(cell, controller, id, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10565,7 +10196,6 @@ var VirtualRobotSetupApi = class extends BaseAPI {
|
|
|
10565
10196
|
* @param {CoordinateSystem} coordinateSystem
|
|
10566
10197
|
* @param {*} [options] Override http request option.
|
|
10567
10198
|
* @throws {RequiredError}
|
|
10568
|
-
* @memberof VirtualRobotSetupApi
|
|
10569
10199
|
*/
|
|
10570
10200
|
setVirtualRobotMounting(cell, controller, id, coordinateSystem, options) {
|
|
10571
10201
|
return VirtualRobotSetupApiFp(this.configuration).setVirtualRobotMounting(cell, controller, id, coordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
@@ -10582,7 +10212,6 @@ var Configuration = class {
|
|
|
10582
10212
|
/**
|
|
10583
10213
|
* parameter for apiKey security
|
|
10584
10214
|
* @param name security name
|
|
10585
|
-
* @memberof Configuration
|
|
10586
10215
|
*/
|
|
10587
10216
|
"apiKey",
|
|
10588
10217
|
void 0
|
|
@@ -10591,9 +10220,6 @@ var Configuration = class {
|
|
|
10591
10220
|
this,
|
|
10592
10221
|
/**
|
|
10593
10222
|
* parameter for basic security
|
|
10594
|
-
*
|
|
10595
|
-
* @type {string}
|
|
10596
|
-
* @memberof Configuration
|
|
10597
10223
|
*/
|
|
10598
10224
|
"username",
|
|
10599
10225
|
void 0
|
|
@@ -10602,9 +10228,6 @@ var Configuration = class {
|
|
|
10602
10228
|
this,
|
|
10603
10229
|
/**
|
|
10604
10230
|
* parameter for basic security
|
|
10605
|
-
*
|
|
10606
|
-
* @type {string}
|
|
10607
|
-
* @memberof Configuration
|
|
10608
10231
|
*/
|
|
10609
10232
|
"password",
|
|
10610
10233
|
void 0
|
|
@@ -10615,7 +10238,6 @@ var Configuration = class {
|
|
|
10615
10238
|
* parameter for oauth2 security
|
|
10616
10239
|
* @param name security name
|
|
10617
10240
|
* @param scopes oauth2 scope
|
|
10618
|
-
* @memberof Configuration
|
|
10619
10241
|
*/
|
|
10620
10242
|
"accessToken",
|
|
10621
10243
|
void 0
|
|
@@ -10623,11 +10245,23 @@ var Configuration = class {
|
|
|
10623
10245
|
(0, import_defineProperty.default)(
|
|
10624
10246
|
this,
|
|
10625
10247
|
/**
|
|
10626
|
-
*
|
|
10627
|
-
*
|
|
10628
|
-
* @
|
|
10248
|
+
* parameter for aws4 signature security
|
|
10249
|
+
* @param {Object} AWS4Signature - AWS4 Signature security
|
|
10250
|
+
* @param {string} options.region - aws region
|
|
10251
|
+
* @param {string} options.service - name of the service.
|
|
10252
|
+
* @param {string} credentials.accessKeyId - aws access key id
|
|
10253
|
+
* @param {string} credentials.secretAccessKey - aws access key
|
|
10254
|
+
* @param {string} credentials.sessionToken - aws session token
|
|
10629
10255
|
* @memberof Configuration
|
|
10630
10256
|
*/
|
|
10257
|
+
"awsv4",
|
|
10258
|
+
void 0
|
|
10259
|
+
);
|
|
10260
|
+
(0, import_defineProperty.default)(
|
|
10261
|
+
this,
|
|
10262
|
+
/**
|
|
10263
|
+
* override base path
|
|
10264
|
+
*/
|
|
10631
10265
|
"basePath",
|
|
10632
10266
|
void 0
|
|
10633
10267
|
);
|
|
@@ -10635,9 +10269,6 @@ var Configuration = class {
|
|
|
10635
10269
|
this,
|
|
10636
10270
|
/**
|
|
10637
10271
|
* override server index
|
|
10638
|
-
*
|
|
10639
|
-
* @type {number}
|
|
10640
|
-
* @memberof Configuration
|
|
10641
10272
|
*/
|
|
10642
10273
|
"serverIndex",
|
|
10643
10274
|
void 0
|
|
@@ -10646,9 +10277,6 @@ var Configuration = class {
|
|
|
10646
10277
|
this,
|
|
10647
10278
|
/**
|
|
10648
10279
|
* base options for axios calls
|
|
10649
|
-
*
|
|
10650
|
-
* @type {any}
|
|
10651
|
-
* @memberof Configuration
|
|
10652
10280
|
*/
|
|
10653
10281
|
"baseOptions",
|
|
10654
10282
|
void 0
|
|
@@ -10669,14 +10297,12 @@ var Configuration = class {
|
|
|
10669
10297
|
this.username = param.username;
|
|
10670
10298
|
this.password = param.password;
|
|
10671
10299
|
this.accessToken = param.accessToken;
|
|
10300
|
+
this.awsv4 = param.awsv4;
|
|
10672
10301
|
this.basePath = param.basePath;
|
|
10673
10302
|
this.serverIndex = param.serverIndex;
|
|
10674
10303
|
this.baseOptions = {
|
|
10675
|
-
|
|
10676
|
-
|
|
10677
|
-
"User-Agent": "OpenAPI-Generator/typescript-axios"
|
|
10678
|
-
},
|
|
10679
|
-
...param.baseOptions
|
|
10304
|
+
...param.baseOptions,
|
|
10305
|
+
headers: { ...param.baseOptions?.headers }
|
|
10680
10306
|
};
|
|
10681
10307
|
this.formDataCtor = param.formDataCtor;
|
|
10682
10308
|
}
|
|
@@ -10859,6 +10485,10 @@ exports.SystemApiFactory = SystemApiFactory;
|
|
|
10859
10485
|
exports.SystemApiFp = SystemApiFp;
|
|
10860
10486
|
exports.TriggerType = TriggerType;
|
|
10861
10487
|
exports.UniversalrobotsControllerKindEnum = UniversalrobotsControllerKindEnum;
|
|
10488
|
+
exports.VersionApi = VersionApi;
|
|
10489
|
+
exports.VersionApiAxiosParamCreator = VersionApiAxiosParamCreator;
|
|
10490
|
+
exports.VersionApiFactory = VersionApiFactory;
|
|
10491
|
+
exports.VersionApiFp = VersionApiFp;
|
|
10862
10492
|
exports.VirtualControllerKindEnum = VirtualControllerKindEnum;
|
|
10863
10493
|
exports.VirtualControllerTypes = VirtualControllerTypes;
|
|
10864
10494
|
exports.VirtualRobotApi = VirtualRobotApi;
|