@wandelbots/nova-api 25.4.0-dev.27 → 25.4.0-dev.28
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 +2 -2
- package/v1/api.ts +2 -2
- package/v2/api.d.ts +220 -349
- package/v2/api.js +150 -99
- package/v2/api.js.map +1 -1
- package/v2/api.ts +286 -394
package/v2/api.ts
CHANGED
|
@@ -440,7 +440,20 @@ export interface BooleanValue {
|
|
|
440
440
|
* @memberof BooleanValue
|
|
441
441
|
*/
|
|
442
442
|
'boolean_value': boolean;
|
|
443
|
+
/**
|
|
444
|
+
*
|
|
445
|
+
* @type {string}
|
|
446
|
+
* @memberof BooleanValue
|
|
447
|
+
*/
|
|
448
|
+
'value_type'?: BooleanValueValueTypeEnum;
|
|
443
449
|
}
|
|
450
|
+
|
|
451
|
+
export const BooleanValueValueTypeEnum = {
|
|
452
|
+
Boolean: 'boolean'
|
|
453
|
+
} as const;
|
|
454
|
+
|
|
455
|
+
export type BooleanValueValueTypeEnum = typeof BooleanValueValueTypeEnum[keyof typeof BooleanValueValueTypeEnum];
|
|
456
|
+
|
|
444
457
|
/**
|
|
445
458
|
* Defines a cuboid shape centered around an origin.
|
|
446
459
|
* @export
|
|
@@ -658,10 +671,10 @@ export interface Collider {
|
|
|
658
671
|
'shape': ColliderShape;
|
|
659
672
|
/**
|
|
660
673
|
*
|
|
661
|
-
* @type {
|
|
674
|
+
* @type {Pose}
|
|
662
675
|
* @memberof Collider
|
|
663
676
|
*/
|
|
664
|
-
'pose'?:
|
|
677
|
+
'pose'?: Pose;
|
|
665
678
|
/**
|
|
666
679
|
* Increases the shape\'s size in all dimensions. Applied in [mm]. Can be used to keep a safe distance to the shape.
|
|
667
680
|
* @type {number}
|
|
@@ -1258,10 +1271,10 @@ export type CreateTriggerRequestConfig = OpcuaNodeValueTriggerConfig;
|
|
|
1258
1271
|
export interface CubicSplineParameter {
|
|
1259
1272
|
/**
|
|
1260
1273
|
*
|
|
1261
|
-
* @type {
|
|
1274
|
+
* @type {Pose}
|
|
1262
1275
|
* @memberof CubicSplineParameter
|
|
1263
1276
|
*/
|
|
1264
|
-
'pose':
|
|
1277
|
+
'pose': Pose;
|
|
1265
1278
|
/**
|
|
1266
1279
|
*
|
|
1267
1280
|
* @type {number}
|
|
@@ -1542,10 +1555,10 @@ export interface FeedbackCollision {
|
|
|
1542
1555
|
'joint_position'?: Array<number>;
|
|
1543
1556
|
/**
|
|
1544
1557
|
*
|
|
1545
|
-
* @type {
|
|
1558
|
+
* @type {Pose}
|
|
1546
1559
|
* @memberof FeedbackCollision
|
|
1547
1560
|
*/
|
|
1548
|
-
'tcp_pose'?:
|
|
1561
|
+
'tcp_pose'?: Pose;
|
|
1549
1562
|
/**
|
|
1550
1563
|
*
|
|
1551
1564
|
* @type {string}
|
|
@@ -1600,10 +1613,10 @@ export type FeedbackJointLimitExceededErrorFeedbackNameEnum = typeof FeedbackJoi
|
|
|
1600
1613
|
export interface FeedbackOutOfWorkspace {
|
|
1601
1614
|
/**
|
|
1602
1615
|
*
|
|
1603
|
-
* @type {
|
|
1616
|
+
* @type {Pose}
|
|
1604
1617
|
* @memberof FeedbackOutOfWorkspace
|
|
1605
1618
|
*/
|
|
1606
|
-
'invalid_tcp_pose'?:
|
|
1619
|
+
'invalid_tcp_pose'?: Pose;
|
|
1607
1620
|
/**
|
|
1608
1621
|
*
|
|
1609
1622
|
* @type {string}
|
|
@@ -1675,7 +1688,20 @@ export interface FloatValue {
|
|
|
1675
1688
|
* @memberof FloatValue
|
|
1676
1689
|
*/
|
|
1677
1690
|
'float_value': number;
|
|
1691
|
+
/**
|
|
1692
|
+
*
|
|
1693
|
+
* @type {string}
|
|
1694
|
+
* @memberof FloatValue
|
|
1695
|
+
*/
|
|
1696
|
+
'value_type'?: FloatValueValueTypeEnum;
|
|
1678
1697
|
}
|
|
1698
|
+
|
|
1699
|
+
export const FloatValueValueTypeEnum = {
|
|
1700
|
+
Float: 'float'
|
|
1701
|
+
} as const;
|
|
1702
|
+
|
|
1703
|
+
export type FloatValueValueTypeEnum = typeof FloatValueValueTypeEnum[keyof typeof FloatValueValueTypeEnum];
|
|
1704
|
+
|
|
1679
1705
|
/**
|
|
1680
1706
|
* Representing a force on a specific point in operational space, e.g. on robot flange.
|
|
1681
1707
|
* @export
|
|
@@ -1864,52 +1890,14 @@ export interface IOBooleanValue {
|
|
|
1864
1890
|
* @type {string}
|
|
1865
1891
|
* @memberof IOBooleanValue
|
|
1866
1892
|
*/
|
|
1867
|
-
'
|
|
1868
|
-
}
|
|
1869
|
-
|
|
1870
|
-
export const IOBooleanValueIoValueTypeEnum = {
|
|
1871
|
-
IoBooleanValue: 'IOBooleanValue'
|
|
1872
|
-
} as const;
|
|
1873
|
-
|
|
1874
|
-
export type IOBooleanValueIoValueTypeEnum = typeof IOBooleanValueIoValueTypeEnum[keyof typeof IOBooleanValueIoValueTypeEnum];
|
|
1875
|
-
|
|
1876
|
-
/**
|
|
1877
|
-
*
|
|
1878
|
-
* @export
|
|
1879
|
-
* @interface IOBooleanValue2
|
|
1880
|
-
*/
|
|
1881
|
-
export interface IOBooleanValue2 {
|
|
1882
|
-
/**
|
|
1883
|
-
*
|
|
1884
|
-
* @type {string}
|
|
1885
|
-
* @memberof IOBooleanValue2
|
|
1886
|
-
*/
|
|
1887
|
-
'io': string;
|
|
1888
|
-
/**
|
|
1889
|
-
*
|
|
1890
|
-
* @type {IODirection}
|
|
1891
|
-
* @memberof IOBooleanValue2
|
|
1892
|
-
*/
|
|
1893
|
-
'direction': IODirection;
|
|
1894
|
-
/**
|
|
1895
|
-
*
|
|
1896
|
-
* @type {boolean}
|
|
1897
|
-
* @memberof IOBooleanValue2
|
|
1898
|
-
*/
|
|
1899
|
-
'boolean_value': boolean;
|
|
1900
|
-
/**
|
|
1901
|
-
*
|
|
1902
|
-
* @type {string}
|
|
1903
|
-
* @memberof IOBooleanValue2
|
|
1904
|
-
*/
|
|
1905
|
-
'io_value_type'?: IOBooleanValue2IoValueTypeEnum;
|
|
1893
|
+
'value_type'?: IOBooleanValueValueTypeEnum;
|
|
1906
1894
|
}
|
|
1907
1895
|
|
|
1908
|
-
export const
|
|
1909
|
-
|
|
1896
|
+
export const IOBooleanValueValueTypeEnum = {
|
|
1897
|
+
Boolean: 'boolean'
|
|
1910
1898
|
} as const;
|
|
1911
1899
|
|
|
1912
|
-
export type
|
|
1900
|
+
export type IOBooleanValueValueTypeEnum = typeof IOBooleanValueValueTypeEnum[keyof typeof IOBooleanValueValueTypeEnum];
|
|
1913
1901
|
|
|
1914
1902
|
/**
|
|
1915
1903
|
*
|
|
@@ -1972,7 +1960,7 @@ export interface IODescription {
|
|
|
1972
1960
|
* @type IODescriptionMin
|
|
1973
1961
|
* @export
|
|
1974
1962
|
*/
|
|
1975
|
-
export type IODescriptionMin = BooleanValue | FloatValue | IntegerValue;
|
|
1963
|
+
export type IODescriptionMin = { value_type: 'boolean' } & BooleanValue | { value_type: 'float' } & FloatValue | { value_type: 'integer' } & IntegerValue;
|
|
1976
1964
|
|
|
1977
1965
|
/**
|
|
1978
1966
|
* Identifies the input/output type.
|
|
@@ -2011,52 +1999,14 @@ export interface IOFloatValue {
|
|
|
2011
1999
|
* @type {string}
|
|
2012
2000
|
* @memberof IOFloatValue
|
|
2013
2001
|
*/
|
|
2014
|
-
'
|
|
2015
|
-
}
|
|
2016
|
-
|
|
2017
|
-
export const IOFloatValueIoValueTypeEnum = {
|
|
2018
|
-
IoFloatValue: 'IOFloatValue'
|
|
2019
|
-
} as const;
|
|
2020
|
-
|
|
2021
|
-
export type IOFloatValueIoValueTypeEnum = typeof IOFloatValueIoValueTypeEnum[keyof typeof IOFloatValueIoValueTypeEnum];
|
|
2022
|
-
|
|
2023
|
-
/**
|
|
2024
|
-
*
|
|
2025
|
-
* @export
|
|
2026
|
-
* @interface IOFloatValue2
|
|
2027
|
-
*/
|
|
2028
|
-
export interface IOFloatValue2 {
|
|
2029
|
-
/**
|
|
2030
|
-
*
|
|
2031
|
-
* @type {string}
|
|
2032
|
-
* @memberof IOFloatValue2
|
|
2033
|
-
*/
|
|
2034
|
-
'io': string;
|
|
2035
|
-
/**
|
|
2036
|
-
*
|
|
2037
|
-
* @type {IODirection}
|
|
2038
|
-
* @memberof IOFloatValue2
|
|
2039
|
-
*/
|
|
2040
|
-
'direction': IODirection;
|
|
2041
|
-
/**
|
|
2042
|
-
*
|
|
2043
|
-
* @type {number}
|
|
2044
|
-
* @memberof IOFloatValue2
|
|
2045
|
-
*/
|
|
2046
|
-
'float_value': number;
|
|
2047
|
-
/**
|
|
2048
|
-
*
|
|
2049
|
-
* @type {string}
|
|
2050
|
-
* @memberof IOFloatValue2
|
|
2051
|
-
*/
|
|
2052
|
-
'io_value_type'?: IOFloatValue2IoValueTypeEnum;
|
|
2002
|
+
'value_type'?: IOFloatValueValueTypeEnum;
|
|
2053
2003
|
}
|
|
2054
2004
|
|
|
2055
|
-
export const
|
|
2056
|
-
|
|
2005
|
+
export const IOFloatValueValueTypeEnum = {
|
|
2006
|
+
Float: 'float'
|
|
2057
2007
|
} as const;
|
|
2058
2008
|
|
|
2059
|
-
export type
|
|
2009
|
+
export type IOFloatValueValueTypeEnum = typeof IOFloatValueValueTypeEnum[keyof typeof IOFloatValueValueTypeEnum];
|
|
2060
2010
|
|
|
2061
2011
|
/**
|
|
2062
2012
|
* Input/Output integer value representation.
|
|
@@ -2081,84 +2031,15 @@ export interface IOIntegerValue {
|
|
|
2081
2031
|
* @type {string}
|
|
2082
2032
|
* @memberof IOIntegerValue
|
|
2083
2033
|
*/
|
|
2084
|
-
'
|
|
2034
|
+
'value_type'?: IOIntegerValueValueTypeEnum;
|
|
2085
2035
|
}
|
|
2086
2036
|
|
|
2087
|
-
export const
|
|
2088
|
-
|
|
2037
|
+
export const IOIntegerValueValueTypeEnum = {
|
|
2038
|
+
Integer: 'integer'
|
|
2089
2039
|
} as const;
|
|
2090
2040
|
|
|
2091
|
-
export type
|
|
2041
|
+
export type IOIntegerValueValueTypeEnum = typeof IOIntegerValueValueTypeEnum[keyof typeof IOIntegerValueValueTypeEnum];
|
|
2092
2042
|
|
|
2093
|
-
/**
|
|
2094
|
-
*
|
|
2095
|
-
* @export
|
|
2096
|
-
* @interface IOIntegerValue2
|
|
2097
|
-
*/
|
|
2098
|
-
export interface IOIntegerValue2 {
|
|
2099
|
-
/**
|
|
2100
|
-
*
|
|
2101
|
-
* @type {string}
|
|
2102
|
-
* @memberof IOIntegerValue2
|
|
2103
|
-
*/
|
|
2104
|
-
'io': string;
|
|
2105
|
-
/**
|
|
2106
|
-
*
|
|
2107
|
-
* @type {IODirection}
|
|
2108
|
-
* @memberof IOIntegerValue2
|
|
2109
|
-
*/
|
|
2110
|
-
'direction': IODirection;
|
|
2111
|
-
/**
|
|
2112
|
-
*
|
|
2113
|
-
* @type {string}
|
|
2114
|
-
* @memberof IOIntegerValue2
|
|
2115
|
-
*/
|
|
2116
|
-
'integer_value': string;
|
|
2117
|
-
/**
|
|
2118
|
-
*
|
|
2119
|
-
* @type {string}
|
|
2120
|
-
* @memberof IOIntegerValue2
|
|
2121
|
-
*/
|
|
2122
|
-
'io_value_type'?: IOIntegerValue2IoValueTypeEnum;
|
|
2123
|
-
}
|
|
2124
|
-
|
|
2125
|
-
export const IOIntegerValue2IoValueTypeEnum = {
|
|
2126
|
-
IoIntegerValue: 'IOIntegerValue'
|
|
2127
|
-
} as const;
|
|
2128
|
-
|
|
2129
|
-
export type IOIntegerValue2IoValueTypeEnum = typeof IOIntegerValue2IoValueTypeEnum[keyof typeof IOIntegerValue2IoValueTypeEnum];
|
|
2130
|
-
|
|
2131
|
-
/**
|
|
2132
|
-
* Input/Output value representation. Depending on the input/output type, only one of the value fields will be set.
|
|
2133
|
-
* @export
|
|
2134
|
-
* @interface IOValue
|
|
2135
|
-
*/
|
|
2136
|
-
export interface IOValue {
|
|
2137
|
-
/**
|
|
2138
|
-
* Unique identifier of the input/output.
|
|
2139
|
-
* @type {string}
|
|
2140
|
-
* @memberof IOValue
|
|
2141
|
-
*/
|
|
2142
|
-
'io': string;
|
|
2143
|
-
/**
|
|
2144
|
-
* Value of a digital input/output. This field is only set if the input/output is of type IO_VALUE_BOOLEAN.
|
|
2145
|
-
* @type {boolean}
|
|
2146
|
-
* @memberof IOValue
|
|
2147
|
-
*/
|
|
2148
|
-
'boolean_value'?: boolean;
|
|
2149
|
-
/**
|
|
2150
|
-
* Value of an analog input/output in integer representation. This field is only set if the input/output is of type IO_VALUE_ANALOG_INTEGER. > The integral value is transmitted as a string to avoid precision loss during conversion to JSON. > We recommend to use int64 in your implementation. If you want to interact with int64 in numbers, > there are some JS bigint libraries available to parse the string into an integral value.
|
|
2151
|
-
* @type {string}
|
|
2152
|
-
* @memberof IOValue
|
|
2153
|
-
*/
|
|
2154
|
-
'integer_value'?: string;
|
|
2155
|
-
/**
|
|
2156
|
-
* Value of an analog input/output in floating number representation. This field is only set if the input/output is of type IO_VALUE_ANALOG_FLOATING.
|
|
2157
|
-
* @type {number}
|
|
2158
|
-
* @memberof IOValue
|
|
2159
|
-
*/
|
|
2160
|
-
'float_value'?: number;
|
|
2161
|
-
}
|
|
2162
2043
|
/**
|
|
2163
2044
|
* Data type of the input/output.
|
|
2164
2045
|
* @export
|
|
@@ -2174,69 +2055,6 @@ export const IOValueType = {
|
|
|
2174
2055
|
export type IOValueType = typeof IOValueType[keyof typeof IOValueType];
|
|
2175
2056
|
|
|
2176
2057
|
|
|
2177
|
-
/**
|
|
2178
|
-
*
|
|
2179
|
-
* @export
|
|
2180
|
-
* @interface IOs
|
|
2181
|
-
*/
|
|
2182
|
-
export interface IOs {
|
|
2183
|
-
/**
|
|
2184
|
-
*
|
|
2185
|
-
* @type {Array<IOsIosInner>}
|
|
2186
|
-
* @memberof IOs
|
|
2187
|
-
*/
|
|
2188
|
-
'ios': Array<IOsIosInner>;
|
|
2189
|
-
}
|
|
2190
|
-
/**
|
|
2191
|
-
*
|
|
2192
|
-
* @export
|
|
2193
|
-
* @interface IOsIosInner
|
|
2194
|
-
*/
|
|
2195
|
-
export interface IOsIosInner {
|
|
2196
|
-
/**
|
|
2197
|
-
*
|
|
2198
|
-
* @type {string}
|
|
2199
|
-
* @memberof IOsIosInner
|
|
2200
|
-
*/
|
|
2201
|
-
'io': string;
|
|
2202
|
-
/**
|
|
2203
|
-
*
|
|
2204
|
-
* @type {IODirection}
|
|
2205
|
-
* @memberof IOsIosInner
|
|
2206
|
-
*/
|
|
2207
|
-
'direction': IODirection;
|
|
2208
|
-
/**
|
|
2209
|
-
*
|
|
2210
|
-
* @type {string}
|
|
2211
|
-
* @memberof IOsIosInner
|
|
2212
|
-
*/
|
|
2213
|
-
'integer_value': string;
|
|
2214
|
-
/**
|
|
2215
|
-
*
|
|
2216
|
-
* @type {string}
|
|
2217
|
-
* @memberof IOsIosInner
|
|
2218
|
-
*/
|
|
2219
|
-
'io_value_type'?: IOsIosInnerIoValueTypeEnum;
|
|
2220
|
-
/**
|
|
2221
|
-
*
|
|
2222
|
-
* @type {boolean}
|
|
2223
|
-
* @memberof IOsIosInner
|
|
2224
|
-
*/
|
|
2225
|
-
'boolean_value': boolean;
|
|
2226
|
-
/**
|
|
2227
|
-
*
|
|
2228
|
-
* @type {number}
|
|
2229
|
-
* @memberof IOsIosInner
|
|
2230
|
-
*/
|
|
2231
|
-
'float_value': number;
|
|
2232
|
-
}
|
|
2233
|
-
|
|
2234
|
-
export const IOsIosInnerIoValueTypeEnum = {
|
|
2235
|
-
IoFloatValue: 'IOFloatValue'
|
|
2236
|
-
} as const;
|
|
2237
|
-
|
|
2238
|
-
export type IOsIosInnerIoValueTypeEnum = typeof IOsIosInnerIoValueTypeEnum[keyof typeof IOsIosInnerIoValueTypeEnum];
|
|
2239
|
-
|
|
2240
2058
|
/**
|
|
2241
2059
|
* User provided credentials for creating a secret to pull an image from a registry.
|
|
2242
2060
|
* @export
|
|
@@ -2515,18 +2333,31 @@ export interface InitializeMovementResponseInitResponse {
|
|
|
2515
2333
|
'error_message'?: string;
|
|
2516
2334
|
}
|
|
2517
2335
|
/**
|
|
2518
|
-
*
|
|
2336
|
+
* Value of an analog input/output with integer representation. > The integral value is transmitted as a string to avoid precision loss during conversion to JSON. > We recommend to use int64 in your implementation. If you want to interact with int64 in numbers, > there are some JS bigint libraries available to parse the string into an integral value.
|
|
2519
2337
|
* @export
|
|
2520
2338
|
* @interface IntegerValue
|
|
2521
2339
|
*/
|
|
2522
2340
|
export interface IntegerValue {
|
|
2523
2341
|
/**
|
|
2524
|
-
*
|
|
2342
|
+
*
|
|
2525
2343
|
* @type {string}
|
|
2526
2344
|
* @memberof IntegerValue
|
|
2527
2345
|
*/
|
|
2528
2346
|
'integer_value': string;
|
|
2347
|
+
/**
|
|
2348
|
+
*
|
|
2349
|
+
* @type {string}
|
|
2350
|
+
* @memberof IntegerValue
|
|
2351
|
+
*/
|
|
2352
|
+
'value_type'?: IntegerValueValueTypeEnum;
|
|
2529
2353
|
}
|
|
2354
|
+
|
|
2355
|
+
export const IntegerValueValueTypeEnum = {
|
|
2356
|
+
Integer: 'integer'
|
|
2357
|
+
} as const;
|
|
2358
|
+
|
|
2359
|
+
export type IntegerValueValueTypeEnum = typeof IntegerValueValueTypeEnum[keyof typeof IntegerValueValueTypeEnum];
|
|
2360
|
+
|
|
2530
2361
|
/**
|
|
2531
2362
|
*
|
|
2532
2363
|
* @export
|
|
@@ -3751,10 +3582,10 @@ export interface MotionGroupState {
|
|
|
3751
3582
|
'joint_torque'?: Joints;
|
|
3752
3583
|
/**
|
|
3753
3584
|
* Current position of the Flange (last point of the motion group before the endeffector starts) in [mm]. The position is relative to the response_coordinate_system that is specified in the request. For robot arms a flange pose is always returned, for positioners the flange might not be available, depending on the model.
|
|
3754
|
-
* @type {
|
|
3585
|
+
* @type {PoseInCoordinateSystem}
|
|
3755
3586
|
* @memberof MotionGroupState
|
|
3756
3587
|
*/
|
|
3757
|
-
'flange_pose'?:
|
|
3588
|
+
'flange_pose'?: PoseInCoordinateSystem;
|
|
3758
3589
|
/**
|
|
3759
3590
|
* Current position of the TCP currently selected on the robot control panel. Attention: This TCP is not necessarily the same as specified as `tcp` in the request. If you need the information for the specified TCP, use the tcp_pose in the outer response. Position is in [mm]. The position is relative to the response_coordinate_system that is specified in the request.
|
|
3760
3591
|
* @type {TcpPose}
|
|
@@ -3851,10 +3682,10 @@ export interface Mounting {
|
|
|
3851
3682
|
'coordinate_system': string;
|
|
3852
3683
|
/**
|
|
3853
3684
|
* The pose offset based on world coordinate system of the mounting.
|
|
3854
|
-
* @type {
|
|
3685
|
+
* @type {PoseInCoordinateSystem}
|
|
3855
3686
|
* @memberof Mounting
|
|
3856
3687
|
*/
|
|
3857
|
-
'pose':
|
|
3688
|
+
'pose': PoseInCoordinateSystem;
|
|
3858
3689
|
}
|
|
3859
3690
|
/**
|
|
3860
3691
|
* @type MoveToTrajectoryViaJointPTPResponse
|
|
@@ -4145,10 +3976,10 @@ export interface Path {
|
|
|
4145
3976
|
export interface PathCartesianPTP {
|
|
4146
3977
|
/**
|
|
4147
3978
|
*
|
|
4148
|
-
* @type {
|
|
3979
|
+
* @type {Pose}
|
|
4149
3980
|
* @memberof PathCartesianPTP
|
|
4150
3981
|
*/
|
|
4151
|
-
'target_pose':
|
|
3982
|
+
'target_pose': Pose;
|
|
4152
3983
|
/**
|
|
4153
3984
|
*
|
|
4154
3985
|
* @type {string}
|
|
@@ -4171,16 +4002,16 @@ export type PathCartesianPTPPathDefinitionNameEnum = typeof PathCartesianPTPPath
|
|
|
4171
4002
|
export interface PathCircle {
|
|
4172
4003
|
/**
|
|
4173
4004
|
*
|
|
4174
|
-
* @type {
|
|
4005
|
+
* @type {Pose}
|
|
4175
4006
|
* @memberof PathCircle
|
|
4176
4007
|
*/
|
|
4177
|
-
'via_pose':
|
|
4008
|
+
'via_pose': Pose;
|
|
4178
4009
|
/**
|
|
4179
4010
|
*
|
|
4180
|
-
* @type {
|
|
4011
|
+
* @type {Pose}
|
|
4181
4012
|
* @memberof PathCircle
|
|
4182
4013
|
*/
|
|
4183
|
-
'target_pose':
|
|
4014
|
+
'target_pose': Pose;
|
|
4184
4015
|
/**
|
|
4185
4016
|
*
|
|
4186
4017
|
* @type {string}
|
|
@@ -4255,10 +4086,10 @@ export type PathJointPTPPathDefinitionNameEnum = typeof PathJointPTPPathDefiniti
|
|
|
4255
4086
|
export interface PathLine {
|
|
4256
4087
|
/**
|
|
4257
4088
|
*
|
|
4258
|
-
* @type {
|
|
4089
|
+
* @type {Pose}
|
|
4259
4090
|
* @memberof PathLine
|
|
4260
4091
|
*/
|
|
4261
|
-
'target_pose':
|
|
4092
|
+
'target_pose': Pose;
|
|
4262
4093
|
/**
|
|
4263
4094
|
*
|
|
4264
4095
|
* @type {string}
|
|
@@ -4339,12 +4170,12 @@ export interface PauseMovementResponsePauseResponse {
|
|
|
4339
4170
|
export interface PauseOnIO {
|
|
4340
4171
|
/**
|
|
4341
4172
|
*
|
|
4342
|
-
* @type {
|
|
4173
|
+
* @type {SetOutputValuesRequestInner}
|
|
4343
4174
|
* @memberof PauseOnIO
|
|
4344
4175
|
*/
|
|
4345
|
-
'io':
|
|
4176
|
+
'io': SetOutputValuesRequestInner;
|
|
4346
4177
|
/**
|
|
4347
|
-
* Comparator for the comparison of two values.
|
|
4178
|
+
* Comparator for the comparison of two values. Use the measured I/O as the base value (a) and the expected input/output value as the comparator (b): e.g., a > b.
|
|
4348
4179
|
* @type {Comparator}
|
|
4349
4180
|
* @memberof PauseOnIO
|
|
4350
4181
|
*/
|
|
@@ -4673,7 +4504,7 @@ export interface PointCloud {
|
|
|
4673
4504
|
'pointcloud': string;
|
|
4674
4505
|
}
|
|
4675
4506
|
/**
|
|
4676
|
-
*
|
|
4507
|
+
* Defines a pose in 3D space. A pose is a combination of a position and an orientation. The position is applied before the orientation.
|
|
4677
4508
|
* @export
|
|
4678
4509
|
* @interface Pose
|
|
4679
4510
|
*/
|
|
@@ -4683,38 +4514,38 @@ export interface Pose {
|
|
|
4683
4514
|
* @type {Array<number>}
|
|
4684
4515
|
* @memberof Pose
|
|
4685
4516
|
*/
|
|
4686
|
-
'position'
|
|
4517
|
+
'position'?: Array<number>;
|
|
4687
4518
|
/**
|
|
4688
|
-
* A three-dimensional
|
|
4519
|
+
* Defines a rotation in 3D space. A three-dimensional Vector [rx, ry, rz] with double precision. Rotation is applied around the vector. The angle of rotation equals the length of the vector.
|
|
4689
4520
|
* @type {Array<number>}
|
|
4690
4521
|
* @memberof Pose
|
|
4691
4522
|
*/
|
|
4692
4523
|
'orientation'?: Array<number>;
|
|
4693
|
-
/**
|
|
4694
|
-
* Unique identifier addressing the reference coordinate system of the pose. Default is the world coordinate system.
|
|
4695
|
-
* @type {string}
|
|
4696
|
-
* @memberof Pose
|
|
4697
|
-
*/
|
|
4698
|
-
'coordinate_system'?: string;
|
|
4699
4524
|
}
|
|
4700
4525
|
/**
|
|
4701
|
-
*
|
|
4526
|
+
* Representing a pose in space with its origin in `coordinate_system`. A pose consists of positional coordinates [x, y, z] in millimeters (mm) and orientational coordinates in axis-angle representation [rx, ry, rz] in radian (rad).
|
|
4702
4527
|
* @export
|
|
4703
|
-
* @interface
|
|
4528
|
+
* @interface PoseInCoordinateSystem
|
|
4704
4529
|
*/
|
|
4705
|
-
export interface
|
|
4530
|
+
export interface PoseInCoordinateSystem {
|
|
4706
4531
|
/**
|
|
4707
4532
|
* A three-dimensional vector [x, y, z] with double precision.
|
|
4708
4533
|
* @type {Array<number>}
|
|
4709
|
-
* @memberof
|
|
4534
|
+
* @memberof PoseInCoordinateSystem
|
|
4710
4535
|
*/
|
|
4711
|
-
'position'
|
|
4536
|
+
'position': Array<number>;
|
|
4712
4537
|
/**
|
|
4713
4538
|
* Defines a rotation in 3D space. A three-dimensional Vector [rx, ry, rz] with double precision. Rotation is applied around the vector. The angle of rotation equals the length of the vector.
|
|
4714
4539
|
* @type {Array<number>}
|
|
4715
|
-
* @memberof
|
|
4540
|
+
* @memberof PoseInCoordinateSystem
|
|
4716
4541
|
*/
|
|
4717
4542
|
'orientation'?: Array<number>;
|
|
4543
|
+
/**
|
|
4544
|
+
* Unique identifier addressing the reference coordinate system of the pose. Default is the world coordinate system.
|
|
4545
|
+
* @type {string}
|
|
4546
|
+
* @memberof PoseInCoordinateSystem
|
|
4547
|
+
*/
|
|
4548
|
+
'coordinate_system'?: string;
|
|
4718
4549
|
}
|
|
4719
4550
|
/**
|
|
4720
4551
|
* The metadata of a program.
|
|
@@ -5625,36 +5456,17 @@ export interface ServiceStatusStatus {
|
|
|
5625
5456
|
}
|
|
5626
5457
|
|
|
5627
5458
|
|
|
5628
|
-
/**
|
|
5629
|
-
* Defines an input/output that should be set upon reaching a certain location on the trajectory.
|
|
5630
|
-
* @export
|
|
5631
|
-
* @interface SetIO
|
|
5632
|
-
*/
|
|
5633
|
-
export interface SetIO {
|
|
5634
|
-
/**
|
|
5635
|
-
*
|
|
5636
|
-
* @type {IOValue}
|
|
5637
|
-
* @memberof SetIO
|
|
5638
|
-
*/
|
|
5639
|
-
'io': IOValue;
|
|
5640
|
-
/**
|
|
5641
|
-
* The location on the trajectory where the input/output should be set.
|
|
5642
|
-
* @type {number}
|
|
5643
|
-
* @memberof SetIO
|
|
5644
|
-
*/
|
|
5645
|
-
'location': number;
|
|
5646
|
-
}
|
|
5647
5459
|
/**
|
|
5648
5460
|
* @type SetIOValuesRequestInner
|
|
5649
5461
|
* @export
|
|
5650
5462
|
*/
|
|
5651
|
-
export type SetIOValuesRequestInner =
|
|
5463
|
+
export type SetIOValuesRequestInner = IOBooleanValue | IOFloatValue | IOIntegerValue;
|
|
5652
5464
|
|
|
5653
5465
|
/**
|
|
5654
5466
|
* @type SetOutputValuesRequestInner
|
|
5655
5467
|
* @export
|
|
5656
5468
|
*/
|
|
5657
|
-
export type SetOutputValuesRequestInner = IOBooleanValue | IOFloatValue | IOIntegerValue;
|
|
5469
|
+
export type SetOutputValuesRequestInner = { value_type: 'boolean' } & IOBooleanValue | { value_type: 'float' } & IOFloatValue | { value_type: 'integer' } & IOIntegerValue;
|
|
5658
5470
|
|
|
5659
5471
|
/**
|
|
5660
5472
|
*
|
|
@@ -5821,10 +5633,10 @@ export interface StartMovementRequest {
|
|
|
5821
5633
|
'direction': Direction;
|
|
5822
5634
|
/**
|
|
5823
5635
|
* Attaches a list of input/output commands to the trajectory. The inputs/outputs are set to the specified values right after the specified location was reached. If the specified location is located before the start location (forward direction: value is smaller, backward direction: value is bigger), the input/output is not set.
|
|
5824
|
-
* @type {Array<
|
|
5636
|
+
* @type {Array<SetOutputValuesRequestInner>}
|
|
5825
5637
|
* @memberof StartMovementRequest
|
|
5826
5638
|
*/
|
|
5827
|
-
'set_ios'?: Array<
|
|
5639
|
+
'set_ios'?: Array<SetOutputValuesRequestInner>;
|
|
5828
5640
|
/**
|
|
5829
5641
|
* Defines an input/output that is listened to before the movement. Execution starts if the defined comparator evaluates to `true`.
|
|
5830
5642
|
* @type {StartOnIO}
|
|
@@ -5853,12 +5665,12 @@ export type StartMovementRequestMessageTypeEnum = typeof StartMovementRequestMes
|
|
|
5853
5665
|
export interface StartOnIO {
|
|
5854
5666
|
/**
|
|
5855
5667
|
*
|
|
5856
|
-
* @type {
|
|
5668
|
+
* @type {SetOutputValuesRequestInner}
|
|
5857
5669
|
* @memberof StartOnIO
|
|
5858
5670
|
*/
|
|
5859
|
-
'io':
|
|
5671
|
+
'io': SetOutputValuesRequestInner;
|
|
5860
5672
|
/**
|
|
5861
|
-
* Comparator for the comparison of two values.
|
|
5673
|
+
* Comparator for the comparison of two values. Use the measured I/O as the base value (a) and the expected input/output value as the comparator (b): e.g., a > b.
|
|
5862
5674
|
* @type {Comparator}
|
|
5863
5675
|
* @memberof StartOnIO
|
|
5864
5676
|
*/
|
|
@@ -6562,6 +6374,27 @@ export interface VirtualRobotConfiguration {
|
|
|
6562
6374
|
*/
|
|
6563
6375
|
'content': string;
|
|
6564
6376
|
}
|
|
6377
|
+
/**
|
|
6378
|
+
* The value to compare with the current value of the input/output.
|
|
6379
|
+
* @export
|
|
6380
|
+
* @interface WaitForIOEventRequest
|
|
6381
|
+
*/
|
|
6382
|
+
export interface WaitForIOEventRequest {
|
|
6383
|
+
/**
|
|
6384
|
+
*
|
|
6385
|
+
* @type {SetOutputValuesRequestInner}
|
|
6386
|
+
* @memberof WaitForIOEventRequest
|
|
6387
|
+
*/
|
|
6388
|
+
'io': SetOutputValuesRequestInner;
|
|
6389
|
+
/**
|
|
6390
|
+
* Comparator for the comparison of two values. Use the measured I/O as the base value (a) and the expected input/output value as the comparator (b): e.g., a > b.
|
|
6391
|
+
* @type {Comparator}
|
|
6392
|
+
* @memberof WaitForIOEventRequest
|
|
6393
|
+
*/
|
|
6394
|
+
'comparator': Comparator;
|
|
6395
|
+
}
|
|
6396
|
+
|
|
6397
|
+
|
|
6565
6398
|
/**
|
|
6566
6399
|
* The configuration of a physical Yaskawa robot controller has to contain IP address of the controller.
|
|
6567
6400
|
* @export
|
|
@@ -9278,23 +9111,17 @@ export const ControllerInputsOutputsApiAxiosParamCreator = function (configurati
|
|
|
9278
9111
|
* @summary Wait For
|
|
9279
9112
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9280
9113
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
9281
|
-
* @param {
|
|
9282
|
-
* @param {Comparator} comparisonType
|
|
9283
|
-
* @param {boolean} [booleanValue]
|
|
9284
|
-
* @param {string} [integerValue]
|
|
9285
|
-
* @param {number} [floatValue]
|
|
9114
|
+
* @param {WaitForIOEventRequest} waitForIOEventRequest
|
|
9286
9115
|
* @param {*} [options] Override http request option.
|
|
9287
9116
|
* @throws {RequiredError}
|
|
9288
9117
|
*/
|
|
9289
|
-
waitForIOEvent: async (cell: string, controller: string,
|
|
9118
|
+
waitForIOEvent: async (cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
9290
9119
|
// verify required parameter 'cell' is not null or undefined
|
|
9291
9120
|
assertParamExists('waitForIOEvent', 'cell', cell)
|
|
9292
9121
|
// verify required parameter 'controller' is not null or undefined
|
|
9293
9122
|
assertParamExists('waitForIOEvent', 'controller', controller)
|
|
9294
|
-
// verify required parameter '
|
|
9295
|
-
assertParamExists('waitForIOEvent', '
|
|
9296
|
-
// verify required parameter 'comparisonType' is not null or undefined
|
|
9297
|
-
assertParamExists('waitForIOEvent', 'comparisonType', comparisonType)
|
|
9123
|
+
// verify required parameter 'waitForIOEventRequest' is not null or undefined
|
|
9124
|
+
assertParamExists('waitForIOEvent', 'waitForIOEventRequest', waitForIOEventRequest)
|
|
9298
9125
|
const localVarPath = `/cells/{cell}/controllers/{controller}/ios/wait-for`
|
|
9299
9126
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
9300
9127
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
|
|
@@ -9305,7 +9132,7 @@ export const ControllerInputsOutputsApiAxiosParamCreator = function (configurati
|
|
|
9305
9132
|
baseOptions = configuration.baseOptions;
|
|
9306
9133
|
}
|
|
9307
9134
|
|
|
9308
|
-
const localVarRequestOptions = { method: '
|
|
9135
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
9309
9136
|
const localVarHeaderParameter = {} as any;
|
|
9310
9137
|
const localVarQueryParameter = {} as any;
|
|
9311
9138
|
|
|
@@ -9317,31 +9144,14 @@ export const ControllerInputsOutputsApiAxiosParamCreator = function (configurati
|
|
|
9317
9144
|
// http bearer authentication required
|
|
9318
9145
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
9319
9146
|
|
|
9320
|
-
if (io !== undefined) {
|
|
9321
|
-
localVarQueryParameter['io'] = io;
|
|
9322
|
-
}
|
|
9323
|
-
|
|
9324
|
-
if (comparisonType !== undefined) {
|
|
9325
|
-
localVarQueryParameter['comparison_type'] = comparisonType;
|
|
9326
|
-
}
|
|
9327
|
-
|
|
9328
|
-
if (booleanValue !== undefined) {
|
|
9329
|
-
localVarQueryParameter['boolean_value'] = booleanValue;
|
|
9330
|
-
}
|
|
9331
|
-
|
|
9332
|
-
if (integerValue !== undefined) {
|
|
9333
|
-
localVarQueryParameter['integer_value'] = integerValue;
|
|
9334
|
-
}
|
|
9335
|
-
|
|
9336
|
-
if (floatValue !== undefined) {
|
|
9337
|
-
localVarQueryParameter['float_value'] = floatValue;
|
|
9338
|
-
}
|
|
9339
|
-
|
|
9340
9147
|
|
|
9341
9148
|
|
|
9149
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
9150
|
+
|
|
9342
9151
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9343
9152
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
9344
9153
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
9154
|
+
localVarRequestOptions.data = serializeDataIfNeeded(waitForIOEventRequest, localVarRequestOptions, configuration)
|
|
9345
9155
|
|
|
9346
9156
|
return {
|
|
9347
9157
|
url: toPathString(localVarUrlObj),
|
|
@@ -9426,16 +9236,12 @@ export const ControllerInputsOutputsApiFp = function(configuration?: Configurati
|
|
|
9426
9236
|
* @summary Wait For
|
|
9427
9237
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9428
9238
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
9429
|
-
* @param {
|
|
9430
|
-
* @param {Comparator} comparisonType
|
|
9431
|
-
* @param {boolean} [booleanValue]
|
|
9432
|
-
* @param {string} [integerValue]
|
|
9433
|
-
* @param {number} [floatValue]
|
|
9239
|
+
* @param {WaitForIOEventRequest} waitForIOEventRequest
|
|
9434
9240
|
* @param {*} [options] Override http request option.
|
|
9435
9241
|
* @throws {RequiredError}
|
|
9436
9242
|
*/
|
|
9437
|
-
async waitForIOEvent(cell: string, controller: string,
|
|
9438
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.waitForIOEvent(cell, controller,
|
|
9243
|
+
async waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
9244
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.waitForIOEvent(cell, controller, waitForIOEventRequest, options);
|
|
9439
9245
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9440
9246
|
const localVarOperationServerBasePath = operationServerMap['ControllerInputsOutputsApi.waitForIOEvent']?.[localVarOperationServerIndex]?.url;
|
|
9441
9247
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -9506,16 +9312,12 @@ export const ControllerInputsOutputsApiFactory = function (configuration?: Confi
|
|
|
9506
9312
|
* @summary Wait For
|
|
9507
9313
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9508
9314
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
9509
|
-
* @param {
|
|
9510
|
-
* @param {Comparator} comparisonType
|
|
9511
|
-
* @param {boolean} [booleanValue]
|
|
9512
|
-
* @param {string} [integerValue]
|
|
9513
|
-
* @param {number} [floatValue]
|
|
9315
|
+
* @param {WaitForIOEventRequest} waitForIOEventRequest
|
|
9514
9316
|
* @param {*} [options] Override http request option.
|
|
9515
9317
|
* @throws {RequiredError}
|
|
9516
9318
|
*/
|
|
9517
|
-
waitForIOEvent(cell: string, controller: string,
|
|
9518
|
-
return localVarFp.waitForIOEvent(cell, controller,
|
|
9319
|
+
waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): AxiosPromise<boolean> {
|
|
9320
|
+
return localVarFp.waitForIOEvent(cell, controller, waitForIOEventRequest, options).then((request) => request(axios, basePath));
|
|
9519
9321
|
},
|
|
9520
9322
|
};
|
|
9521
9323
|
};
|
|
@@ -9591,17 +9393,13 @@ export class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
9591
9393
|
* @summary Wait For
|
|
9592
9394
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9593
9395
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
9594
|
-
* @param {
|
|
9595
|
-
* @param {Comparator} comparisonType
|
|
9596
|
-
* @param {boolean} [booleanValue]
|
|
9597
|
-
* @param {string} [integerValue]
|
|
9598
|
-
* @param {number} [floatValue]
|
|
9396
|
+
* @param {WaitForIOEventRequest} waitForIOEventRequest
|
|
9599
9397
|
* @param {*} [options] Override http request option.
|
|
9600
9398
|
* @throws {RequiredError}
|
|
9601
9399
|
* @memberof ControllerInputsOutputsApi
|
|
9602
9400
|
*/
|
|
9603
|
-
public waitForIOEvent(cell: string, controller: string,
|
|
9604
|
-
return ControllerInputsOutputsApiFp(this.configuration).waitForIOEvent(cell, controller,
|
|
9401
|
+
public waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig) {
|
|
9402
|
+
return ControllerInputsOutputsApiFp(this.configuration).waitForIOEvent(cell, controller, waitForIOEventRequest, options).then((request) => request(this.axios, this.basePath));
|
|
9605
9403
|
}
|
|
9606
9404
|
}
|
|
9607
9405
|
|
|
@@ -9716,17 +9514,17 @@ export const CoordinateSystemsApiAxiosParamCreator = function (configuration?: C
|
|
|
9716
9514
|
* @summary Transform
|
|
9717
9515
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9718
9516
|
* @param {string} coordinateSystem Unique identifier addressing a coordinate system.
|
|
9719
|
-
* @param {
|
|
9517
|
+
* @param {PoseInCoordinateSystem} poseInCoordinateSystem
|
|
9720
9518
|
* @param {*} [options] Override http request option.
|
|
9721
9519
|
* @throws {RequiredError}
|
|
9722
9520
|
*/
|
|
9723
|
-
transformInCoordinateSystem: async (cell: string, coordinateSystem: string,
|
|
9521
|
+
transformInCoordinateSystem: async (cell: string, coordinateSystem: string, poseInCoordinateSystem: PoseInCoordinateSystem, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
9724
9522
|
// verify required parameter 'cell' is not null or undefined
|
|
9725
9523
|
assertParamExists('transformInCoordinateSystem', 'cell', cell)
|
|
9726
9524
|
// verify required parameter 'coordinateSystem' is not null or undefined
|
|
9727
9525
|
assertParamExists('transformInCoordinateSystem', 'coordinateSystem', coordinateSystem)
|
|
9728
|
-
// verify required parameter '
|
|
9729
|
-
assertParamExists('transformInCoordinateSystem', '
|
|
9526
|
+
// verify required parameter 'poseInCoordinateSystem' is not null or undefined
|
|
9527
|
+
assertParamExists('transformInCoordinateSystem', 'poseInCoordinateSystem', poseInCoordinateSystem)
|
|
9730
9528
|
const localVarPath = `/cells/{cell}/coordinate-systems/{coordinate-system}/transform`
|
|
9731
9529
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
9732
9530
|
.replace(`{${"coordinate-system"}}`, encodeURIComponent(String(coordinateSystem)));
|
|
@@ -9756,7 +9554,7 @@ export const CoordinateSystemsApiAxiosParamCreator = function (configuration?: C
|
|
|
9756
9554
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
9757
9555
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
9758
9556
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
9759
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
9557
|
+
localVarRequestOptions.data = serializeDataIfNeeded(poseInCoordinateSystem, localVarRequestOptions, configuration)
|
|
9760
9558
|
|
|
9761
9559
|
return {
|
|
9762
9560
|
url: toPathString(localVarUrlObj),
|
|
@@ -9807,12 +9605,12 @@ export const CoordinateSystemsApiFp = function(configuration?: Configuration) {
|
|
|
9807
9605
|
* @summary Transform
|
|
9808
9606
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9809
9607
|
* @param {string} coordinateSystem Unique identifier addressing a coordinate system.
|
|
9810
|
-
* @param {
|
|
9608
|
+
* @param {PoseInCoordinateSystem} poseInCoordinateSystem
|
|
9811
9609
|
* @param {*} [options] Override http request option.
|
|
9812
9610
|
* @throws {RequiredError}
|
|
9813
9611
|
*/
|
|
9814
|
-
async transformInCoordinateSystem(cell: string, coordinateSystem: string,
|
|
9815
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.transformInCoordinateSystem(cell, coordinateSystem,
|
|
9612
|
+
async transformInCoordinateSystem(cell: string, coordinateSystem: string, poseInCoordinateSystem: PoseInCoordinateSystem, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoseInCoordinateSystem>> {
|
|
9613
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.transformInCoordinateSystem(cell, coordinateSystem, poseInCoordinateSystem, options);
|
|
9816
9614
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
9817
9615
|
const localVarOperationServerBasePath = operationServerMap['CoordinateSystemsApi.transformInCoordinateSystem']?.[localVarOperationServerIndex]?.url;
|
|
9818
9616
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -9855,12 +9653,12 @@ export const CoordinateSystemsApiFactory = function (configuration?: Configurati
|
|
|
9855
9653
|
* @summary Transform
|
|
9856
9654
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9857
9655
|
* @param {string} coordinateSystem Unique identifier addressing a coordinate system.
|
|
9858
|
-
* @param {
|
|
9656
|
+
* @param {PoseInCoordinateSystem} poseInCoordinateSystem
|
|
9859
9657
|
* @param {*} [options] Override http request option.
|
|
9860
9658
|
* @throws {RequiredError}
|
|
9861
9659
|
*/
|
|
9862
|
-
transformInCoordinateSystem(cell: string, coordinateSystem: string,
|
|
9863
|
-
return localVarFp.transformInCoordinateSystem(cell, coordinateSystem,
|
|
9660
|
+
transformInCoordinateSystem(cell: string, coordinateSystem: string, poseInCoordinateSystem: PoseInCoordinateSystem, options?: RawAxiosRequestConfig): AxiosPromise<PoseInCoordinateSystem> {
|
|
9661
|
+
return localVarFp.transformInCoordinateSystem(cell, coordinateSystem, poseInCoordinateSystem, options).then((request) => request(axios, basePath));
|
|
9864
9662
|
},
|
|
9865
9663
|
};
|
|
9866
9664
|
};
|
|
@@ -9904,13 +9702,13 @@ export class CoordinateSystemsApi extends BaseAPI {
|
|
|
9904
9702
|
* @summary Transform
|
|
9905
9703
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
9906
9704
|
* @param {string} coordinateSystem Unique identifier addressing a coordinate system.
|
|
9907
|
-
* @param {
|
|
9705
|
+
* @param {PoseInCoordinateSystem} poseInCoordinateSystem
|
|
9908
9706
|
* @param {*} [options] Override http request option.
|
|
9909
9707
|
* @throws {RequiredError}
|
|
9910
9708
|
* @memberof CoordinateSystemsApi
|
|
9911
9709
|
*/
|
|
9912
|
-
public transformInCoordinateSystem(cell: string, coordinateSystem: string,
|
|
9913
|
-
return CoordinateSystemsApiFp(this.configuration).transformInCoordinateSystem(cell, coordinateSystem,
|
|
9710
|
+
public transformInCoordinateSystem(cell: string, coordinateSystem: string, poseInCoordinateSystem: PoseInCoordinateSystem, options?: RawAxiosRequestConfig) {
|
|
9711
|
+
return CoordinateSystemsApiFp(this.configuration).transformInCoordinateSystem(cell, coordinateSystem, poseInCoordinateSystem, options).then((request) => request(this.axios, this.basePath));
|
|
9914
9712
|
}
|
|
9915
9713
|
}
|
|
9916
9714
|
|
|
@@ -12096,7 +11894,7 @@ export const MotionGroupKinematicsApiFp = function(configuration?: Configuration
|
|
|
12096
11894
|
* @param {*} [options] Override http request option.
|
|
12097
11895
|
* @throws {RequiredError}
|
|
12098
11896
|
*/
|
|
12099
|
-
async calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11897
|
+
async calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoseInCoordinateSystem>> {
|
|
12100
11898
|
const localVarAxiosArgs = await localVarAxiosParamCreator.calculateForwardKinematic(cell, motionGroup, tcpPoseRequest, options);
|
|
12101
11899
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
12102
11900
|
const localVarOperationServerBasePath = operationServerMap['MotionGroupKinematicsApi.calculateForwardKinematic']?.[localVarOperationServerIndex]?.url;
|
|
@@ -12162,7 +11960,7 @@ export const MotionGroupKinematicsApiFactory = function (configuration?: Configu
|
|
|
12162
11960
|
* @param {*} [options] Override http request option.
|
|
12163
11961
|
* @throws {RequiredError}
|
|
12164
11962
|
*/
|
|
12165
|
-
calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
11963
|
+
calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): AxiosPromise<PoseInCoordinateSystem> {
|
|
12166
11964
|
return localVarFp.calculateForwardKinematic(cell, motionGroup, tcpPoseRequest, options).then((request) => request(axios, basePath));
|
|
12167
11965
|
},
|
|
12168
11966
|
/**
|
|
@@ -18188,22 +17986,21 @@ export const VirtualRobotApiAxiosParamCreator = function (configuration?: Config
|
|
|
18188
17986
|
};
|
|
18189
17987
|
},
|
|
18190
17988
|
/**
|
|
18191
|
-
*
|
|
17989
|
+
* 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).
|
|
18192
17990
|
* @summary Get Inputs/Outputs
|
|
18193
17991
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
18194
17992
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
18195
|
-
* @param {Array<string>}
|
|
18196
|
-
* @param {IODirection} [direction] Return only inputs/outputs with the specified direction.
|
|
18197
|
-
* @param {IOValueType} [valueType] Return only inputs/outputs with the specified value type.
|
|
18198
|
-
* @param {string} [prefix] Return only inputs/outputs with the specified prefix of unique identifier.
|
|
17993
|
+
* @param {Array<string>} ios
|
|
18199
17994
|
* @param {*} [options] Override http request option.
|
|
18200
17995
|
* @throws {RequiredError}
|
|
18201
17996
|
*/
|
|
18202
|
-
listIOs: async (cell: string, controller: string, ios
|
|
17997
|
+
listIOs: async (cell: string, controller: string, ios: Array<string>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
18203
17998
|
// verify required parameter 'cell' is not null or undefined
|
|
18204
17999
|
assertParamExists('listIOs', 'cell', cell)
|
|
18205
18000
|
// verify required parameter 'controller' is not null or undefined
|
|
18206
18001
|
assertParamExists('listIOs', 'controller', controller)
|
|
18002
|
+
// verify required parameter 'ios' is not null or undefined
|
|
18003
|
+
assertParamExists('listIOs', 'ios', ios)
|
|
18207
18004
|
const localVarPath = `/cells/{cell}/controllers/{controller}/teach-pendant/ios`
|
|
18208
18005
|
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
18209
18006
|
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
|
|
@@ -18230,6 +18027,60 @@ export const VirtualRobotApiAxiosParamCreator = function (configuration?: Config
|
|
|
18230
18027
|
localVarQueryParameter['ios'] = ios;
|
|
18231
18028
|
}
|
|
18232
18029
|
|
|
18030
|
+
|
|
18031
|
+
|
|
18032
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
18033
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
18034
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
18035
|
+
|
|
18036
|
+
return {
|
|
18037
|
+
url: toPathString(localVarUrlObj),
|
|
18038
|
+
options: localVarRequestOptions,
|
|
18039
|
+
};
|
|
18040
|
+
},
|
|
18041
|
+
/**
|
|
18042
|
+
* Lists the input/output descriptions of the virtual robot controller. The input/output descriptions contain information like name, type and unit. Available inputs/outputs are defined by the virtual robot controller. Each input/output has a unique identifier. If no identifiers are specified in the request, all available inputs/outputs are retrieved by this endpoint. Exception: When a filter (e.g., direction, value_type, group) is applied, only matching inputs/outputs are returned.
|
|
18043
|
+
* @summary List Input/Output Descriptions
|
|
18044
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
18045
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
18046
|
+
* @param {Array<string>} [ios]
|
|
18047
|
+
* @param {IODirection} [direction] Return only inputs/outputs with the specified direction.
|
|
18048
|
+
* @param {IOValueType} [valueType] Return only inputs/outputs with the specified value type.
|
|
18049
|
+
* @param {string} [group] Return only inputs/outputs from the specified group.
|
|
18050
|
+
* @param {*} [options] Override http request option.
|
|
18051
|
+
* @throws {RequiredError}
|
|
18052
|
+
*/
|
|
18053
|
+
listVirtualRobotIODescriptions: async (cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
18054
|
+
// verify required parameter 'cell' is not null or undefined
|
|
18055
|
+
assertParamExists('listVirtualRobotIODescriptions', 'cell', cell)
|
|
18056
|
+
// verify required parameter 'controller' is not null or undefined
|
|
18057
|
+
assertParamExists('listVirtualRobotIODescriptions', 'controller', controller)
|
|
18058
|
+
const localVarPath = `/cells/{cell}/controllers/{controller}/teach-pendant/ios/description`
|
|
18059
|
+
.replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
|
|
18060
|
+
.replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
|
|
18061
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
18062
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
18063
|
+
let baseOptions;
|
|
18064
|
+
if (configuration) {
|
|
18065
|
+
baseOptions = configuration.baseOptions;
|
|
18066
|
+
}
|
|
18067
|
+
|
|
18068
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
18069
|
+
const localVarHeaderParameter = {} as any;
|
|
18070
|
+
const localVarQueryParameter = {} as any;
|
|
18071
|
+
|
|
18072
|
+
// authentication BasicAuth required
|
|
18073
|
+
// http basic authentication required
|
|
18074
|
+
setBasicAuthToObject(localVarRequestOptions, configuration)
|
|
18075
|
+
|
|
18076
|
+
// authentication BearerAuth required
|
|
18077
|
+
// http bearer authentication required
|
|
18078
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
18079
|
+
|
|
18080
|
+
if (ios) {
|
|
18081
|
+
localVarQueryParameter['ios'] = ios;
|
|
18082
|
+
}
|
|
18083
|
+
|
|
18233
18084
|
if (direction !== undefined) {
|
|
18234
18085
|
localVarQueryParameter['direction'] = direction;
|
|
18235
18086
|
}
|
|
@@ -18238,8 +18089,8 @@ export const VirtualRobotApiAxiosParamCreator = function (configuration?: Config
|
|
|
18238
18089
|
localVarQueryParameter['value_type'] = valueType;
|
|
18239
18090
|
}
|
|
18240
18091
|
|
|
18241
|
-
if (
|
|
18242
|
-
localVarQueryParameter['
|
|
18092
|
+
if (group !== undefined) {
|
|
18093
|
+
localVarQueryParameter['group'] = group;
|
|
18243
18094
|
}
|
|
18244
18095
|
|
|
18245
18096
|
|
|
@@ -18401,21 +18252,36 @@ export const VirtualRobotApiFp = function(configuration?: Configuration) {
|
|
|
18401
18252
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
18402
18253
|
},
|
|
18403
18254
|
/**
|
|
18404
|
-
*
|
|
18255
|
+
* 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).
|
|
18405
18256
|
* @summary Get Inputs/Outputs
|
|
18406
18257
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
18407
18258
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
18259
|
+
* @param {Array<string>} ios
|
|
18260
|
+
* @param {*} [options] Override http request option.
|
|
18261
|
+
* @throws {RequiredError}
|
|
18262
|
+
*/
|
|
18263
|
+
async listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListIOValuesResponse>> {
|
|
18264
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listIOs(cell, controller, ios, options);
|
|
18265
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
18266
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualRobotApi.listIOs']?.[localVarOperationServerIndex]?.url;
|
|
18267
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
18268
|
+
},
|
|
18269
|
+
/**
|
|
18270
|
+
* Lists the input/output descriptions of the virtual robot controller. The input/output descriptions contain information like name, type and unit. Available inputs/outputs are defined by the virtual robot controller. Each input/output has a unique identifier. If no identifiers are specified in the request, all available inputs/outputs are retrieved by this endpoint. Exception: When a filter (e.g., direction, value_type, group) is applied, only matching inputs/outputs are returned.
|
|
18271
|
+
* @summary List Input/Output Descriptions
|
|
18272
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
18273
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
18408
18274
|
* @param {Array<string>} [ios]
|
|
18409
18275
|
* @param {IODirection} [direction] Return only inputs/outputs with the specified direction.
|
|
18410
18276
|
* @param {IOValueType} [valueType] Return only inputs/outputs with the specified value type.
|
|
18411
|
-
* @param {string} [
|
|
18277
|
+
* @param {string} [group] Return only inputs/outputs from the specified group.
|
|
18412
18278
|
* @param {*} [options] Override http request option.
|
|
18413
18279
|
* @throws {RequiredError}
|
|
18414
18280
|
*/
|
|
18415
|
-
async
|
|
18416
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
18281
|
+
async listVirtualRobotIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListIODescriptionsResponse>> {
|
|
18282
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualRobotIODescriptions(cell, controller, ios, direction, valueType, group, options);
|
|
18417
18283
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
18418
|
-
const localVarOperationServerBasePath = operationServerMap['VirtualRobotApi.
|
|
18284
|
+
const localVarOperationServerBasePath = operationServerMap['VirtualRobotApi.listVirtualRobotIODescriptions']?.[localVarOperationServerIndex]?.url;
|
|
18419
18285
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
18420
18286
|
},
|
|
18421
18287
|
/**
|
|
@@ -18427,7 +18293,7 @@ export const VirtualRobotApiFp = function(configuration?: Configuration) {
|
|
|
18427
18293
|
* @param {*} [options] Override http request option.
|
|
18428
18294
|
* @throws {RequiredError}
|
|
18429
18295
|
*/
|
|
18430
|
-
async setIOValues(cell: string, controller: string, setIOValuesRequestInner: Array<SetIOValuesRequestInner>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
18296
|
+
async setIOValues(cell: string, controller: string, setIOValuesRequestInner: Array<SetIOValuesRequestInner>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
18431
18297
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setIOValues(cell, controller, setIOValuesRequestInner, options);
|
|
18432
18298
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
18433
18299
|
const localVarOperationServerBasePath = operationServerMap['VirtualRobotApi.setIOValues']?.[localVarOperationServerIndex]?.url;
|
|
@@ -18443,7 +18309,7 @@ export const VirtualRobotApiFp = function(configuration?: Configuration) {
|
|
|
18443
18309
|
* @param {*} [options] Override http request option.
|
|
18444
18310
|
* @throws {RequiredError}
|
|
18445
18311
|
*/
|
|
18446
|
-
async setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
18312
|
+
async setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
18447
18313
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options);
|
|
18448
18314
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
18449
18315
|
const localVarOperationServerBasePath = operationServerMap['VirtualRobotApi.setMotionGroupState']?.[localVarOperationServerIndex]?.url;
|
|
@@ -18483,19 +18349,31 @@ export const VirtualRobotApiFactory = function (configuration?: Configuration, b
|
|
|
18483
18349
|
return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios, basePath));
|
|
18484
18350
|
},
|
|
18485
18351
|
/**
|
|
18486
|
-
*
|
|
18352
|
+
* 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).
|
|
18487
18353
|
* @summary Get Inputs/Outputs
|
|
18488
18354
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
18489
18355
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
18356
|
+
* @param {Array<string>} ios
|
|
18357
|
+
* @param {*} [options] Override http request option.
|
|
18358
|
+
* @throws {RequiredError}
|
|
18359
|
+
*/
|
|
18360
|
+
listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): AxiosPromise<ListIOValuesResponse> {
|
|
18361
|
+
return localVarFp.listIOs(cell, controller, ios, options).then((request) => request(axios, basePath));
|
|
18362
|
+
},
|
|
18363
|
+
/**
|
|
18364
|
+
* Lists the input/output descriptions of the virtual robot controller. The input/output descriptions contain information like name, type and unit. Available inputs/outputs are defined by the virtual robot controller. Each input/output has a unique identifier. If no identifiers are specified in the request, all available inputs/outputs are retrieved by this endpoint. Exception: When a filter (e.g., direction, value_type, group) is applied, only matching inputs/outputs are returned.
|
|
18365
|
+
* @summary List Input/Output Descriptions
|
|
18366
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
18367
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
18490
18368
|
* @param {Array<string>} [ios]
|
|
18491
18369
|
* @param {IODirection} [direction] Return only inputs/outputs with the specified direction.
|
|
18492
18370
|
* @param {IOValueType} [valueType] Return only inputs/outputs with the specified value type.
|
|
18493
|
-
* @param {string} [
|
|
18371
|
+
* @param {string} [group] Return only inputs/outputs from the specified group.
|
|
18494
18372
|
* @param {*} [options] Override http request option.
|
|
18495
18373
|
* @throws {RequiredError}
|
|
18496
18374
|
*/
|
|
18497
|
-
|
|
18498
|
-
return localVarFp.
|
|
18375
|
+
listVirtualRobotIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListIODescriptionsResponse> {
|
|
18376
|
+
return localVarFp.listVirtualRobotIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios, basePath));
|
|
18499
18377
|
},
|
|
18500
18378
|
/**
|
|
18501
18379
|
* Sets a list of values of a virtual controller inputs/outputs.
|
|
@@ -18506,7 +18384,7 @@ export const VirtualRobotApiFactory = function (configuration?: Configuration, b
|
|
|
18506
18384
|
* @param {*} [options] Override http request option.
|
|
18507
18385
|
* @throws {RequiredError}
|
|
18508
18386
|
*/
|
|
18509
|
-
setIOValues(cell: string, controller: string, setIOValuesRequestInner: Array<SetIOValuesRequestInner>, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
18387
|
+
setIOValues(cell: string, controller: string, setIOValuesRequestInner: Array<SetIOValuesRequestInner>, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
18510
18388
|
return localVarFp.setIOValues(cell, controller, setIOValuesRequestInner, options).then((request) => request(axios, basePath));
|
|
18511
18389
|
},
|
|
18512
18390
|
/**
|
|
@@ -18519,7 +18397,7 @@ export const VirtualRobotApiFactory = function (configuration?: Configuration, b
|
|
|
18519
18397
|
* @param {*} [options] Override http request option.
|
|
18520
18398
|
* @throws {RequiredError}
|
|
18521
18399
|
*/
|
|
18522
|
-
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
18400
|
+
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
18523
18401
|
return localVarFp.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(axios, basePath));
|
|
18524
18402
|
},
|
|
18525
18403
|
};
|
|
@@ -18560,20 +18438,34 @@ export class VirtualRobotApi extends BaseAPI {
|
|
|
18560
18438
|
}
|
|
18561
18439
|
|
|
18562
18440
|
/**
|
|
18563
|
-
*
|
|
18441
|
+
* 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).
|
|
18564
18442
|
* @summary Get Inputs/Outputs
|
|
18565
18443
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
18566
18444
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
18445
|
+
* @param {Array<string>} ios
|
|
18446
|
+
* @param {*} [options] Override http request option.
|
|
18447
|
+
* @throws {RequiredError}
|
|
18448
|
+
* @memberof VirtualRobotApi
|
|
18449
|
+
*/
|
|
18450
|
+
public listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig) {
|
|
18451
|
+
return VirtualRobotApiFp(this.configuration).listIOs(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
|
|
18452
|
+
}
|
|
18453
|
+
|
|
18454
|
+
/**
|
|
18455
|
+
* Lists the input/output descriptions of the virtual robot controller. The input/output descriptions contain information like name, type and unit. Available inputs/outputs are defined by the virtual robot controller. Each input/output has a unique identifier. If no identifiers are specified in the request, all available inputs/outputs are retrieved by this endpoint. Exception: When a filter (e.g., direction, value_type, group) is applied, only matching inputs/outputs are returned.
|
|
18456
|
+
* @summary List Input/Output Descriptions
|
|
18457
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
18458
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
18567
18459
|
* @param {Array<string>} [ios]
|
|
18568
18460
|
* @param {IODirection} [direction] Return only inputs/outputs with the specified direction.
|
|
18569
18461
|
* @param {IOValueType} [valueType] Return only inputs/outputs with the specified value type.
|
|
18570
|
-
* @param {string} [
|
|
18462
|
+
* @param {string} [group] Return only inputs/outputs from the specified group.
|
|
18571
18463
|
* @param {*} [options] Override http request option.
|
|
18572
18464
|
* @throws {RequiredError}
|
|
18573
18465
|
* @memberof VirtualRobotApi
|
|
18574
18466
|
*/
|
|
18575
|
-
public
|
|
18576
|
-
return VirtualRobotApiFp(this.configuration).
|
|
18467
|
+
public listVirtualRobotIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig) {
|
|
18468
|
+
return VirtualRobotApiFp(this.configuration).listVirtualRobotIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(this.axios, this.basePath));
|
|
18577
18469
|
}
|
|
18578
18470
|
|
|
18579
18471
|
/**
|
|
@@ -18821,7 +18713,7 @@ export const VirtualRobotBehaviorApiFp = function(configuration?: Configuration)
|
|
|
18821
18713
|
* @param {*} [options] Override http request option.
|
|
18822
18714
|
* @throws {RequiredError}
|
|
18823
18715
|
*/
|
|
18824
|
-
async setMotionGroupBehavior(cell: string, controller: string, motionGroup: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
18716
|
+
async setMotionGroupBehavior(cell: string, controller: string, motionGroup: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
18825
18717
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setMotionGroupBehavior(cell, controller, motionGroup, behavior, options);
|
|
18826
18718
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
18827
18719
|
const localVarOperationServerBasePath = operationServerMap['VirtualRobotBehaviorApi.setMotionGroupBehavior']?.[localVarOperationServerIndex]?.url;
|
|
@@ -18871,7 +18763,7 @@ export const VirtualRobotBehaviorApiFactory = function (configuration?: Configur
|
|
|
18871
18763
|
* @param {*} [options] Override http request option.
|
|
18872
18764
|
* @throws {RequiredError}
|
|
18873
18765
|
*/
|
|
18874
|
-
setMotionGroupBehavior(cell: string, controller: string, motionGroup: string, behavior?: Behavior, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
18766
|
+
setMotionGroupBehavior(cell: string, controller: string, motionGroup: string, behavior?: Behavior, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
18875
18767
|
return localVarFp.setMotionGroupBehavior(cell, controller, motionGroup, behavior, options).then((request) => request(axios, basePath));
|
|
18876
18768
|
},
|
|
18877
18769
|
};
|
|
@@ -19239,7 +19131,7 @@ export const VirtualRobotModeApiFp = function(configuration?: Configuration) {
|
|
|
19239
19131
|
* @param {*} [options] Override http request option.
|
|
19240
19132
|
* @throws {RequiredError}
|
|
19241
19133
|
*/
|
|
19242
|
-
async setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
19134
|
+
async setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
19243
19135
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setEmergencyStop(cell, controller, active, options);
|
|
19244
19136
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
19245
19137
|
const localVarOperationServerBasePath = operationServerMap['VirtualRobotModeApi.setEmergencyStop']?.[localVarOperationServerIndex]?.url;
|
|
@@ -19254,7 +19146,7 @@ export const VirtualRobotModeApiFp = function(configuration?: Configuration) {
|
|
|
19254
19146
|
* @param {*} [options] Override http request option.
|
|
19255
19147
|
* @throws {RequiredError}
|
|
19256
19148
|
*/
|
|
19257
|
-
async setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
19149
|
+
async setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
19258
19150
|
const localVarAxiosArgs = await localVarAxiosParamCreator.setOperationMode(cell, controller, mode, options);
|
|
19259
19151
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
19260
19152
|
const localVarOperationServerBasePath = operationServerMap['VirtualRobotModeApi.setOperationMode']?.[localVarOperationServerIndex]?.url;
|
|
@@ -19312,7 +19204,7 @@ export const VirtualRobotModeApiFactory = function (configuration?: Configuratio
|
|
|
19312
19204
|
* @param {*} [options] Override http request option.
|
|
19313
19205
|
* @throws {RequiredError}
|
|
19314
19206
|
*/
|
|
19315
|
-
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
19207
|
+
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
19316
19208
|
return localVarFp.setEmergencyStop(cell, controller, active, options).then((request) => request(axios, basePath));
|
|
19317
19209
|
},
|
|
19318
19210
|
/**
|
|
@@ -19324,7 +19216,7 @@ export const VirtualRobotModeApiFactory = function (configuration?: Configuratio
|
|
|
19324
19216
|
* @param {*} [options] Override http request option.
|
|
19325
19217
|
* @throws {RequiredError}
|
|
19326
19218
|
*/
|
|
19327
|
-
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
19219
|
+
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
19328
19220
|
return localVarFp.setOperationMode(cell, controller, mode, options).then((request) => request(axios, basePath));
|
|
19329
19221
|
},
|
|
19330
19222
|
};
|
|
@@ -19851,7 +19743,7 @@ export const VirtualRobotSetupApiFp = function(configuration?: Configuration) {
|
|
|
19851
19743
|
* @param {*} [options] Override http request option.
|
|
19852
19744
|
* @throws {RequiredError}
|
|
19853
19745
|
*/
|
|
19854
|
-
async addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
19746
|
+
async addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
19855
19747
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, options);
|
|
19856
19748
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
19857
19749
|
const localVarOperationServerBasePath = operationServerMap['VirtualRobotSetupApi.addVirtualRobotCoordinateSystem']?.[localVarOperationServerIndex]?.url;
|
|
@@ -19867,7 +19759,7 @@ export const VirtualRobotSetupApiFp = function(configuration?: Configuration) {
|
|
|
19867
19759
|
* @param {*} [options] Override http request option.
|
|
19868
19760
|
* @throws {RequiredError}
|
|
19869
19761
|
*/
|
|
19870
|
-
async addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
19762
|
+
async addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
19871
19763
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualRobotTcp(cell, controller, motionGroup, robotTcp, options);
|
|
19872
19764
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
19873
19765
|
const localVarOperationServerBasePath = operationServerMap['VirtualRobotSetupApi.addVirtualRobotTcp']?.[localVarOperationServerIndex]?.url;
|
|
@@ -19883,7 +19775,7 @@ export const VirtualRobotSetupApiFp = function(configuration?: Configuration) {
|
|
|
19883
19775
|
* @param {*} [options] Override http request option.
|
|
19884
19776
|
* @throws {RequiredError}
|
|
19885
19777
|
*/
|
|
19886
|
-
async deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
19778
|
+
async deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
19887
19779
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options);
|
|
19888
19780
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
19889
19781
|
const localVarOperationServerBasePath = operationServerMap['VirtualRobotSetupApi.deleteVirtualRobotCoordinateSystem']?.[localVarOperationServerIndex]?.url;
|
|
@@ -19899,7 +19791,7 @@ export const VirtualRobotSetupApiFp = function(configuration?: Configuration) {
|
|
|
19899
19791
|
* @param {*} [options] Override http request option.
|
|
19900
19792
|
* @throws {RequiredError}
|
|
19901
19793
|
*/
|
|
19902
|
-
async deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
19794
|
+
async deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
19903
19795
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualRobotTcp(cell, controller, motionGroup, tcp, options);
|
|
19904
19796
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
19905
19797
|
const localVarOperationServerBasePath = operationServerMap['VirtualRobotSetupApi.deleteVirtualRobotTcp']?.[localVarOperationServerIndex]?.url;
|
|
@@ -19984,7 +19876,7 @@ export const VirtualRobotSetupApiFactory = function (configuration?: Configurati
|
|
|
19984
19876
|
* @param {*} [options] Override http request option.
|
|
19985
19877
|
* @throws {RequiredError}
|
|
19986
19878
|
*/
|
|
19987
|
-
addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
19879
|
+
addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
19988
19880
|
return localVarFp.addVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, options).then((request) => request(axios, basePath));
|
|
19989
19881
|
},
|
|
19990
19882
|
/**
|
|
@@ -19997,7 +19889,7 @@ export const VirtualRobotSetupApiFactory = function (configuration?: Configurati
|
|
|
19997
19889
|
* @param {*} [options] Override http request option.
|
|
19998
19890
|
* @throws {RequiredError}
|
|
19999
19891
|
*/
|
|
20000
|
-
addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
19892
|
+
addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
20001
19893
|
return localVarFp.addVirtualRobotTcp(cell, controller, motionGroup, robotTcp, options).then((request) => request(axios, basePath));
|
|
20002
19894
|
},
|
|
20003
19895
|
/**
|
|
@@ -20010,7 +19902,7 @@ export const VirtualRobotSetupApiFactory = function (configuration?: Configurati
|
|
|
20010
19902
|
* @param {*} [options] Override http request option.
|
|
20011
19903
|
* @throws {RequiredError}
|
|
20012
19904
|
*/
|
|
20013
|
-
deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
19905
|
+
deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
20014
19906
|
return localVarFp.deleteVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios, basePath));
|
|
20015
19907
|
},
|
|
20016
19908
|
/**
|
|
@@ -20023,7 +19915,7 @@ export const VirtualRobotSetupApiFactory = function (configuration?: Configurati
|
|
|
20023
19915
|
* @param {*} [options] Override http request option.
|
|
20024
19916
|
* @throws {RequiredError}
|
|
20025
19917
|
*/
|
|
20026
|
-
deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
19918
|
+
deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
20027
19919
|
return localVarFp.deleteVirtualRobotTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios, basePath));
|
|
20028
19920
|
},
|
|
20029
19921
|
/**
|