@wandelbots/nova-api 25.7.0-dev.18 → 25.7.0-dev.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/v1/api.d.ts +7 -7
- package/v1/api.js +5 -5
- package/v1/api.ts +7 -7
- package/v1/base.d.ts +1 -1
- package/v1/base.js +1 -1
- package/v1/base.ts +1 -1
- package/v1/common.d.ts +1 -1
- package/v1/common.js +1 -1
- package/v1/common.ts +1 -1
- package/v1/configuration.d.ts +1 -1
- package/v1/configuration.js +1 -1
- package/v1/configuration.ts +1 -1
- package/v1/index.d.ts +1 -1
- package/v1/index.js +1 -1
- package/v1/index.ts +1 -1
- package/v2/api.d.ts +253 -325
- package/v2/api.js +175 -254
- package/v2/api.js.map +1 -1
- package/v2/api.ts +364 -486
package/v2/api.ts
CHANGED
|
@@ -870,37 +870,6 @@ export interface ContainerStorage {
|
|
|
870
870
|
*/
|
|
871
871
|
'capacity': string;
|
|
872
872
|
}
|
|
873
|
-
/**
|
|
874
|
-
* The data type to describe a robot controller.
|
|
875
|
-
* @export
|
|
876
|
-
* @interface ControllerDescription
|
|
877
|
-
*/
|
|
878
|
-
export interface ControllerDescription {
|
|
879
|
-
/**
|
|
880
|
-
*
|
|
881
|
-
* @type {Array<string>}
|
|
882
|
-
* @memberof ControllerDescription
|
|
883
|
-
*/
|
|
884
|
-
'connected_motion_groups': Array<string>;
|
|
885
|
-
/**
|
|
886
|
-
* Can this controller be moved through freedrive (true), or not (false).
|
|
887
|
-
* @type {boolean}
|
|
888
|
-
* @memberof ControllerDescription
|
|
889
|
-
*/
|
|
890
|
-
'supports_freedrive': boolean;
|
|
891
|
-
/**
|
|
892
|
-
* Can this controller be controlled with NOVA (true) or is it only possible to read data (false).
|
|
893
|
-
* @type {boolean}
|
|
894
|
-
* @memberof ControllerDescription
|
|
895
|
-
*/
|
|
896
|
-
'supports_control': boolean;
|
|
897
|
-
/**
|
|
898
|
-
* True if NOVA supports reading safety zone-, tool- and link-geometries for this motion group. Safety zones are used to define areas where the robot should slow down or stop. If false, NOVA can\'t guarantee that the executed motions respect safety zones defined on the controller.
|
|
899
|
-
* @type {boolean}
|
|
900
|
-
* @memberof ControllerDescription
|
|
901
|
-
*/
|
|
902
|
-
'supports_safety_zones': boolean;
|
|
903
|
-
}
|
|
904
873
|
/**
|
|
905
874
|
* Defines a convex hull encapsulating a set of vertices.
|
|
906
875
|
* @export
|
|
@@ -1126,6 +1095,39 @@ export const Direction = {
|
|
|
1126
1095
|
export type Direction = typeof Direction[keyof typeof Direction];
|
|
1127
1096
|
|
|
1128
1097
|
|
|
1098
|
+
/**
|
|
1099
|
+
*
|
|
1100
|
+
* @export
|
|
1101
|
+
* @interface EndOfTrajectory
|
|
1102
|
+
*/
|
|
1103
|
+
export interface EndOfTrajectory {
|
|
1104
|
+
/**
|
|
1105
|
+
*
|
|
1106
|
+
* @type {string}
|
|
1107
|
+
* @memberof EndOfTrajectory
|
|
1108
|
+
*/
|
|
1109
|
+
'kind': EndOfTrajectoryKindEnum;
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
export const EndOfTrajectoryKindEnum = {
|
|
1113
|
+
EndOfTrajectory: 'END_OF_TRAJECTORY'
|
|
1114
|
+
} as const;
|
|
1115
|
+
|
|
1116
|
+
export type EndOfTrajectoryKindEnum = typeof EndOfTrajectoryKindEnum[keyof typeof EndOfTrajectoryKindEnum];
|
|
1117
|
+
|
|
1118
|
+
/**
|
|
1119
|
+
*
|
|
1120
|
+
* @export
|
|
1121
|
+
* @interface Error2
|
|
1122
|
+
*/
|
|
1123
|
+
export interface Error2 {
|
|
1124
|
+
/**
|
|
1125
|
+
*
|
|
1126
|
+
* @type {string}
|
|
1127
|
+
* @memberof Error2
|
|
1128
|
+
*/
|
|
1129
|
+
'message': string;
|
|
1130
|
+
}
|
|
1129
1131
|
/**
|
|
1130
1132
|
* Details about the state of the motion execution. The details are either for a jogging or a trajectory. If NOVA is not controlling this motion group at the moment, this field is omitted.
|
|
1131
1133
|
* @export
|
|
@@ -2013,119 +2015,7 @@ export type JoggingDetailsKindEnum = typeof JoggingDetailsKindEnum[keyof typeof
|
|
|
2013
2015
|
* @type JoggingDetailsState
|
|
2014
2016
|
* @export
|
|
2015
2017
|
*/
|
|
2016
|
-
export type JoggingDetailsState =
|
|
2017
|
-
|
|
2018
|
-
/**
|
|
2019
|
-
*
|
|
2020
|
-
* @export
|
|
2021
|
-
* @interface JoggingPausedByUser
|
|
2022
|
-
*/
|
|
2023
|
-
export interface JoggingPausedByUser {
|
|
2024
|
-
/**
|
|
2025
|
-
*
|
|
2026
|
-
* @type {string}
|
|
2027
|
-
* @memberof JoggingPausedByUser
|
|
2028
|
-
*/
|
|
2029
|
-
'kind': JoggingPausedByUserKindEnum;
|
|
2030
|
-
}
|
|
2031
|
-
|
|
2032
|
-
export const JoggingPausedByUserKindEnum = {
|
|
2033
|
-
PausedByUser: 'PAUSED_BY_USER'
|
|
2034
|
-
} as const;
|
|
2035
|
-
|
|
2036
|
-
export type JoggingPausedByUserKindEnum = typeof JoggingPausedByUserKindEnum[keyof typeof JoggingPausedByUserKindEnum];
|
|
2037
|
-
|
|
2038
|
-
/**
|
|
2039
|
-
*
|
|
2040
|
-
* @export
|
|
2041
|
-
* @interface JoggingPausedNearCollision
|
|
2042
|
-
*/
|
|
2043
|
-
export interface JoggingPausedNearCollision {
|
|
2044
|
-
/**
|
|
2045
|
-
*
|
|
2046
|
-
* @type {string}
|
|
2047
|
-
* @memberof JoggingPausedNearCollision
|
|
2048
|
-
*/
|
|
2049
|
-
'kind': JoggingPausedNearCollisionKindEnum;
|
|
2050
|
-
/**
|
|
2051
|
-
*
|
|
2052
|
-
* @type {string}
|
|
2053
|
-
* @memberof JoggingPausedNearCollision
|
|
2054
|
-
*/
|
|
2055
|
-
'description': string;
|
|
2056
|
-
}
|
|
2057
|
-
|
|
2058
|
-
export const JoggingPausedNearCollisionKindEnum = {
|
|
2059
|
-
PausedNearCollision: 'PAUSED_NEAR_COLLISION'
|
|
2060
|
-
} as const;
|
|
2061
|
-
|
|
2062
|
-
export type JoggingPausedNearCollisionKindEnum = typeof JoggingPausedNearCollisionKindEnum[keyof typeof JoggingPausedNearCollisionKindEnum];
|
|
2063
|
-
|
|
2064
|
-
/**
|
|
2065
|
-
*
|
|
2066
|
-
* @export
|
|
2067
|
-
* @interface JoggingPausedNearJointLimit
|
|
2068
|
-
*/
|
|
2069
|
-
export interface JoggingPausedNearJointLimit {
|
|
2070
|
-
/**
|
|
2071
|
-
*
|
|
2072
|
-
* @type {string}
|
|
2073
|
-
* @memberof JoggingPausedNearJointLimit
|
|
2074
|
-
*/
|
|
2075
|
-
'kind': JoggingPausedNearJointLimitKindEnum;
|
|
2076
|
-
/**
|
|
2077
|
-
*
|
|
2078
|
-
* @type {Array<number>}
|
|
2079
|
-
* @memberof JoggingPausedNearJointLimit
|
|
2080
|
-
*/
|
|
2081
|
-
'joint_indices': Array<number>;
|
|
2082
|
-
}
|
|
2083
|
-
|
|
2084
|
-
export const JoggingPausedNearJointLimitKindEnum = {
|
|
2085
|
-
PausedNearJointLimit: 'PAUSED_NEAR_JOINT_LIMIT'
|
|
2086
|
-
} as const;
|
|
2087
|
-
|
|
2088
|
-
export type JoggingPausedNearJointLimitKindEnum = typeof JoggingPausedNearJointLimitKindEnum[keyof typeof JoggingPausedNearJointLimitKindEnum];
|
|
2089
|
-
|
|
2090
|
-
/**
|
|
2091
|
-
*
|
|
2092
|
-
* @export
|
|
2093
|
-
* @interface JoggingPausedOnIO
|
|
2094
|
-
*/
|
|
2095
|
-
export interface JoggingPausedOnIO {
|
|
2096
|
-
/**
|
|
2097
|
-
*
|
|
2098
|
-
* @type {string}
|
|
2099
|
-
* @memberof JoggingPausedOnIO
|
|
2100
|
-
*/
|
|
2101
|
-
'kind': JoggingPausedOnIOKindEnum;
|
|
2102
|
-
}
|
|
2103
|
-
|
|
2104
|
-
export const JoggingPausedOnIOKindEnum = {
|
|
2105
|
-
PausedOnIo: 'PAUSED_ON_IO'
|
|
2106
|
-
} as const;
|
|
2107
|
-
|
|
2108
|
-
export type JoggingPausedOnIOKindEnum = typeof JoggingPausedOnIOKindEnum[keyof typeof JoggingPausedOnIOKindEnum];
|
|
2109
|
-
|
|
2110
|
-
/**
|
|
2111
|
-
*
|
|
2112
|
-
* @export
|
|
2113
|
-
* @interface JoggingRunning
|
|
2114
|
-
*/
|
|
2115
|
-
export interface JoggingRunning {
|
|
2116
|
-
/**
|
|
2117
|
-
*
|
|
2118
|
-
* @type {string}
|
|
2119
|
-
* @memberof JoggingRunning
|
|
2120
|
-
*/
|
|
2121
|
-
'kind': JoggingRunningKindEnum;
|
|
2122
|
-
}
|
|
2123
|
-
|
|
2124
|
-
export const JoggingRunningKindEnum = {
|
|
2125
|
-
Running: 'RUNNING'
|
|
2126
|
-
} as const;
|
|
2127
|
-
|
|
2128
|
-
export type JoggingRunningKindEnum = typeof JoggingRunningKindEnum[keyof typeof JoggingRunningKindEnum];
|
|
2018
|
+
export type JoggingDetailsState = PausedByUser | PausedNearCollision | PausedNearJointLimit | PausedOnIO | Running;
|
|
2129
2019
|
|
|
2130
2020
|
/**
|
|
2131
2021
|
*
|
|
@@ -3276,6 +3166,118 @@ export interface PauseOnIO {
|
|
|
3276
3166
|
}
|
|
3277
3167
|
|
|
3278
3168
|
|
|
3169
|
+
/**
|
|
3170
|
+
*
|
|
3171
|
+
* @export
|
|
3172
|
+
* @interface PausedByRequest
|
|
3173
|
+
*/
|
|
3174
|
+
export interface PausedByRequest {
|
|
3175
|
+
/**
|
|
3176
|
+
*
|
|
3177
|
+
* @type {string}
|
|
3178
|
+
* @memberof PausedByRequest
|
|
3179
|
+
*/
|
|
3180
|
+
'kind': PausedByRequestKindEnum;
|
|
3181
|
+
}
|
|
3182
|
+
|
|
3183
|
+
export const PausedByRequestKindEnum = {
|
|
3184
|
+
PausedByUser: 'PAUSED_BY_USER'
|
|
3185
|
+
} as const;
|
|
3186
|
+
|
|
3187
|
+
export type PausedByRequestKindEnum = typeof PausedByRequestKindEnum[keyof typeof PausedByRequestKindEnum];
|
|
3188
|
+
|
|
3189
|
+
/**
|
|
3190
|
+
*
|
|
3191
|
+
* @export
|
|
3192
|
+
* @interface PausedByUser
|
|
3193
|
+
*/
|
|
3194
|
+
export interface PausedByUser {
|
|
3195
|
+
/**
|
|
3196
|
+
*
|
|
3197
|
+
* @type {string}
|
|
3198
|
+
* @memberof PausedByUser
|
|
3199
|
+
*/
|
|
3200
|
+
'kind': PausedByUserKindEnum;
|
|
3201
|
+
}
|
|
3202
|
+
|
|
3203
|
+
export const PausedByUserKindEnum = {
|
|
3204
|
+
PausedByUser: 'PAUSED_BY_USER'
|
|
3205
|
+
} as const;
|
|
3206
|
+
|
|
3207
|
+
export type PausedByUserKindEnum = typeof PausedByUserKindEnum[keyof typeof PausedByUserKindEnum];
|
|
3208
|
+
|
|
3209
|
+
/**
|
|
3210
|
+
*
|
|
3211
|
+
* @export
|
|
3212
|
+
* @interface PausedNearCollision
|
|
3213
|
+
*/
|
|
3214
|
+
export interface PausedNearCollision {
|
|
3215
|
+
/**
|
|
3216
|
+
*
|
|
3217
|
+
* @type {string}
|
|
3218
|
+
* @memberof PausedNearCollision
|
|
3219
|
+
*/
|
|
3220
|
+
'kind': PausedNearCollisionKindEnum;
|
|
3221
|
+
/**
|
|
3222
|
+
*
|
|
3223
|
+
* @type {string}
|
|
3224
|
+
* @memberof PausedNearCollision
|
|
3225
|
+
*/
|
|
3226
|
+
'description': string;
|
|
3227
|
+
}
|
|
3228
|
+
|
|
3229
|
+
export const PausedNearCollisionKindEnum = {
|
|
3230
|
+
PausedNearCollision: 'PAUSED_NEAR_COLLISION'
|
|
3231
|
+
} as const;
|
|
3232
|
+
|
|
3233
|
+
export type PausedNearCollisionKindEnum = typeof PausedNearCollisionKindEnum[keyof typeof PausedNearCollisionKindEnum];
|
|
3234
|
+
|
|
3235
|
+
/**
|
|
3236
|
+
*
|
|
3237
|
+
* @export
|
|
3238
|
+
* @interface PausedNearJointLimit
|
|
3239
|
+
*/
|
|
3240
|
+
export interface PausedNearJointLimit {
|
|
3241
|
+
/**
|
|
3242
|
+
*
|
|
3243
|
+
* @type {string}
|
|
3244
|
+
* @memberof PausedNearJointLimit
|
|
3245
|
+
*/
|
|
3246
|
+
'kind': PausedNearJointLimitKindEnum;
|
|
3247
|
+
/**
|
|
3248
|
+
*
|
|
3249
|
+
* @type {Array<number>}
|
|
3250
|
+
* @memberof PausedNearJointLimit
|
|
3251
|
+
*/
|
|
3252
|
+
'joint_indices': Array<number>;
|
|
3253
|
+
}
|
|
3254
|
+
|
|
3255
|
+
export const PausedNearJointLimitKindEnum = {
|
|
3256
|
+
PausedNearJointLimit: 'PAUSED_NEAR_JOINT_LIMIT'
|
|
3257
|
+
} as const;
|
|
3258
|
+
|
|
3259
|
+
export type PausedNearJointLimitKindEnum = typeof PausedNearJointLimitKindEnum[keyof typeof PausedNearJointLimitKindEnum];
|
|
3260
|
+
|
|
3261
|
+
/**
|
|
3262
|
+
*
|
|
3263
|
+
* @export
|
|
3264
|
+
* @interface PausedOnIO
|
|
3265
|
+
*/
|
|
3266
|
+
export interface PausedOnIO {
|
|
3267
|
+
/**
|
|
3268
|
+
*
|
|
3269
|
+
* @type {string}
|
|
3270
|
+
* @memberof PausedOnIO
|
|
3271
|
+
*/
|
|
3272
|
+
'kind': PausedOnIOKindEnum;
|
|
3273
|
+
}
|
|
3274
|
+
|
|
3275
|
+
export const PausedOnIOKindEnum = {
|
|
3276
|
+
PausedOnIo: 'PAUSED_ON_IO'
|
|
3277
|
+
} as const;
|
|
3278
|
+
|
|
3279
|
+
export type PausedOnIOKindEnum = typeof PausedOnIOKindEnum[keyof typeof PausedOnIOKindEnum];
|
|
3280
|
+
|
|
3279
3281
|
/**
|
|
3280
3282
|
*
|
|
3281
3283
|
* @export
|
|
@@ -3564,7 +3566,7 @@ export type ReleaseChannel = typeof ReleaseChannel[keyof typeof ReleaseChannel];
|
|
|
3564
3566
|
*/
|
|
3565
3567
|
export interface RobotController {
|
|
3566
3568
|
/**
|
|
3567
|
-
*
|
|
3569
|
+
* A unique name of the Controller inside the Cell. It must be a valid k8s label name as defined by [RFC 1035](https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#rfc-1035-label-names).
|
|
3568
3570
|
* @type {string}
|
|
3569
3571
|
* @memberof RobotController
|
|
3570
3572
|
*/
|
|
@@ -3771,6 +3773,52 @@ export interface RobotTcpData {
|
|
|
3771
3773
|
}
|
|
3772
3774
|
|
|
3773
3775
|
|
|
3776
|
+
/**
|
|
3777
|
+
*
|
|
3778
|
+
* @export
|
|
3779
|
+
* @interface Running
|
|
3780
|
+
*/
|
|
3781
|
+
export interface Running {
|
|
3782
|
+
/**
|
|
3783
|
+
*
|
|
3784
|
+
* @type {string}
|
|
3785
|
+
* @memberof Running
|
|
3786
|
+
*/
|
|
3787
|
+
'kind': RunningKindEnum;
|
|
3788
|
+
}
|
|
3789
|
+
|
|
3790
|
+
export const RunningKindEnum = {
|
|
3791
|
+
Running: 'RUNNING'
|
|
3792
|
+
} as const;
|
|
3793
|
+
|
|
3794
|
+
export type RunningKindEnum = typeof RunningKindEnum[keyof typeof RunningKindEnum];
|
|
3795
|
+
|
|
3796
|
+
/**
|
|
3797
|
+
*
|
|
3798
|
+
* @export
|
|
3799
|
+
* @interface Running1
|
|
3800
|
+
*/
|
|
3801
|
+
export interface Running1 {
|
|
3802
|
+
/**
|
|
3803
|
+
*
|
|
3804
|
+
* @type {string}
|
|
3805
|
+
* @memberof Running1
|
|
3806
|
+
*/
|
|
3807
|
+
'kind': Running1KindEnum;
|
|
3808
|
+
/**
|
|
3809
|
+
* Remaining time in milliseconds (ms) to reach the end of the motion.
|
|
3810
|
+
* @type {number}
|
|
3811
|
+
* @memberof Running1
|
|
3812
|
+
*/
|
|
3813
|
+
'time_to_end': number;
|
|
3814
|
+
}
|
|
3815
|
+
|
|
3816
|
+
export const Running1KindEnum = {
|
|
3817
|
+
Running: 'RUNNING'
|
|
3818
|
+
} as const;
|
|
3819
|
+
|
|
3820
|
+
export type Running1KindEnum = typeof Running1KindEnum[keyof typeof Running1KindEnum];
|
|
3821
|
+
|
|
3774
3822
|
/**
|
|
3775
3823
|
* Current safety state of the configured robot controller. Operation modes in which the attached motion groups can be moved are: - SAFETY_STATE_NORMAL - SAFETY_STATE_REDUCED All other modes are considered as non-operational.
|
|
3776
3824
|
* @export
|
|
@@ -4341,27 +4389,7 @@ export type TrajectoryDetailsKindEnum = typeof TrajectoryDetailsKindEnum[keyof t
|
|
|
4341
4389
|
* @type TrajectoryDetailsState
|
|
4342
4390
|
* @export
|
|
4343
4391
|
*/
|
|
4344
|
-
export type TrajectoryDetailsState =
|
|
4345
|
-
|
|
4346
|
-
/**
|
|
4347
|
-
*
|
|
4348
|
-
* @export
|
|
4349
|
-
* @interface TrajectoryEnded
|
|
4350
|
-
*/
|
|
4351
|
-
export interface TrajectoryEnded {
|
|
4352
|
-
/**
|
|
4353
|
-
*
|
|
4354
|
-
* @type {string}
|
|
4355
|
-
* @memberof TrajectoryEnded
|
|
4356
|
-
*/
|
|
4357
|
-
'kind': TrajectoryEndedKindEnum;
|
|
4358
|
-
}
|
|
4359
|
-
|
|
4360
|
-
export const TrajectoryEndedKindEnum = {
|
|
4361
|
-
EndOfTrajectory: 'END_OF_TRAJECTORY'
|
|
4362
|
-
} as const;
|
|
4363
|
-
|
|
4364
|
-
export type TrajectoryEndedKindEnum = typeof TrajectoryEndedKindEnum[keyof typeof TrajectoryEndedKindEnum];
|
|
4392
|
+
export type TrajectoryDetailsState = EndOfTrajectory | PausedByRequest | PausedOnIO | Running1 | WaitForIO;
|
|
4365
4393
|
|
|
4366
4394
|
/**
|
|
4367
4395
|
*
|
|
@@ -4389,92 +4417,6 @@ export const TrajectoryIdMessageTypeEnum = {
|
|
|
4389
4417
|
|
|
4390
4418
|
export type TrajectoryIdMessageTypeEnum = typeof TrajectoryIdMessageTypeEnum[keyof typeof TrajectoryIdMessageTypeEnum];
|
|
4391
4419
|
|
|
4392
|
-
/**
|
|
4393
|
-
*
|
|
4394
|
-
* @export
|
|
4395
|
-
* @interface TrajectoryPausedByUser
|
|
4396
|
-
*/
|
|
4397
|
-
export interface TrajectoryPausedByUser {
|
|
4398
|
-
/**
|
|
4399
|
-
*
|
|
4400
|
-
* @type {string}
|
|
4401
|
-
* @memberof TrajectoryPausedByUser
|
|
4402
|
-
*/
|
|
4403
|
-
'kind': TrajectoryPausedByUserKindEnum;
|
|
4404
|
-
}
|
|
4405
|
-
|
|
4406
|
-
export const TrajectoryPausedByUserKindEnum = {
|
|
4407
|
-
PausedByUser: 'PAUSED_BY_USER'
|
|
4408
|
-
} as const;
|
|
4409
|
-
|
|
4410
|
-
export type TrajectoryPausedByUserKindEnum = typeof TrajectoryPausedByUserKindEnum[keyof typeof TrajectoryPausedByUserKindEnum];
|
|
4411
|
-
|
|
4412
|
-
/**
|
|
4413
|
-
*
|
|
4414
|
-
* @export
|
|
4415
|
-
* @interface TrajectoryPausedOnIO
|
|
4416
|
-
*/
|
|
4417
|
-
export interface TrajectoryPausedOnIO {
|
|
4418
|
-
/**
|
|
4419
|
-
*
|
|
4420
|
-
* @type {string}
|
|
4421
|
-
* @memberof TrajectoryPausedOnIO
|
|
4422
|
-
*/
|
|
4423
|
-
'kind': TrajectoryPausedOnIOKindEnum;
|
|
4424
|
-
}
|
|
4425
|
-
|
|
4426
|
-
export const TrajectoryPausedOnIOKindEnum = {
|
|
4427
|
-
PausedOnIo: 'PAUSED_ON_IO'
|
|
4428
|
-
} as const;
|
|
4429
|
-
|
|
4430
|
-
export type TrajectoryPausedOnIOKindEnum = typeof TrajectoryPausedOnIOKindEnum[keyof typeof TrajectoryPausedOnIOKindEnum];
|
|
4431
|
-
|
|
4432
|
-
/**
|
|
4433
|
-
*
|
|
4434
|
-
* @export
|
|
4435
|
-
* @interface TrajectoryRunning
|
|
4436
|
-
*/
|
|
4437
|
-
export interface TrajectoryRunning {
|
|
4438
|
-
/**
|
|
4439
|
-
*
|
|
4440
|
-
* @type {string}
|
|
4441
|
-
* @memberof TrajectoryRunning
|
|
4442
|
-
*/
|
|
4443
|
-
'kind': TrajectoryRunningKindEnum;
|
|
4444
|
-
/**
|
|
4445
|
-
* Remaining time in milliseconds (ms) to reach the end of the motion.
|
|
4446
|
-
* @type {number}
|
|
4447
|
-
* @memberof TrajectoryRunning
|
|
4448
|
-
*/
|
|
4449
|
-
'time_to_end': number;
|
|
4450
|
-
}
|
|
4451
|
-
|
|
4452
|
-
export const TrajectoryRunningKindEnum = {
|
|
4453
|
-
Running: 'RUNNING'
|
|
4454
|
-
} as const;
|
|
4455
|
-
|
|
4456
|
-
export type TrajectoryRunningKindEnum = typeof TrajectoryRunningKindEnum[keyof typeof TrajectoryRunningKindEnum];
|
|
4457
|
-
|
|
4458
|
-
/**
|
|
4459
|
-
*
|
|
4460
|
-
* @export
|
|
4461
|
-
* @interface TrajectoryWaitForIO
|
|
4462
|
-
*/
|
|
4463
|
-
export interface TrajectoryWaitForIO {
|
|
4464
|
-
/**
|
|
4465
|
-
*
|
|
4466
|
-
* @type {string}
|
|
4467
|
-
* @memberof TrajectoryWaitForIO
|
|
4468
|
-
*/
|
|
4469
|
-
'kind': TrajectoryWaitForIOKindEnum;
|
|
4470
|
-
}
|
|
4471
|
-
|
|
4472
|
-
export const TrajectoryWaitForIOKindEnum = {
|
|
4473
|
-
WaitForIo: 'WAIT_FOR_IO'
|
|
4474
|
-
} as const;
|
|
4475
|
-
|
|
4476
|
-
export type TrajectoryWaitForIOKindEnum = typeof TrajectoryWaitForIOKindEnum[keyof typeof TrajectoryWaitForIOKindEnum];
|
|
4477
|
-
|
|
4478
4420
|
/**
|
|
4479
4421
|
* The unit of input/output value.
|
|
4480
4422
|
* @export
|
|
@@ -4570,7 +4512,7 @@ export interface ValidationError {
|
|
|
4570
4512
|
export type ValidationErrorLocInner = number | string;
|
|
4571
4513
|
|
|
4572
4514
|
/**
|
|
4573
|
-
* The configuration of a virtual robot controller has to contain the manufacturer string, an optional joint position string array and either a
|
|
4515
|
+
* The configuration of a virtual robot controller has to contain the manufacturer string, an optional joint position string array and either a type or the full JSON configuration. The JSON config of a physical controller can be obtained via `/cells/{cell}/controllers/{controller}/virtual-robot-configuration`
|
|
4574
4516
|
* @export
|
|
4575
4517
|
* @interface VirtualController
|
|
4576
4518
|
*/
|
|
@@ -4594,7 +4536,7 @@ export interface VirtualController {
|
|
|
4594
4536
|
*/
|
|
4595
4537
|
'type'?: VirtualControllerTypes;
|
|
4596
4538
|
/**
|
|
4597
|
-
*
|
|
4539
|
+
*
|
|
4598
4540
|
* @type {string}
|
|
4599
4541
|
* @memberof VirtualController
|
|
4600
4542
|
*/
|
|
@@ -4751,6 +4693,26 @@ export interface VirtualRobotConfiguration {
|
|
|
4751
4693
|
*/
|
|
4752
4694
|
'content': string;
|
|
4753
4695
|
}
|
|
4696
|
+
/**
|
|
4697
|
+
*
|
|
4698
|
+
* @export
|
|
4699
|
+
* @interface WaitForIO
|
|
4700
|
+
*/
|
|
4701
|
+
export interface WaitForIO {
|
|
4702
|
+
/**
|
|
4703
|
+
*
|
|
4704
|
+
* @type {string}
|
|
4705
|
+
* @memberof WaitForIO
|
|
4706
|
+
*/
|
|
4707
|
+
'kind': WaitForIOKindEnum;
|
|
4708
|
+
}
|
|
4709
|
+
|
|
4710
|
+
export const WaitForIOKindEnum = {
|
|
4711
|
+
WaitForIo: 'WAIT_FOR_IO'
|
|
4712
|
+
} as const;
|
|
4713
|
+
|
|
4714
|
+
export type WaitForIOKindEnum = typeof WaitForIOKindEnum[keyof typeof WaitForIOKindEnum];
|
|
4715
|
+
|
|
4754
4716
|
/**
|
|
4755
4717
|
* The value to compare with the current value of the input/output.
|
|
4756
4718
|
* @export
|
|
@@ -6135,52 +6097,6 @@ export const ControllerApiAxiosParamCreator = function (configuration?: Configur
|
|
|
6135
6097
|
|
|
6136
6098
|
|
|
6137
6099
|
|
|
6138
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6139
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6140
|
-
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
6141
|
-
|
|
6142
|
-
return {
|
|
6143
|
-
url: toPathString(localVarUrlObj),
|
|
6144
|
-
options: localVarRequestOptions,
|
|
6145
|
-
};
|
|
6146
|
-
},
|
|
6147
|
-
/**
|
|
6148
|
-
* Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](getMotionGroupDescription) to get more information about the motion group.
|
|
6149
|
-
* @summary Description
|
|
6150
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6151
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
6152
|
-
* @param {*} [options] Override http request option.
|
|
6153
|
-
* @throws {RequiredError}
|
|
6154
|
-
*/
|
|
6155
|
-
getControllerDescription: async (cell: string, controller: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
6156
|
-
// verify required parameter 'cell' is not null or undefined
|
|
6157
|
-
assertParamExists('getControllerDescription', 'cell', cell)
|
|
6158
|
-
// verify required parameter 'controller' is not null or undefined
|
|
6159
|
-
assertParamExists('getControllerDescription', 'controller', controller)
|
|
6160
|
-
const localVarPath = `/cells/{cell}/controllers/{controller}/description`
|
|
6161
|
-
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
6162
|
-
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
|
|
6163
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6164
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
6165
|
-
let baseOptions;
|
|
6166
|
-
if (configuration) {
|
|
6167
|
-
baseOptions = configuration.baseOptions;
|
|
6168
|
-
}
|
|
6169
|
-
|
|
6170
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
6171
|
-
const localVarHeaderParameter = {} as any;
|
|
6172
|
-
const localVarQueryParameter = {} as any;
|
|
6173
|
-
|
|
6174
|
-
// authentication BasicAuth required
|
|
6175
|
-
// http basic authentication required
|
|
6176
|
-
setBasicAuthToObject(localVarRequestOptions, configuration)
|
|
6177
|
-
|
|
6178
|
-
// authentication BearerAuth required
|
|
6179
|
-
// http bearer authentication required
|
|
6180
|
-
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
6181
|
-
|
|
6182
|
-
|
|
6183
|
-
|
|
6184
6100
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6185
6101
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6186
6102
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -6384,18 +6300,18 @@ export const ControllerApiAxiosParamCreator = function (configuration?: Configur
|
|
|
6384
6300
|
};
|
|
6385
6301
|
},
|
|
6386
6302
|
/**
|
|
6387
|
-
* Receive
|
|
6388
|
-
* @summary Virtual
|
|
6303
|
+
* Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **NOTE** > > The output generated by this endpoint can be too large for the site to handle, and may produce an error or incorrect output. > Use `curl` in combination with `> output.json` to capture the output, or use an API client like Postman.
|
|
6304
|
+
* @summary Virtual Robot Configuration
|
|
6389
6305
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6390
6306
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
6391
6307
|
* @param {*} [options] Override http request option.
|
|
6392
6308
|
* @throws {RequiredError}
|
|
6393
6309
|
*/
|
|
6394
|
-
|
|
6310
|
+
getVirtualRobotConfiguration: async (cell: string, controller: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
6395
6311
|
// verify required parameter 'cell' is not null or undefined
|
|
6396
|
-
assertParamExists('
|
|
6312
|
+
assertParamExists('getVirtualRobotConfiguration', 'cell', cell)
|
|
6397
6313
|
// verify required parameter 'controller' is not null or undefined
|
|
6398
|
-
assertParamExists('
|
|
6314
|
+
assertParamExists('getVirtualRobotConfiguration', 'controller', controller)
|
|
6399
6315
|
const localVarPath = `/cells/{cell}/controllers/{controller}/virtual-robot-configuration`
|
|
6400
6316
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
6401
6317
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
|
|
@@ -6788,20 +6704,6 @@ export const ControllerApiFp = function(configuration?: Configuration) {
|
|
|
6788
6704
|
const localVarOperationServerBasePath = operationServerMap['ControllerApi.deleteRobotController']?.[localVarOperationServerIndex]?.url;
|
|
6789
6705
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6790
6706
|
},
|
|
6791
|
-
/**
|
|
6792
|
-
* Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](getMotionGroupDescription) to get more information about the motion group.
|
|
6793
|
-
* @summary Description
|
|
6794
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6795
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
6796
|
-
* @param {*} [options] Override http request option.
|
|
6797
|
-
* @throws {RequiredError}
|
|
6798
|
-
*/
|
|
6799
|
-
async getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ControllerDescription>> {
|
|
6800
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getControllerDescription(cell, controller, options);
|
|
6801
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6802
|
-
const localVarOperationServerBasePath = operationServerMap['ControllerApi.getControllerDescription']?.[localVarOperationServerIndex]?.url;
|
|
6803
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6804
|
-
},
|
|
6805
6707
|
/**
|
|
6806
6708
|
* Request a coordinate system specification for a given identifier. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with \"On\" + the unique identifier of the robot controller.
|
|
6807
6709
|
* @summary Coordinate System
|
|
@@ -6861,17 +6763,17 @@ export const ControllerApiFp = function(configuration?: Configuration) {
|
|
|
6861
6763
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6862
6764
|
},
|
|
6863
6765
|
/**
|
|
6864
|
-
* Receive
|
|
6865
|
-
* @summary Virtual
|
|
6766
|
+
* Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **NOTE** > > The output generated by this endpoint can be too large for the site to handle, and may produce an error or incorrect output. > Use `curl` in combination with `> output.json` to capture the output, or use an API client like Postman.
|
|
6767
|
+
* @summary Virtual Robot Configuration
|
|
6866
6768
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6867
6769
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
6868
6770
|
* @param {*} [options] Override http request option.
|
|
6869
6771
|
* @throws {RequiredError}
|
|
6870
6772
|
*/
|
|
6871
|
-
async
|
|
6872
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
6773
|
+
async getVirtualRobotConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VirtualRobotConfiguration>> {
|
|
6774
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualRobotConfiguration(cell, controller, options);
|
|
6873
6775
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6874
|
-
const localVarOperationServerBasePath = operationServerMap['ControllerApi.
|
|
6776
|
+
const localVarOperationServerBasePath = operationServerMap['ControllerApi.getVirtualRobotConfiguration']?.[localVarOperationServerIndex]?.url;
|
|
6875
6777
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6876
6778
|
},
|
|
6877
6779
|
/**
|
|
@@ -7008,17 +6910,6 @@ export const ControllerApiFactory = function (configuration?: Configuration, bas
|
|
|
7008
6910
|
deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
7009
6911
|
return localVarFp.deleteRobotController(cell, controller, completionTimeout, options).then((request) => request(axios, basePath));
|
|
7010
6912
|
},
|
|
7011
|
-
/**
|
|
7012
|
-
* Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](getMotionGroupDescription) to get more information about the motion group.
|
|
7013
|
-
* @summary Description
|
|
7014
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7015
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7016
|
-
* @param {*} [options] Override http request option.
|
|
7017
|
-
* @throws {RequiredError}
|
|
7018
|
-
*/
|
|
7019
|
-
getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<ControllerDescription> {
|
|
7020
|
-
return localVarFp.getControllerDescription(cell, controller, options).then((request) => request(axios, basePath));
|
|
7021
|
-
},
|
|
7022
6913
|
/**
|
|
7023
6914
|
* Request a coordinate system specification for a given identifier. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with \"On\" + the unique identifier of the robot controller.
|
|
7024
6915
|
* @summary Coordinate System
|
|
@@ -7066,15 +6957,15 @@ export const ControllerApiFactory = function (configuration?: Configuration, bas
|
|
|
7066
6957
|
return localVarFp.getRobotController(cell, controller, options).then((request) => request(axios, basePath));
|
|
7067
6958
|
},
|
|
7068
6959
|
/**
|
|
7069
|
-
* Receive
|
|
7070
|
-
* @summary Virtual
|
|
6960
|
+
* Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **NOTE** > > The output generated by this endpoint can be too large for the site to handle, and may produce an error or incorrect output. > Use `curl` in combination with `> output.json` to capture the output, or use an API client like Postman.
|
|
6961
|
+
* @summary Virtual Robot Configuration
|
|
7071
6962
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7072
6963
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7073
6964
|
* @param {*} [options] Override http request option.
|
|
7074
6965
|
* @throws {RequiredError}
|
|
7075
6966
|
*/
|
|
7076
|
-
|
|
7077
|
-
return localVarFp.
|
|
6967
|
+
getVirtualRobotConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<VirtualRobotConfiguration> {
|
|
6968
|
+
return localVarFp.getVirtualRobotConfiguration(cell, controller, options).then((request) => request(axios, basePath));
|
|
7078
6969
|
},
|
|
7079
6970
|
/**
|
|
7080
6971
|
* Lists all specifications of coordinate systems from robot controllers. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with \"On\" + the unique identifier of the robot controller.
|
|
@@ -7198,19 +7089,6 @@ export class ControllerApi extends BaseAPI {
|
|
|
7198
7089
|
return ControllerApiFp(this.configuration).deleteRobotController(cell, controller, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
7199
7090
|
}
|
|
7200
7091
|
|
|
7201
|
-
/**
|
|
7202
|
-
* Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](getMotionGroupDescription) to get more information about the motion group.
|
|
7203
|
-
* @summary Description
|
|
7204
|
-
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7205
|
-
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7206
|
-
* @param {*} [options] Override http request option.
|
|
7207
|
-
* @throws {RequiredError}
|
|
7208
|
-
* @memberof ControllerApi
|
|
7209
|
-
*/
|
|
7210
|
-
public getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig) {
|
|
7211
|
-
return ControllerApiFp(this.configuration).getControllerDescription(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
7212
|
-
}
|
|
7213
|
-
|
|
7214
7092
|
/**
|
|
7215
7093
|
* Request a coordinate system specification for a given identifier. Use parameter orientation_type to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter orientation_type is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with \"On\" + the unique identifier of the robot controller.
|
|
7216
7094
|
* @summary Coordinate System
|
|
@@ -7266,16 +7144,16 @@ export class ControllerApi extends BaseAPI {
|
|
|
7266
7144
|
}
|
|
7267
7145
|
|
|
7268
7146
|
/**
|
|
7269
|
-
* Receive
|
|
7270
|
-
* @summary Virtual
|
|
7147
|
+
* Receive the configuration for a virtual robot controller. Used to configure a virtual robot controller via [addRobotController](addRobotController). > **NOTE** > > The output generated by this endpoint can be too large for the site to handle, and may produce an error or incorrect output. > Use `curl` in combination with `> output.json` to capture the output, or use an API client like Postman.
|
|
7148
|
+
* @summary Virtual Robot Configuration
|
|
7271
7149
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7272
7150
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7273
7151
|
* @param {*} [options] Override http request option.
|
|
7274
7152
|
* @throws {RequiredError}
|
|
7275
7153
|
* @memberof ControllerApi
|
|
7276
7154
|
*/
|
|
7277
|
-
public
|
|
7278
|
-
return ControllerApiFp(this.configuration).
|
|
7155
|
+
public getVirtualRobotConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig) {
|
|
7156
|
+
return ControllerApiFp(this.configuration).getVirtualRobotConfiguration(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
7279
7157
|
}
|
|
7280
7158
|
|
|
7281
7159
|
/**
|
|
@@ -12476,15 +12354,15 @@ export const VirtualControllerApiAxiosParamCreator = function (configuration?: C
|
|
|
12476
12354
|
* @param {*} [options] Override http request option.
|
|
12477
12355
|
* @throws {RequiredError}
|
|
12478
12356
|
*/
|
|
12479
|
-
|
|
12357
|
+
addVirtualRobotCoordinateSystem: async (cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
12480
12358
|
// verify required parameter 'cell' is not null or undefined
|
|
12481
|
-
assertParamExists('
|
|
12359
|
+
assertParamExists('addVirtualRobotCoordinateSystem', 'cell', cell)
|
|
12482
12360
|
// verify required parameter 'controller' is not null or undefined
|
|
12483
|
-
assertParamExists('
|
|
12361
|
+
assertParamExists('addVirtualRobotCoordinateSystem', 'controller', controller)
|
|
12484
12362
|
// verify required parameter 'coordinateSystem' is not null or undefined
|
|
12485
|
-
assertParamExists('
|
|
12363
|
+
assertParamExists('addVirtualRobotCoordinateSystem', 'coordinateSystem', coordinateSystem)
|
|
12486
12364
|
// verify required parameter 'coordinateSystemData' is not null or undefined
|
|
12487
|
-
assertParamExists('
|
|
12365
|
+
assertParamExists('addVirtualRobotCoordinateSystem', 'coordinateSystemData', coordinateSystemData)
|
|
12488
12366
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/coordinate-systems/{coordinate-system}`
|
|
12489
12367
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
12490
12368
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)))
|
|
@@ -12533,17 +12411,17 @@ export const VirtualControllerApiAxiosParamCreator = function (configuration?: C
|
|
|
12533
12411
|
* @param {*} [options] Override http request option.
|
|
12534
12412
|
* @throws {RequiredError}
|
|
12535
12413
|
*/
|
|
12536
|
-
|
|
12414
|
+
addVirtualRobotTcp: async (cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
12537
12415
|
// verify required parameter 'cell' is not null or undefined
|
|
12538
|
-
assertParamExists('
|
|
12416
|
+
assertParamExists('addVirtualRobotTcp', 'cell', cell)
|
|
12539
12417
|
// verify required parameter 'controller' is not null or undefined
|
|
12540
|
-
assertParamExists('
|
|
12418
|
+
assertParamExists('addVirtualRobotTcp', 'controller', controller)
|
|
12541
12419
|
// verify required parameter 'motionGroup' is not null or undefined
|
|
12542
|
-
assertParamExists('
|
|
12420
|
+
assertParamExists('addVirtualRobotTcp', 'motionGroup', motionGroup)
|
|
12543
12421
|
// verify required parameter 'tcp' is not null or undefined
|
|
12544
|
-
assertParamExists('
|
|
12422
|
+
assertParamExists('addVirtualRobotTcp', 'tcp', tcp)
|
|
12545
12423
|
// verify required parameter 'robotTcpData' is not null or undefined
|
|
12546
|
-
assertParamExists('
|
|
12424
|
+
assertParamExists('addVirtualRobotTcp', 'robotTcpData', robotTcpData)
|
|
12547
12425
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/motion-groups/{motion-group}/tcps/{tcp}`
|
|
12548
12426
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
12549
12427
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)))
|
|
@@ -12592,13 +12470,13 @@ export const VirtualControllerApiAxiosParamCreator = function (configuration?: C
|
|
|
12592
12470
|
* @param {*} [options] Override http request option.
|
|
12593
12471
|
* @throws {RequiredError}
|
|
12594
12472
|
*/
|
|
12595
|
-
|
|
12473
|
+
deleteVirtualRobotCoordinateSystem: async (cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
12596
12474
|
// verify required parameter 'cell' is not null or undefined
|
|
12597
|
-
assertParamExists('
|
|
12475
|
+
assertParamExists('deleteVirtualRobotCoordinateSystem', 'cell', cell)
|
|
12598
12476
|
// verify required parameter 'controller' is not null or undefined
|
|
12599
|
-
assertParamExists('
|
|
12477
|
+
assertParamExists('deleteVirtualRobotCoordinateSystem', 'controller', controller)
|
|
12600
12478
|
// verify required parameter 'coordinateSystem' is not null or undefined
|
|
12601
|
-
assertParamExists('
|
|
12479
|
+
assertParamExists('deleteVirtualRobotCoordinateSystem', 'coordinateSystem', coordinateSystem)
|
|
12602
12480
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/coordinate-systems/{coordinate-system}`
|
|
12603
12481
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
12604
12482
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)))
|
|
@@ -12647,15 +12525,15 @@ export const VirtualControllerApiAxiosParamCreator = function (configuration?: C
|
|
|
12647
12525
|
* @param {*} [options] Override http request option.
|
|
12648
12526
|
* @throws {RequiredError}
|
|
12649
12527
|
*/
|
|
12650
|
-
|
|
12528
|
+
deleteVirtualRobotTcp: async (cell: string, controller: string, motionGroup: string, tcp: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
12651
12529
|
// verify required parameter 'cell' is not null or undefined
|
|
12652
|
-
assertParamExists('
|
|
12530
|
+
assertParamExists('deleteVirtualRobotTcp', 'cell', cell)
|
|
12653
12531
|
// verify required parameter 'controller' is not null or undefined
|
|
12654
|
-
assertParamExists('
|
|
12532
|
+
assertParamExists('deleteVirtualRobotTcp', 'controller', controller)
|
|
12655
12533
|
// verify required parameter 'motionGroup' is not null or undefined
|
|
12656
|
-
assertParamExists('
|
|
12534
|
+
assertParamExists('deleteVirtualRobotTcp', 'motionGroup', motionGroup)
|
|
12657
12535
|
// verify required parameter 'tcp' is not null or undefined
|
|
12658
|
-
assertParamExists('
|
|
12536
|
+
assertParamExists('deleteVirtualRobotTcp', 'tcp', tcp)
|
|
12659
12537
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/motion-groups/{motion-group}/tcps/{tcp}`
|
|
12660
12538
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
12661
12539
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)))
|
|
@@ -12888,13 +12766,13 @@ export const VirtualControllerApiAxiosParamCreator = function (configuration?: C
|
|
|
12888
12766
|
* @param {*} [options] Override http request option.
|
|
12889
12767
|
* @throws {RequiredError}
|
|
12890
12768
|
*/
|
|
12891
|
-
|
|
12769
|
+
getVirtualRobotMounting: async (cell: string, controller: string, motionGroup: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
12892
12770
|
// verify required parameter 'cell' is not null or undefined
|
|
12893
|
-
assertParamExists('
|
|
12771
|
+
assertParamExists('getVirtualRobotMounting', 'cell', cell)
|
|
12894
12772
|
// verify required parameter 'controller' is not null or undefined
|
|
12895
|
-
assertParamExists('
|
|
12773
|
+
assertParamExists('getVirtualRobotMounting', 'controller', controller)
|
|
12896
12774
|
// verify required parameter 'motionGroup' is not null or undefined
|
|
12897
|
-
assertParamExists('
|
|
12775
|
+
assertParamExists('getVirtualRobotMounting', 'motionGroup', motionGroup)
|
|
12898
12776
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/motion-groups/{motion-group}/mounting`
|
|
12899
12777
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
12900
12778
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)))
|
|
@@ -12937,11 +12815,11 @@ export const VirtualControllerApiAxiosParamCreator = function (configuration?: C
|
|
|
12937
12815
|
* @param {*} [options] Override http request option.
|
|
12938
12816
|
* @throws {RequiredError}
|
|
12939
12817
|
*/
|
|
12940
|
-
|
|
12818
|
+
listVirtualRobotCoordinateSystems: async (cell: string, controller: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
12941
12819
|
// verify required parameter 'cell' is not null or undefined
|
|
12942
|
-
assertParamExists('
|
|
12820
|
+
assertParamExists('listVirtualRobotCoordinateSystems', 'cell', cell)
|
|
12943
12821
|
// verify required parameter 'controller' is not null or undefined
|
|
12944
|
-
assertParamExists('
|
|
12822
|
+
assertParamExists('listVirtualRobotCoordinateSystems', 'controller', controller)
|
|
12945
12823
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/coordinate-systems`
|
|
12946
12824
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
12947
12825
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
|
|
@@ -12984,13 +12862,13 @@ export const VirtualControllerApiAxiosParamCreator = function (configuration?: C
|
|
|
12984
12862
|
* @param {*} [options] Override http request option.
|
|
12985
12863
|
* @throws {RequiredError}
|
|
12986
12864
|
*/
|
|
12987
|
-
|
|
12865
|
+
listVirtualRobotTcps: async (cell: string, controller: string, motionGroup: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
12988
12866
|
// verify required parameter 'cell' is not null or undefined
|
|
12989
|
-
assertParamExists('
|
|
12867
|
+
assertParamExists('listVirtualRobotTcps', 'cell', cell)
|
|
12990
12868
|
// verify required parameter 'controller' is not null or undefined
|
|
12991
|
-
assertParamExists('
|
|
12869
|
+
assertParamExists('listVirtualRobotTcps', 'controller', controller)
|
|
12992
12870
|
// verify required parameter 'motionGroup' is not null or undefined
|
|
12993
|
-
assertParamExists('
|
|
12871
|
+
assertParamExists('listVirtualRobotTcps', 'motionGroup', motionGroup)
|
|
12994
12872
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/motion-groups/{motion-group}/tcps`
|
|
12995
12873
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
12996
12874
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)))
|
|
@@ -13195,15 +13073,15 @@ export const VirtualControllerApiAxiosParamCreator = function (configuration?: C
|
|
|
13195
13073
|
* @param {*} [options] Override http request option.
|
|
13196
13074
|
* @throws {RequiredError}
|
|
13197
13075
|
*/
|
|
13198
|
-
|
|
13076
|
+
setVirtualRobotMounting: async (cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
13199
13077
|
// verify required parameter 'cell' is not null or undefined
|
|
13200
|
-
assertParamExists('
|
|
13078
|
+
assertParamExists('setVirtualRobotMounting', 'cell', cell)
|
|
13201
13079
|
// verify required parameter 'controller' is not null or undefined
|
|
13202
|
-
assertParamExists('
|
|
13080
|
+
assertParamExists('setVirtualRobotMounting', 'controller', controller)
|
|
13203
13081
|
// verify required parameter 'motionGroup' is not null or undefined
|
|
13204
|
-
assertParamExists('
|
|
13082
|
+
assertParamExists('setVirtualRobotMounting', 'motionGroup', motionGroup)
|
|
13205
13083
|
// verify required parameter 'coordinateSystem' is not null or undefined
|
|
13206
|
-
assertParamExists('
|
|
13084
|
+
assertParamExists('setVirtualRobotMounting', 'coordinateSystem', coordinateSystem)
|
|
13207
13085
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/motion-groups/{motion-group}/mounting`
|
|
13208
13086
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
13209
13087
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)))
|
|
@@ -13261,10 +13139,10 @@ export const VirtualControllerApiFp = function(configuration?: Configuration) {
|
|
|
13261
13139
|
* @param {*} [options] Override http request option.
|
|
13262
13140
|
* @throws {RequiredError}
|
|
13263
13141
|
*/
|
|
13264
|
-
async
|
|
13265
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
13142
|
+
async addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
13143
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options);
|
|
13266
13144
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
13267
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.
|
|
13145
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.addVirtualRobotCoordinateSystem']?.[localVarOperationServerIndex]?.url;
|
|
13268
13146
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
13269
13147
|
},
|
|
13270
13148
|
/**
|
|
@@ -13278,10 +13156,10 @@ export const VirtualControllerApiFp = function(configuration?: Configuration) {
|
|
|
13278
13156
|
* @param {*} [options] Override http request option.
|
|
13279
13157
|
* @throws {RequiredError}
|
|
13280
13158
|
*/
|
|
13281
|
-
async
|
|
13282
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
13159
|
+
async addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
13160
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualRobotTcp(cell, controller, motionGroup, tcp, robotTcpData, options);
|
|
13283
13161
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
13284
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.
|
|
13162
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.addVirtualRobotTcp']?.[localVarOperationServerIndex]?.url;
|
|
13285
13163
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
13286
13164
|
},
|
|
13287
13165
|
/**
|
|
@@ -13294,10 +13172,10 @@ export const VirtualControllerApiFp = function(configuration?: Configuration) {
|
|
|
13294
13172
|
* @param {*} [options] Override http request option.
|
|
13295
13173
|
* @throws {RequiredError}
|
|
13296
13174
|
*/
|
|
13297
|
-
async
|
|
13298
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
13175
|
+
async deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
13176
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options);
|
|
13299
13177
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
13300
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.
|
|
13178
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.deleteVirtualRobotCoordinateSystem']?.[localVarOperationServerIndex]?.url;
|
|
13301
13179
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
13302
13180
|
},
|
|
13303
13181
|
/**
|
|
@@ -13310,10 +13188,10 @@ export const VirtualControllerApiFp = function(configuration?: Configuration) {
|
|
|
13310
13188
|
* @param {*} [options] Override http request option.
|
|
13311
13189
|
* @throws {RequiredError}
|
|
13312
13190
|
*/
|
|
13313
|
-
async
|
|
13314
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
13191
|
+
async deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
13192
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualRobotTcp(cell, controller, motionGroup, tcp, options);
|
|
13315
13193
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
13316
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.
|
|
13194
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.deleteVirtualRobotTcp']?.[localVarOperationServerIndex]?.url;
|
|
13317
13195
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
13318
13196
|
},
|
|
13319
13197
|
/**
|
|
@@ -13382,10 +13260,10 @@ export const VirtualControllerApiFp = function(configuration?: Configuration) {
|
|
|
13382
13260
|
* @param {*} [options] Override http request option.
|
|
13383
13261
|
* @throws {RequiredError}
|
|
13384
13262
|
*/
|
|
13385
|
-
async
|
|
13386
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
13263
|
+
async getVirtualRobotMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CoordinateSystem>> {
|
|
13264
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualRobotMounting(cell, controller, motionGroup, options);
|
|
13387
13265
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
13388
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.
|
|
13266
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.getVirtualRobotMounting']?.[localVarOperationServerIndex]?.url;
|
|
13389
13267
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
13390
13268
|
},
|
|
13391
13269
|
/**
|
|
@@ -13396,10 +13274,10 @@ export const VirtualControllerApiFp = function(configuration?: Configuration) {
|
|
|
13396
13274
|
* @param {*} [options] Override http request option.
|
|
13397
13275
|
* @throws {RequiredError}
|
|
13398
13276
|
*/
|
|
13399
|
-
async
|
|
13400
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
13277
|
+
async listVirtualRobotCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CoordinateSystem>>> {
|
|
13278
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualRobotCoordinateSystems(cell, controller, options);
|
|
13401
13279
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
13402
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.
|
|
13280
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.listVirtualRobotCoordinateSystems']?.[localVarOperationServerIndex]?.url;
|
|
13403
13281
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
13404
13282
|
},
|
|
13405
13283
|
/**
|
|
@@ -13411,10 +13289,10 @@ export const VirtualControllerApiFp = function(configuration?: Configuration) {
|
|
|
13411
13289
|
* @param {*} [options] Override http request option.
|
|
13412
13290
|
* @throws {RequiredError}
|
|
13413
13291
|
*/
|
|
13414
|
-
async
|
|
13415
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
13292
|
+
async listVirtualRobotTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RobotTcp>>> {
|
|
13293
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualRobotTcps(cell, controller, motionGroup, options);
|
|
13416
13294
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
13417
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.
|
|
13295
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.listVirtualRobotTcps']?.[localVarOperationServerIndex]?.url;
|
|
13418
13296
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
13419
13297
|
},
|
|
13420
13298
|
/**
|
|
@@ -13473,10 +13351,10 @@ export const VirtualControllerApiFp = function(configuration?: Configuration) {
|
|
|
13473
13351
|
* @param {*} [options] Override http request option.
|
|
13474
13352
|
* @throws {RequiredError}
|
|
13475
13353
|
*/
|
|
13476
|
-
async
|
|
13477
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
13354
|
+
async setVirtualRobotMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CoordinateSystem>> {
|
|
13355
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualRobotMounting(cell, controller, motionGroup, coordinateSystem, options);
|
|
13478
13356
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
13479
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.
|
|
13357
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerApi.setVirtualRobotMounting']?.[localVarOperationServerIndex]?.url;
|
|
13480
13358
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
13481
13359
|
},
|
|
13482
13360
|
}
|
|
@@ -13499,8 +13377,8 @@ export const VirtualControllerApiFactory = function (configuration?: Configurati
|
|
|
13499
13377
|
* @param {*} [options] Override http request option.
|
|
13500
13378
|
* @throws {RequiredError}
|
|
13501
13379
|
*/
|
|
13502
|
-
|
|
13503
|
-
return localVarFp.
|
|
13380
|
+
addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
13381
|
+
return localVarFp.addVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(axios, basePath));
|
|
13504
13382
|
},
|
|
13505
13383
|
/**
|
|
13506
13384
|
* Adds a new TCP or updates an existing TCP in the motion group. The position and rotation values in the request body are defined within the flange’s coordinate system. > **NOTE** > > Ensure the TCP\'s position is within the robot\'s reach. Refer to the robot’s documentation or data sheet for details like joint limits or reach.
|
|
@@ -13513,8 +13391,8 @@ export const VirtualControllerApiFactory = function (configuration?: Configurati
|
|
|
13513
13391
|
* @param {*} [options] Override http request option.
|
|
13514
13392
|
* @throws {RequiredError}
|
|
13515
13393
|
*/
|
|
13516
|
-
|
|
13517
|
-
return localVarFp.
|
|
13394
|
+
addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
13395
|
+
return localVarFp.addVirtualRobotTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(axios, basePath));
|
|
13518
13396
|
},
|
|
13519
13397
|
/**
|
|
13520
13398
|
* Deletes a coordinate system from the virtual controller. This will remove the coordinate system from the list of coordinate systems and remove all dependent coordinate systems which use the deleted coordinate system as reference.
|
|
@@ -13526,8 +13404,8 @@ export const VirtualControllerApiFactory = function (configuration?: Configurati
|
|
|
13526
13404
|
* @param {*} [options] Override http request option.
|
|
13527
13405
|
* @throws {RequiredError}
|
|
13528
13406
|
*/
|
|
13529
|
-
|
|
13530
|
-
return localVarFp.
|
|
13407
|
+
deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
13408
|
+
return localVarFp.deleteVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios, basePath));
|
|
13531
13409
|
},
|
|
13532
13410
|
/**
|
|
13533
13411
|
* Removes the TCP from the motion group. An unknown TCP is a valid input.
|
|
@@ -13539,8 +13417,8 @@ export const VirtualControllerApiFactory = function (configuration?: Configurati
|
|
|
13539
13417
|
* @param {*} [options] Override http request option.
|
|
13540
13418
|
* @throws {RequiredError}
|
|
13541
13419
|
*/
|
|
13542
|
-
|
|
13543
|
-
return localVarFp.
|
|
13420
|
+
deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
13421
|
+
return localVarFp.deleteVirtualRobotTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios, basePath));
|
|
13544
13422
|
},
|
|
13545
13423
|
/**
|
|
13546
13424
|
* Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
|
|
@@ -13596,8 +13474,8 @@ export const VirtualControllerApiFactory = function (configuration?: Configurati
|
|
|
13596
13474
|
* @param {*} [options] Override http request option.
|
|
13597
13475
|
* @throws {RequiredError}
|
|
13598
13476
|
*/
|
|
13599
|
-
|
|
13600
|
-
return localVarFp.
|
|
13477
|
+
getVirtualRobotMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): AxiosPromise<CoordinateSystem> {
|
|
13478
|
+
return localVarFp.getVirtualRobotMounting(cell, controller, motionGroup, options).then((request) => request(axios, basePath));
|
|
13601
13479
|
},
|
|
13602
13480
|
/**
|
|
13603
13481
|
* Lists all coordinate systems on the robot controller.
|
|
@@ -13607,8 +13485,8 @@ export const VirtualControllerApiFactory = function (configuration?: Configurati
|
|
|
13607
13485
|
* @param {*} [options] Override http request option.
|
|
13608
13486
|
* @throws {RequiredError}
|
|
13609
13487
|
*/
|
|
13610
|
-
|
|
13611
|
-
return localVarFp.
|
|
13488
|
+
listVirtualRobotCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<CoordinateSystem>> {
|
|
13489
|
+
return localVarFp.listVirtualRobotCoordinateSystems(cell, controller, options).then((request) => request(axios, basePath));
|
|
13612
13490
|
},
|
|
13613
13491
|
/**
|
|
13614
13492
|
* Lists TCPs of the motion group. An empty TCP list is valid, for example for external axes.
|
|
@@ -13619,8 +13497,8 @@ export const VirtualControllerApiFactory = function (configuration?: Configurati
|
|
|
13619
13497
|
* @param {*} [options] Override http request option.
|
|
13620
13498
|
* @throws {RequiredError}
|
|
13621
13499
|
*/
|
|
13622
|
-
|
|
13623
|
-
return localVarFp.
|
|
13500
|
+
listVirtualRobotTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<RobotTcp>> {
|
|
13501
|
+
return localVarFp.listVirtualRobotTcps(cell, controller, motionGroup, options).then((request) => request(axios, basePath));
|
|
13624
13502
|
},
|
|
13625
13503
|
/**
|
|
13626
13504
|
* Activates or releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions. The stop is executed on physical controllers immediately not gracefully and not on paths. Due to restricted physical behavior of the virtual robot controller, the Emergency Stop is executed on paths. To return to normal operation the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](getCurrentMotionGroupState) to get the Emergency Stop state regardless of the controller type. There the Emergency Stop state is visible as the `safety_state`. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
|
|
@@ -13669,8 +13547,8 @@ export const VirtualControllerApiFactory = function (configuration?: Configurati
|
|
|
13669
13547
|
* @param {*} [options] Override http request option.
|
|
13670
13548
|
* @throws {RequiredError}
|
|
13671
13549
|
*/
|
|
13672
|
-
|
|
13673
|
-
return localVarFp.
|
|
13550
|
+
setVirtualRobotMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): AxiosPromise<CoordinateSystem> {
|
|
13551
|
+
return localVarFp.setVirtualRobotMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(axios, basePath));
|
|
13674
13552
|
},
|
|
13675
13553
|
};
|
|
13676
13554
|
};
|
|
@@ -13693,8 +13571,8 @@ export class VirtualControllerApi extends BaseAPI {
|
|
|
13693
13571
|
* @throws {RequiredError}
|
|
13694
13572
|
* @memberof VirtualControllerApi
|
|
13695
13573
|
*/
|
|
13696
|
-
public
|
|
13697
|
-
return VirtualControllerApiFp(this.configuration).
|
|
13574
|
+
public addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig) {
|
|
13575
|
+
return VirtualControllerApiFp(this.configuration).addVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, coordinateSystemData, options).then((request) => request(this.axios, this.basePath));
|
|
13698
13576
|
}
|
|
13699
13577
|
|
|
13700
13578
|
/**
|
|
@@ -13709,8 +13587,8 @@ export class VirtualControllerApi extends BaseAPI {
|
|
|
13709
13587
|
* @throws {RequiredError}
|
|
13710
13588
|
* @memberof VirtualControllerApi
|
|
13711
13589
|
*/
|
|
13712
|
-
public
|
|
13713
|
-
return VirtualControllerApiFp(this.configuration).
|
|
13590
|
+
public addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig) {
|
|
13591
|
+
return VirtualControllerApiFp(this.configuration).addVirtualRobotTcp(cell, controller, motionGroup, tcp, robotTcpData, options).then((request) => request(this.axios, this.basePath));
|
|
13714
13592
|
}
|
|
13715
13593
|
|
|
13716
13594
|
/**
|
|
@@ -13724,8 +13602,8 @@ export class VirtualControllerApi extends BaseAPI {
|
|
|
13724
13602
|
* @throws {RequiredError}
|
|
13725
13603
|
* @memberof VirtualControllerApi
|
|
13726
13604
|
*/
|
|
13727
|
-
public
|
|
13728
|
-
return VirtualControllerApiFp(this.configuration).
|
|
13605
|
+
public deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig) {
|
|
13606
|
+
return VirtualControllerApiFp(this.configuration).deleteVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(this.axios, this.basePath));
|
|
13729
13607
|
}
|
|
13730
13608
|
|
|
13731
13609
|
/**
|
|
@@ -13739,8 +13617,8 @@ export class VirtualControllerApi extends BaseAPI {
|
|
|
13739
13617
|
* @throws {RequiredError}
|
|
13740
13618
|
* @memberof VirtualControllerApi
|
|
13741
13619
|
*/
|
|
13742
|
-
public
|
|
13743
|
-
return VirtualControllerApiFp(this.configuration).
|
|
13620
|
+
public deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig) {
|
|
13621
|
+
return VirtualControllerApiFp(this.configuration).deleteVirtualRobotTcp(cell, controller, motionGroup, tcp, options).then((request) => request(this.axios, this.basePath));
|
|
13744
13622
|
}
|
|
13745
13623
|
|
|
13746
13624
|
/**
|
|
@@ -13806,8 +13684,8 @@ export class VirtualControllerApi extends BaseAPI {
|
|
|
13806
13684
|
* @throws {RequiredError}
|
|
13807
13685
|
* @memberof VirtualControllerApi
|
|
13808
13686
|
*/
|
|
13809
|
-
public
|
|
13810
|
-
return VirtualControllerApiFp(this.configuration).
|
|
13687
|
+
public getVirtualRobotMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig) {
|
|
13688
|
+
return VirtualControllerApiFp(this.configuration).getVirtualRobotMounting(cell, controller, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
13811
13689
|
}
|
|
13812
13690
|
|
|
13813
13691
|
/**
|
|
@@ -13819,8 +13697,8 @@ export class VirtualControllerApi extends BaseAPI {
|
|
|
13819
13697
|
* @throws {RequiredError}
|
|
13820
13698
|
* @memberof VirtualControllerApi
|
|
13821
13699
|
*/
|
|
13822
|
-
public
|
|
13823
|
-
return VirtualControllerApiFp(this.configuration).
|
|
13700
|
+
public listVirtualRobotCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig) {
|
|
13701
|
+
return VirtualControllerApiFp(this.configuration).listVirtualRobotCoordinateSystems(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
13824
13702
|
}
|
|
13825
13703
|
|
|
13826
13704
|
/**
|
|
@@ -13833,8 +13711,8 @@ export class VirtualControllerApi extends BaseAPI {
|
|
|
13833
13711
|
* @throws {RequiredError}
|
|
13834
13712
|
* @memberof VirtualControllerApi
|
|
13835
13713
|
*/
|
|
13836
|
-
public
|
|
13837
|
-
return VirtualControllerApiFp(this.configuration).
|
|
13714
|
+
public listVirtualRobotTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig) {
|
|
13715
|
+
return VirtualControllerApiFp(this.configuration).listVirtualRobotTcps(cell, controller, motionGroup, options).then((request) => request(this.axios, this.basePath));
|
|
13838
13716
|
}
|
|
13839
13717
|
|
|
13840
13718
|
/**
|
|
@@ -13891,8 +13769,8 @@ export class VirtualControllerApi extends BaseAPI {
|
|
|
13891
13769
|
* @throws {RequiredError}
|
|
13892
13770
|
* @memberof VirtualControllerApi
|
|
13893
13771
|
*/
|
|
13894
|
-
public
|
|
13895
|
-
return VirtualControllerApiFp(this.configuration).
|
|
13772
|
+
public setVirtualRobotMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig) {
|
|
13773
|
+
return VirtualControllerApiFp(this.configuration).setVirtualRobotMounting(cell, controller, motionGroup, coordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
13896
13774
|
}
|
|
13897
13775
|
}
|
|
13898
13776
|
|
|
@@ -14003,18 +13881,18 @@ export const VirtualControllerBehaviorApiAxiosParamCreator = function (configura
|
|
|
14003
13881
|
};
|
|
14004
13882
|
},
|
|
14005
13883
|
/**
|
|
14006
|
-
* Get the current virtual controller behavior - please see the setter [
|
|
13884
|
+
* Get the current virtual controller behavior - please see the setter [setVirtualRobotBehavior](setVirtualRobotBehavior) and the enum for details.
|
|
14007
13885
|
* @summary Get Behavior
|
|
14008
13886
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
14009
13887
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
14010
13888
|
* @param {*} [options] Override http request option.
|
|
14011
13889
|
* @throws {RequiredError}
|
|
14012
13890
|
*/
|
|
14013
|
-
|
|
13891
|
+
getVirtualRobotBehavior: async (cell: string, controller: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
14014
13892
|
// verify required parameter 'cell' is not null or undefined
|
|
14015
|
-
assertParamExists('
|
|
13893
|
+
assertParamExists('getVirtualRobotBehavior', 'cell', cell)
|
|
14016
13894
|
// verify required parameter 'controller' is not null or undefined
|
|
14017
|
-
assertParamExists('
|
|
13895
|
+
assertParamExists('getVirtualRobotBehavior', 'controller', controller)
|
|
14018
13896
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/behavior`
|
|
14019
13897
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
14020
13898
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
|
|
@@ -14057,11 +13935,11 @@ export const VirtualControllerBehaviorApiAxiosParamCreator = function (configura
|
|
|
14057
13935
|
* @param {*} [options] Override http request option.
|
|
14058
13936
|
* @throws {RequiredError}
|
|
14059
13937
|
*/
|
|
14060
|
-
|
|
13938
|
+
setVirtualRobotBehavior: async (cell: string, controller: string, behavior?: Behavior, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
14061
13939
|
// verify required parameter 'cell' is not null or undefined
|
|
14062
|
-
assertParamExists('
|
|
13940
|
+
assertParamExists('setVirtualRobotBehavior', 'cell', cell)
|
|
14063
13941
|
// verify required parameter 'controller' is not null or undefined
|
|
14064
|
-
assertParamExists('
|
|
13942
|
+
assertParamExists('setVirtualRobotBehavior', 'controller', controller)
|
|
14065
13943
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/behavior`
|
|
14066
13944
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
14067
13945
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
|
|
@@ -14139,17 +14017,17 @@ export const VirtualControllerBehaviorApiFp = function(configuration?: Configura
|
|
|
14139
14017
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
14140
14018
|
},
|
|
14141
14019
|
/**
|
|
14142
|
-
* Get the current virtual controller behavior - please see the setter [
|
|
14020
|
+
* Get the current virtual controller behavior - please see the setter [setVirtualRobotBehavior](setVirtualRobotBehavior) and the enum for details.
|
|
14143
14021
|
* @summary Get Behavior
|
|
14144
14022
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
14145
14023
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
14146
14024
|
* @param {*} [options] Override http request option.
|
|
14147
14025
|
* @throws {RequiredError}
|
|
14148
14026
|
*/
|
|
14149
|
-
async
|
|
14150
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
14027
|
+
async getVirtualRobotBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Behavior>> {
|
|
14028
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getVirtualRobotBehavior(cell, controller, options);
|
|
14151
14029
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
14152
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerBehaviorApi.
|
|
14030
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerBehaviorApi.getVirtualRobotBehavior']?.[localVarOperationServerIndex]?.url;
|
|
14153
14031
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
14154
14032
|
},
|
|
14155
14033
|
/**
|
|
@@ -14161,10 +14039,10 @@ export const VirtualControllerBehaviorApiFp = function(configuration?: Configura
|
|
|
14161
14039
|
* @param {*} [options] Override http request option.
|
|
14162
14040
|
* @throws {RequiredError}
|
|
14163
14041
|
*/
|
|
14164
|
-
async
|
|
14165
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
14042
|
+
async setVirtualRobotBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
14043
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.setVirtualRobotBehavior(cell, controller, behavior, options);
|
|
14166
14044
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
14167
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerBehaviorApi.
|
|
14045
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerBehaviorApi.setVirtualRobotBehavior']?.[localVarOperationServerIndex]?.url;
|
|
14168
14046
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
14169
14047
|
},
|
|
14170
14048
|
}
|
|
@@ -14201,15 +14079,15 @@ export const VirtualControllerBehaviorApiFactory = function (configuration?: Con
|
|
|
14201
14079
|
return localVarFp.getCycleTime(cell, controller, options).then((request) => request(axios, basePath));
|
|
14202
14080
|
},
|
|
14203
14081
|
/**
|
|
14204
|
-
* Get the current virtual controller behavior - please see the setter [
|
|
14082
|
+
* Get the current virtual controller behavior - please see the setter [setVirtualRobotBehavior](setVirtualRobotBehavior) and the enum for details.
|
|
14205
14083
|
* @summary Get Behavior
|
|
14206
14084
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
14207
14085
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
14208
14086
|
* @param {*} [options] Override http request option.
|
|
14209
14087
|
* @throws {RequiredError}
|
|
14210
14088
|
*/
|
|
14211
|
-
|
|
14212
|
-
return localVarFp.
|
|
14089
|
+
getVirtualRobotBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<Behavior> {
|
|
14090
|
+
return localVarFp.getVirtualRobotBehavior(cell, controller, options).then((request) => request(axios, basePath));
|
|
14213
14091
|
},
|
|
14214
14092
|
/**
|
|
14215
14093
|
* Set virtual controller behavior.
|
|
@@ -14220,8 +14098,8 @@ export const VirtualControllerBehaviorApiFactory = function (configuration?: Con
|
|
|
14220
14098
|
* @param {*} [options] Override http request option.
|
|
14221
14099
|
* @throws {RequiredError}
|
|
14222
14100
|
*/
|
|
14223
|
-
|
|
14224
|
-
return localVarFp.
|
|
14101
|
+
setVirtualRobotBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
14102
|
+
return localVarFp.setVirtualRobotBehavior(cell, controller, behavior, options).then((request) => request(axios, basePath));
|
|
14225
14103
|
},
|
|
14226
14104
|
};
|
|
14227
14105
|
};
|
|
@@ -14261,7 +14139,7 @@ export class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
14261
14139
|
}
|
|
14262
14140
|
|
|
14263
14141
|
/**
|
|
14264
|
-
* Get the current virtual controller behavior - please see the setter [
|
|
14142
|
+
* Get the current virtual controller behavior - please see the setter [setVirtualRobotBehavior](setVirtualRobotBehavior) and the enum for details.
|
|
14265
14143
|
* @summary Get Behavior
|
|
14266
14144
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
14267
14145
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -14269,8 +14147,8 @@ export class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
14269
14147
|
* @throws {RequiredError}
|
|
14270
14148
|
* @memberof VirtualControllerBehaviorApi
|
|
14271
14149
|
*/
|
|
14272
|
-
public
|
|
14273
|
-
return VirtualControllerBehaviorApiFp(this.configuration).
|
|
14150
|
+
public getVirtualRobotBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig) {
|
|
14151
|
+
return VirtualControllerBehaviorApiFp(this.configuration).getVirtualRobotBehavior(cell, controller, options).then((request) => request(this.axios, this.basePath));
|
|
14274
14152
|
}
|
|
14275
14153
|
|
|
14276
14154
|
/**
|
|
@@ -14283,8 +14161,8 @@ export class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
14283
14161
|
* @throws {RequiredError}
|
|
14284
14162
|
* @memberof VirtualControllerBehaviorApi
|
|
14285
14163
|
*/
|
|
14286
|
-
public
|
|
14287
|
-
return VirtualControllerBehaviorApiFp(this.configuration).
|
|
14164
|
+
public setVirtualRobotBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig) {
|
|
14165
|
+
return VirtualControllerBehaviorApiFp(this.configuration).setVirtualRobotBehavior(cell, controller, behavior, options).then((request) => request(this.axios, this.basePath));
|
|
14288
14166
|
}
|
|
14289
14167
|
}
|
|
14290
14168
|
|
|
@@ -14297,7 +14175,7 @@ export class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
14297
14175
|
export const VirtualControllerInputsOutputsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
14298
14176
|
return {
|
|
14299
14177
|
/**
|
|
14300
|
-
* Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [
|
|
14178
|
+
* Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualRobotIODescriptions](listVirtualRobotIODescriptions).
|
|
14301
14179
|
* @summary Get Input/Output Values
|
|
14302
14180
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
14303
14181
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -14361,11 +14239,11 @@ export const VirtualControllerInputsOutputsApiAxiosParamCreator = function (conf
|
|
|
14361
14239
|
* @param {*} [options] Override http request option.
|
|
14362
14240
|
* @throws {RequiredError}
|
|
14363
14241
|
*/
|
|
14364
|
-
|
|
14242
|
+
listVirtualRobotIODescriptions: async (cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
14365
14243
|
// verify required parameter 'cell' is not null or undefined
|
|
14366
|
-
assertParamExists('
|
|
14244
|
+
assertParamExists('listVirtualRobotIODescriptions', 'cell', cell)
|
|
14367
14245
|
// verify required parameter 'controller' is not null or undefined
|
|
14368
|
-
assertParamExists('
|
|
14246
|
+
assertParamExists('listVirtualRobotIODescriptions', 'controller', controller)
|
|
14369
14247
|
const localVarPath = `/cells/{cell}/virtual-controllers/{controller}/ios/description`
|
|
14370
14248
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
14371
14249
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
|
|
@@ -14478,7 +14356,7 @@ export const VirtualControllerInputsOutputsApiFp = function(configuration?: Conf
|
|
|
14478
14356
|
const localVarAxiosParamCreator = VirtualControllerInputsOutputsApiAxiosParamCreator(configuration)
|
|
14479
14357
|
return {
|
|
14480
14358
|
/**
|
|
14481
|
-
* Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [
|
|
14359
|
+
* Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualRobotIODescriptions](listVirtualRobotIODescriptions).
|
|
14482
14360
|
* @summary Get Input/Output Values
|
|
14483
14361
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
14484
14362
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -14504,10 +14382,10 @@ export const VirtualControllerInputsOutputsApiFp = function(configuration?: Conf
|
|
|
14504
14382
|
* @param {*} [options] Override http request option.
|
|
14505
14383
|
* @throws {RequiredError}
|
|
14506
14384
|
*/
|
|
14507
|
-
async
|
|
14508
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
14385
|
+
async listVirtualRobotIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IODescription>>> {
|
|
14386
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualRobotIODescriptions(cell, controller, ios, direction, valueType, group, options);
|
|
14509
14387
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
14510
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualControllerInputsOutputsApi.
|
|
14388
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualControllerInputsOutputsApi.listVirtualRobotIODescriptions']?.[localVarOperationServerIndex]?.url;
|
|
14511
14389
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
14512
14390
|
},
|
|
14513
14391
|
/**
|
|
@@ -14536,7 +14414,7 @@ export const VirtualControllerInputsOutputsApiFactory = function (configuration?
|
|
|
14536
14414
|
const localVarFp = VirtualControllerInputsOutputsApiFp(configuration)
|
|
14537
14415
|
return {
|
|
14538
14416
|
/**
|
|
14539
|
-
* Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [
|
|
14417
|
+
* Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualRobotIODescriptions](listVirtualRobotIODescriptions).
|
|
14540
14418
|
* @summary Get Input/Output Values
|
|
14541
14419
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
14542
14420
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -14559,8 +14437,8 @@ export const VirtualControllerInputsOutputsApiFactory = function (configuration?
|
|
|
14559
14437
|
* @param {*} [options] Override http request option.
|
|
14560
14438
|
* @throws {RequiredError}
|
|
14561
14439
|
*/
|
|
14562
|
-
|
|
14563
|
-
return localVarFp.
|
|
14440
|
+
listVirtualRobotIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<IODescription>> {
|
|
14441
|
+
return localVarFp.listVirtualRobotIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios, basePath));
|
|
14564
14442
|
},
|
|
14565
14443
|
/**
|
|
14566
14444
|
* Sets a list of values of a virtual controller inputs/outputs.
|
|
@@ -14585,7 +14463,7 @@ export const VirtualControllerInputsOutputsApiFactory = function (configuration?
|
|
|
14585
14463
|
*/
|
|
14586
14464
|
export class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
14587
14465
|
/**
|
|
14588
|
-
* Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [
|
|
14466
|
+
* Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualRobotIODescriptions](listVirtualRobotIODescriptions).
|
|
14589
14467
|
* @summary Get Input/Output Values
|
|
14590
14468
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
14591
14469
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
@@ -14611,8 +14489,8 @@ export class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
14611
14489
|
* @throws {RequiredError}
|
|
14612
14490
|
* @memberof VirtualControllerInputsOutputsApi
|
|
14613
14491
|
*/
|
|
14614
|
-
public
|
|
14615
|
-
return VirtualControllerInputsOutputsApiFp(this.configuration).
|
|
14492
|
+
public listVirtualRobotIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig) {
|
|
14493
|
+
return VirtualControllerInputsOutputsApiFp(this.configuration).listVirtualRobotIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(this.axios, this.basePath));
|
|
14616
14494
|
}
|
|
14617
14495
|
|
|
14618
14496
|
/**
|