@wandelbots/nova-api 25.4.0-dev.9 → 25.4.0-rc.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/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
@@ -606,6 +619,12 @@ export interface Cell {
606
619
  * @memberof Cell
607
620
  */
608
621
  'name': string;
622
+ /**
623
+ * A description of the cell.
624
+ * @type {string}
625
+ * @memberof Cell
626
+ */
627
+ 'description'?: string;
609
628
  /**
610
629
  *
611
630
  * @type {Array<RobotController>}
@@ -652,10 +671,10 @@ export interface Collider {
652
671
  'shape': ColliderShape;
653
672
  /**
654
673
  *
655
- * @type {Pose2}
674
+ * @type {Pose}
656
675
  * @memberof Collider
657
676
  */
658
- 'pose'?: Pose2;
677
+ 'pose'?: Pose;
659
678
  /**
660
679
  * Increases the shape\'s size in all dimensions. Applied in [mm]. Can be used to keep a safe distance to the shape.
661
680
  * @type {number}
@@ -1252,10 +1271,10 @@ export type CreateTriggerRequestConfig = OpcuaNodeValueTriggerConfig;
1252
1271
  export interface CubicSplineParameter {
1253
1272
  /**
1254
1273
  *
1255
- * @type {Pose2}
1274
+ * @type {Pose}
1256
1275
  * @memberof CubicSplineParameter
1257
1276
  */
1258
- 'pose': Pose2;
1277
+ 'pose': Pose;
1259
1278
  /**
1260
1279
  *
1261
1280
  * @type {number}
@@ -1378,6 +1397,19 @@ export const Direction = {
1378
1397
  export type Direction = typeof Direction[keyof typeof Direction];
1379
1398
 
1380
1399
 
1400
+ /**
1401
+ *
1402
+ * @export
1403
+ * @interface Error2
1404
+ */
1405
+ export interface Error2 {
1406
+ /**
1407
+ *
1408
+ * @type {string}
1409
+ * @memberof Error2
1410
+ */
1411
+ 'message': string;
1412
+ }
1381
1413
  /**
1382
1414
  * @type ExecuteJoggingRequest
1383
1415
  * @export
@@ -1523,10 +1555,10 @@ export interface FeedbackCollision {
1523
1555
  'joint_position'?: Array<number>;
1524
1556
  /**
1525
1557
  *
1526
- * @type {Pose2}
1558
+ * @type {Pose}
1527
1559
  * @memberof FeedbackCollision
1528
1560
  */
1529
- 'tcp_pose'?: Pose2;
1561
+ 'tcp_pose'?: Pose;
1530
1562
  /**
1531
1563
  *
1532
1564
  * @type {string}
@@ -1581,10 +1613,10 @@ export type FeedbackJointLimitExceededErrorFeedbackNameEnum = typeof FeedbackJoi
1581
1613
  export interface FeedbackOutOfWorkspace {
1582
1614
  /**
1583
1615
  *
1584
- * @type {Pose2}
1616
+ * @type {Pose}
1585
1617
  * @memberof FeedbackOutOfWorkspace
1586
1618
  */
1587
- 'invalid_tcp_pose'?: Pose2;
1619
+ 'invalid_tcp_pose'?: Pose;
1588
1620
  /**
1589
1621
  *
1590
1622
  * @type {string}
@@ -1656,7 +1688,20 @@ export interface FloatValue {
1656
1688
  * @memberof FloatValue
1657
1689
  */
1658
1690
  'float_value': number;
1691
+ /**
1692
+ *
1693
+ * @type {string}
1694
+ * @memberof FloatValue
1695
+ */
1696
+ 'value_type'?: FloatValueValueTypeEnum;
1659
1697
  }
1698
+
1699
+ export const FloatValueValueTypeEnum = {
1700
+ Float: 'float'
1701
+ } as const;
1702
+
1703
+ export type FloatValueValueTypeEnum = typeof FloatValueValueTypeEnum[keyof typeof FloatValueValueTypeEnum];
1704
+
1660
1705
  /**
1661
1706
  * Representing a force on a specific point in operational space, e.g. on robot flange.
1662
1707
  * @export
@@ -1845,52 +1890,14 @@ export interface IOBooleanValue {
1845
1890
  * @type {string}
1846
1891
  * @memberof IOBooleanValue
1847
1892
  */
1848
- 'io_value_type'?: IOBooleanValueIoValueTypeEnum;
1849
- }
1850
-
1851
- export const IOBooleanValueIoValueTypeEnum = {
1852
- IoBooleanValue: 'IOBooleanValue'
1853
- } as const;
1854
-
1855
- export type IOBooleanValueIoValueTypeEnum = typeof IOBooleanValueIoValueTypeEnum[keyof typeof IOBooleanValueIoValueTypeEnum];
1856
-
1857
- /**
1858
- *
1859
- * @export
1860
- * @interface IOBooleanValue2
1861
- */
1862
- export interface IOBooleanValue2 {
1863
- /**
1864
- *
1865
- * @type {string}
1866
- * @memberof IOBooleanValue2
1867
- */
1868
- 'io': string;
1869
- /**
1870
- *
1871
- * @type {IODirection}
1872
- * @memberof IOBooleanValue2
1873
- */
1874
- 'direction': IODirection;
1875
- /**
1876
- *
1877
- * @type {boolean}
1878
- * @memberof IOBooleanValue2
1879
- */
1880
- 'boolean_value': boolean;
1881
- /**
1882
- *
1883
- * @type {string}
1884
- * @memberof IOBooleanValue2
1885
- */
1886
- 'io_value_type'?: IOBooleanValue2IoValueTypeEnum;
1893
+ 'value_type'?: IOBooleanValueValueTypeEnum;
1887
1894
  }
1888
1895
 
1889
- export const IOBooleanValue2IoValueTypeEnum = {
1890
- IoBooleanValue: 'IOBooleanValue'
1896
+ export const IOBooleanValueValueTypeEnum = {
1897
+ Boolean: 'boolean'
1891
1898
  } as const;
1892
1899
 
1893
- export type IOBooleanValue2IoValueTypeEnum = typeof IOBooleanValue2IoValueTypeEnum[keyof typeof IOBooleanValue2IoValueTypeEnum];
1900
+ export type IOBooleanValueValueTypeEnum = typeof IOBooleanValueValueTypeEnum[keyof typeof IOBooleanValueValueTypeEnum];
1894
1901
 
1895
1902
  /**
1896
1903
  *
@@ -1921,7 +1928,7 @@ export interface IODescription {
1921
1928
  * @type {IODirection}
1922
1929
  * @memberof IODescription
1923
1930
  */
1924
- 'direction'?: IODirection;
1931
+ 'direction': IODirection;
1925
1932
  /**
1926
1933
  *
1927
1934
  * @type {IOValueType}
@@ -1953,7 +1960,7 @@ export interface IODescription {
1953
1960
  * @type IODescriptionMin
1954
1961
  * @export
1955
1962
  */
1956
- export type IODescriptionMin = BooleanValue | FloatValue | IntegerValue;
1963
+ export type IODescriptionMin = { value_type: 'boolean' } & BooleanValue | { value_type: 'float' } & FloatValue | { value_type: 'integer' } & IntegerValue;
1957
1964
 
1958
1965
  /**
1959
1966
  * Identifies the input/output type.
@@ -1992,52 +1999,14 @@ export interface IOFloatValue {
1992
1999
  * @type {string}
1993
2000
  * @memberof IOFloatValue
1994
2001
  */
1995
- 'io_value_type'?: IOFloatValueIoValueTypeEnum;
1996
- }
1997
-
1998
- export const IOFloatValueIoValueTypeEnum = {
1999
- IoFloatValue: 'IOFloatValue'
2000
- } as const;
2001
-
2002
- export type IOFloatValueIoValueTypeEnum = typeof IOFloatValueIoValueTypeEnum[keyof typeof IOFloatValueIoValueTypeEnum];
2003
-
2004
- /**
2005
- *
2006
- * @export
2007
- * @interface IOFloatValue2
2008
- */
2009
- export interface IOFloatValue2 {
2010
- /**
2011
- *
2012
- * @type {string}
2013
- * @memberof IOFloatValue2
2014
- */
2015
- 'io': string;
2016
- /**
2017
- *
2018
- * @type {IODirection}
2019
- * @memberof IOFloatValue2
2020
- */
2021
- 'direction': IODirection;
2022
- /**
2023
- *
2024
- * @type {number}
2025
- * @memberof IOFloatValue2
2026
- */
2027
- 'float_value': number;
2028
- /**
2029
- *
2030
- * @type {string}
2031
- * @memberof IOFloatValue2
2032
- */
2033
- 'io_value_type'?: IOFloatValue2IoValueTypeEnum;
2002
+ 'value_type'?: IOFloatValueValueTypeEnum;
2034
2003
  }
2035
2004
 
2036
- export const IOFloatValue2IoValueTypeEnum = {
2037
- IoFloatValue: 'IOFloatValue'
2005
+ export const IOFloatValueValueTypeEnum = {
2006
+ Float: 'float'
2038
2007
  } as const;
2039
2008
 
2040
- export type IOFloatValue2IoValueTypeEnum = typeof IOFloatValue2IoValueTypeEnum[keyof typeof IOFloatValue2IoValueTypeEnum];
2009
+ export type IOFloatValueValueTypeEnum = typeof IOFloatValueValueTypeEnum[keyof typeof IOFloatValueValueTypeEnum];
2041
2010
 
2042
2011
  /**
2043
2012
  * Input/Output integer value representation.
@@ -2062,84 +2031,15 @@ export interface IOIntegerValue {
2062
2031
  * @type {string}
2063
2032
  * @memberof IOIntegerValue
2064
2033
  */
2065
- 'io_value_type'?: IOIntegerValueIoValueTypeEnum;
2066
- }
2067
-
2068
- export const IOIntegerValueIoValueTypeEnum = {
2069
- IoIntegerValue: 'IOIntegerValue'
2070
- } as const;
2071
-
2072
- export type IOIntegerValueIoValueTypeEnum = typeof IOIntegerValueIoValueTypeEnum[keyof typeof IOIntegerValueIoValueTypeEnum];
2073
-
2074
- /**
2075
- *
2076
- * @export
2077
- * @interface IOIntegerValue2
2078
- */
2079
- export interface IOIntegerValue2 {
2080
- /**
2081
- *
2082
- * @type {string}
2083
- * @memberof IOIntegerValue2
2084
- */
2085
- 'io': string;
2086
- /**
2087
- *
2088
- * @type {IODirection}
2089
- * @memberof IOIntegerValue2
2090
- */
2091
- 'direction': IODirection;
2092
- /**
2093
- *
2094
- * @type {string}
2095
- * @memberof IOIntegerValue2
2096
- */
2097
- 'integer_value': string;
2098
- /**
2099
- *
2100
- * @type {string}
2101
- * @memberof IOIntegerValue2
2102
- */
2103
- 'io_value_type'?: IOIntegerValue2IoValueTypeEnum;
2034
+ 'value_type'?: IOIntegerValueValueTypeEnum;
2104
2035
  }
2105
2036
 
2106
- export const IOIntegerValue2IoValueTypeEnum = {
2107
- IoIntegerValue: 'IOIntegerValue'
2037
+ export const IOIntegerValueValueTypeEnum = {
2038
+ Integer: 'integer'
2108
2039
  } as const;
2109
2040
 
2110
- export type IOIntegerValue2IoValueTypeEnum = typeof IOIntegerValue2IoValueTypeEnum[keyof typeof IOIntegerValue2IoValueTypeEnum];
2041
+ export type IOIntegerValueValueTypeEnum = typeof IOIntegerValueValueTypeEnum[keyof typeof IOIntegerValueValueTypeEnum];
2111
2042
 
2112
- /**
2113
- * Input/Output value representation. Depending on the input/output type, only one of the value fields will be set.
2114
- * @export
2115
- * @interface IOValue
2116
- */
2117
- export interface IOValue {
2118
- /**
2119
- * Unique identifier of the input/output.
2120
- * @type {string}
2121
- * @memberof IOValue
2122
- */
2123
- 'io': string;
2124
- /**
2125
- * Value of a digital input/output. This field is only set if the input/output is of type IO_VALUE_BOOLEAN.
2126
- * @type {boolean}
2127
- * @memberof IOValue
2128
- */
2129
- 'boolean_value'?: boolean;
2130
- /**
2131
- * 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.
2132
- * @type {string}
2133
- * @memberof IOValue
2134
- */
2135
- 'integer_value'?: string;
2136
- /**
2137
- * 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.
2138
- * @type {number}
2139
- * @memberof IOValue
2140
- */
2141
- 'float_value'?: number;
2142
- }
2143
2043
  /**
2144
2044
  * Data type of the input/output.
2145
2045
  * @export
@@ -2155,69 +2055,6 @@ export const IOValueType = {
2155
2055
  export type IOValueType = typeof IOValueType[keyof typeof IOValueType];
2156
2056
 
2157
2057
 
2158
- /**
2159
- *
2160
- * @export
2161
- * @interface IOs
2162
- */
2163
- export interface IOs {
2164
- /**
2165
- *
2166
- * @type {Array<IOsIosInner>}
2167
- * @memberof IOs
2168
- */
2169
- 'ios': Array<IOsIosInner>;
2170
- }
2171
- /**
2172
- *
2173
- * @export
2174
- * @interface IOsIosInner
2175
- */
2176
- export interface IOsIosInner {
2177
- /**
2178
- *
2179
- * @type {string}
2180
- * @memberof IOsIosInner
2181
- */
2182
- 'io': string;
2183
- /**
2184
- *
2185
- * @type {IODirection}
2186
- * @memberof IOsIosInner
2187
- */
2188
- 'direction': IODirection;
2189
- /**
2190
- *
2191
- * @type {string}
2192
- * @memberof IOsIosInner
2193
- */
2194
- 'integer_value': string;
2195
- /**
2196
- *
2197
- * @type {string}
2198
- * @memberof IOsIosInner
2199
- */
2200
- 'io_value_type'?: IOsIosInnerIoValueTypeEnum;
2201
- /**
2202
- *
2203
- * @type {boolean}
2204
- * @memberof IOsIosInner
2205
- */
2206
- 'boolean_value': boolean;
2207
- /**
2208
- *
2209
- * @type {number}
2210
- * @memberof IOsIosInner
2211
- */
2212
- 'float_value': number;
2213
- }
2214
-
2215
- export const IOsIosInnerIoValueTypeEnum = {
2216
- IoFloatValue: 'IOFloatValue'
2217
- } as const;
2218
-
2219
- export type IOsIosInnerIoValueTypeEnum = typeof IOsIosInnerIoValueTypeEnum[keyof typeof IOsIosInnerIoValueTypeEnum];
2220
-
2221
2058
  /**
2222
2059
  * User provided credentials for creating a secret to pull an image from a registry.
2223
2060
  * @export
@@ -2496,18 +2333,31 @@ export interface InitializeMovementResponseInitResponse {
2496
2333
  'error_message'?: string;
2497
2334
  }
2498
2335
  /**
2499
- *
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.
2500
2337
  * @export
2501
2338
  * @interface IntegerValue
2502
2339
  */
2503
2340
  export interface IntegerValue {
2504
2341
  /**
2505
- * 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.
2342
+ *
2506
2343
  * @type {string}
2507
2344
  * @memberof IntegerValue
2508
2345
  */
2509
2346
  'integer_value': string;
2347
+ /**
2348
+ *
2349
+ * @type {string}
2350
+ * @memberof IntegerValue
2351
+ */
2352
+ 'value_type'?: IntegerValueValueTypeEnum;
2510
2353
  }
2354
+
2355
+ export const IntegerValueValueTypeEnum = {
2356
+ Integer: 'integer'
2357
+ } as const;
2358
+
2359
+ export type IntegerValueValueTypeEnum = typeof IntegerValueValueTypeEnum[keyof typeof IntegerValueValueTypeEnum];
2360
+
2511
2361
  /**
2512
2362
  *
2513
2363
  * @export
@@ -3335,7 +3185,7 @@ export interface ModelError {
3335
3185
  * @type {string}
3336
3186
  * @memberof ModelError
3337
3187
  */
3338
- 'code': string;
3188
+ 'code'?: string;
3339
3189
  /**
3340
3190
  *
3341
3191
  * @type {string}
@@ -3382,7 +3232,7 @@ export type MotionCommandBlending = BlendingAuto | BlendingPosition;
3382
3232
  export type MotionCommandPath = PathCartesianPTP | PathCircle | PathCubicSpline | PathJointPTP | PathLine;
3383
3233
 
3384
3234
  /**
3385
- * The data type describes the physically connected motion groups on a robot controller, e.g. a robot arm.
3235
+ * The data type describes the physically connected motion groups on a robot controller, e.g., a robot arm.
3386
3236
  * @export
3387
3237
  * @interface MotionGroup
3388
3238
  */
@@ -3406,11 +3256,17 @@ export interface MotionGroup {
3406
3256
  */
3407
3257
  'name_from_controller': string;
3408
3258
  /**
3409
- * The robot controller model if available. Usable for frontend 3D visualization.
3259
+ * The robot controller model, if available. Usable for frontend 3D visualization.
3410
3260
  * @type {string}
3411
3261
  * @memberof MotionGroup
3412
3262
  */
3413
3263
  'model_from_controller': string;
3264
+ /**
3265
+ * The serial number of the motion group, if available. If not available, the serial number of the robot controller. if available. If not available, then empty.
3266
+ * @type {string}
3267
+ * @memberof MotionGroup
3268
+ */
3269
+ 'serial_number'?: string;
3414
3270
  }
3415
3271
  /**
3416
3272
  *
@@ -3505,12 +3361,30 @@ export interface MotionGroupJoints {
3505
3361
  export const MotionGroupModel = {
3506
3362
  Abb1200583: 'ABB_120_058_3',
3507
3363
  Abb1400816: 'ABB_140_081_6',
3364
+ Abb101003715: 'ABB_1010_037_15',
3365
+ Abb11000584: 'ABB_1100_058_4',
3366
+ Abb110004754: 'ABB_1100_0475_4',
3508
3367
  Abb1200077: 'ABB_1200_07_7',
3509
3368
  Abb130011510: 'ABB_1300_115_10',
3369
+ Abb13000911: 'ABB_1300_09_11',
3370
+ Abb13001412: 'ABB_1300_14_12',
3371
+ Abb1300147: 'ABB_1300_14_7',
3510
3372
  Abb14001445: 'ABB_1400_144_5',
3511
3373
  Abb1520Id154: 'ABB_1520ID_15_4',
3512
3374
  Abb1600126: 'ABB_1600_12_6',
3375
+ Abb16001210: 'ABB_1600_12_10',
3376
+ Abb16001456: 'ABB_1600_145_6',
3377
+ Abb160014510: 'ABB_1600_145_10',
3513
3378
  Abb1660Id1554: 'ABB_1660ID_155_4',
3379
+ Abb260016512: 'ABB_2600_165_12',
3380
+ Abb260016520: 'ABB_2600_165_20',
3381
+ Abb260018512: 'ABB_2600_185_12',
3382
+ Abb2600Id18515: 'ABB_2600ID_185_15',
3383
+ Abb2600Id2008: 'ABB_2600ID_200_8',
3384
+ Abb460025020: 'ABB_4600_250_20',
3385
+ Abb460025540: 'ABB_4600_255_40',
3386
+ Abb460020545: 'ABB_4600_205_45',
3387
+ Abb460020560: 'ABB_4600_205_60',
3514
3388
  FanucCr4iA: 'FANUC_CR4iA',
3515
3389
  FanucCr7iA: 'FANUC_CR7iA',
3516
3390
  FanucCr7iAl: 'FANUC_CR7iAL',
@@ -3533,6 +3407,8 @@ export const MotionGroupModel = {
3533
3407
  FanucM20iD12L: 'FANUC_M20iD12L',
3534
3408
  FanucM20iD25: 'FANUC_M20iD25',
3535
3409
  FanucM20iD35: 'FANUC_M20iD35',
3410
+ FanucM900iB280L: 'FANUC_M900iB280L',
3411
+ FanucM900iB360E: 'FANUC_M900iB360E',
3536
3412
  FanucArcMate50iD: 'FANUC_ARC_Mate_50iD',
3537
3413
  FanucArcMate50iD7L: 'FANUC_ARC_Mate_50iD7L',
3538
3414
  FanucArcMate100iD: 'FANUC_ARC_Mate_100iD',
@@ -3543,6 +3419,8 @@ export const MotionGroupModel = {
3543
3419
  FanucLrMate200iD: 'FANUC_LR_Mate_200iD',
3544
3420
  FanucLrMate200iD4S: 'FANUC_LR_Mate_200iD4S',
3545
3421
  FanucLrMate200iD7L: 'FANUC_LR_Mate_200iD7L',
3422
+ FanucR2000iC125L: 'FANUC_R2000iC125L',
3423
+ FanucR2000iC210F: 'FANUC_R2000iC210F',
3546
3424
  UniversalRobotsUr3: 'UniversalRobots_UR3',
3547
3425
  UniversalRobotsUr5: 'UniversalRobots_UR5',
3548
3426
  UniversalRobotsUr10: 'UniversalRobots_UR10',
@@ -3597,6 +3475,7 @@ export const MotionGroupModel = {
3597
3475
  YaskawaTurn1: 'Yaskawa_TURN1',
3598
3476
  YaskawaTurn2: 'Yaskawa_TURN2',
3599
3477
  YaskawaTurn3: 'Yaskawa_TURN3',
3478
+ KukaKr1502: 'KUKA_KR150_2',
3600
3479
  KukaKr4R600: 'KUKA_KR4_R600',
3601
3480
  KukaKr6R700: 'KUKA_KR6_R700',
3602
3481
  KukaKr6R7002: 'KUKA_KR6_R700_2',
@@ -3606,6 +3485,7 @@ export const MotionGroupModel = {
3606
3485
  KukaKr10R9002: 'KUKA_KR10_R900_2',
3607
3486
  KukaKr10R1100: 'KUKA_KR10_R1100',
3608
3487
  KukaKr10R11002: 'KUKA_KR10_R1100_2',
3488
+ KukaKr12R18102: 'KUKA_KR12_R1810_2',
3609
3489
  KukaKr16R1610: 'KUKA_KR16_R1610',
3610
3490
  KukaKr16R16102: 'KUKA_KR16_R1610_2',
3611
3491
  KukaKr16R2010: 'KUKA_KR16_R2010',
@@ -3622,11 +3502,14 @@ export const MotionGroupModel = {
3622
3502
  KukaKr210R31002: 'KUKA_KR210_R3100_2',
3623
3503
  KukaKr210R3300: 'KUKA_KR210_R3300',
3624
3504
  KukaKr210R33002: 'KUKA_KR210_R3300_2',
3505
+ KukaKr240R2700: 'KUKA_KR240_R2700',
3625
3506
  KukaKr250R27002: 'KUKA_KR250_R2700_2',
3626
3507
  KukaKr270R2700: 'KUKA_KR270_R2700',
3627
3508
  KukaKr270R3100: 'KUKA_KR270_R3100',
3628
3509
  KukaKr270R31002: 'KUKA_KR270_R3100_2',
3629
- KukaKr360R2830: 'KUKA_KR360_R2830'
3510
+ KukaKr360R2830: 'KUKA_KR360_R2830',
3511
+ KukaKr360L2403: 'KUKA_KR360_L240_3',
3512
+ KukaLbrIisy11R1300: 'KUKA_LBR_IISY_11_R1300'
3630
3513
  } as const;
3631
3514
 
3632
3515
  export type MotionGroupModel = typeof MotionGroupModel[keyof typeof MotionGroupModel];
@@ -3657,11 +3540,17 @@ export interface MotionGroupPhysical {
3657
3540
  */
3658
3541
  'active': boolean;
3659
3542
  /**
3660
- * The robot controller model if available. Usable for frontend 3D visualization.
3543
+ * The robot controller model, if available. Usable for frontend 3D visualization.
3661
3544
  * @type {string}
3662
3545
  * @memberof MotionGroupPhysical
3663
3546
  */
3664
3547
  'model_from_controller'?: string;
3548
+ /**
3549
+ * The serial number of the motion group, if available. If not available, the serial number of the robot controller. if available. If not available, the response is empty.
3550
+ * @type {string}
3551
+ * @memberof MotionGroupPhysical
3552
+ */
3553
+ 'serial_number'?: string;
3665
3554
  }
3666
3555
  /**
3667
3556
  * Holding static properties of the motion group.
@@ -3720,10 +3609,10 @@ export interface MotionGroupState {
3720
3609
  'joint_torque'?: Joints;
3721
3610
  /**
3722
3611
  * 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.
3723
- * @type {Pose}
3612
+ * @type {PoseInCoordinateSystem}
3724
3613
  * @memberof MotionGroupState
3725
3614
  */
3726
- 'flange_pose'?: Pose;
3615
+ 'flange_pose'?: PoseInCoordinateSystem;
3727
3616
  /**
3728
3617
  * 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.
3729
3618
  * @type {TcpPose}
@@ -3820,10 +3709,10 @@ export interface Mounting {
3820
3709
  'coordinate_system': string;
3821
3710
  /**
3822
3711
  * The pose offset based on world coordinate system of the mounting.
3823
- * @type {Pose}
3712
+ * @type {PoseInCoordinateSystem}
3824
3713
  * @memberof Mounting
3825
3714
  */
3826
- 'pose': Pose;
3715
+ 'pose': PoseInCoordinateSystem;
3827
3716
  }
3828
3717
  /**
3829
3718
  * @type MoveToTrajectoryViaJointPTPResponse
@@ -3968,6 +3857,20 @@ export interface OpcuaNodeValueTriggerConfig {
3968
3857
  */
3969
3858
  export interface OpcuaNodeValueTriggerConfigNodeValue {
3970
3859
  }
3860
+ /**
3861
+ * The operating state.
3862
+ * @export
3863
+ * @enum {string}
3864
+ */
3865
+
3866
+ export const OperatingState = {
3867
+ Active: 'ACTIVE',
3868
+ Inactive: 'INACTIVE'
3869
+ } as const;
3870
+
3871
+ export type OperatingState = typeof OperatingState[keyof typeof OperatingState];
3872
+
3873
+
3971
3874
  /**
3972
3875
  * Current operation mode of the configured robot controller. Operation modes in which the attached motion groups can be moved are: - OPERATION_MODE_MANUAL (if enabling switch is pressed) - OPERATION_MODE_MANUAL_T1 (if enabling switch is pressed) - OPERATION_MODE_MANUAL_T2 (if enabling switch is pressed) - OPERATION_MODE_AUTO (without needing to press enabling switch) All other modes are considered as non-operational.
3973
3876
  * @export
@@ -4100,10 +4003,10 @@ export interface Path {
4100
4003
  export interface PathCartesianPTP {
4101
4004
  /**
4102
4005
  *
4103
- * @type {Pose2}
4006
+ * @type {Pose}
4104
4007
  * @memberof PathCartesianPTP
4105
4008
  */
4106
- 'target_pose': Pose2;
4009
+ 'target_pose': Pose;
4107
4010
  /**
4108
4011
  *
4109
4012
  * @type {string}
@@ -4126,16 +4029,16 @@ export type PathCartesianPTPPathDefinitionNameEnum = typeof PathCartesianPTPPath
4126
4029
  export interface PathCircle {
4127
4030
  /**
4128
4031
  *
4129
- * @type {Pose2}
4032
+ * @type {Pose}
4130
4033
  * @memberof PathCircle
4131
4034
  */
4132
- 'via_pose': Pose2;
4035
+ 'via_pose': Pose;
4133
4036
  /**
4134
4037
  *
4135
- * @type {Pose2}
4038
+ * @type {Pose}
4136
4039
  * @memberof PathCircle
4137
4040
  */
4138
- 'target_pose': Pose2;
4041
+ 'target_pose': Pose;
4139
4042
  /**
4140
4043
  *
4141
4044
  * @type {string}
@@ -4210,10 +4113,10 @@ export type PathJointPTPPathDefinitionNameEnum = typeof PathJointPTPPathDefiniti
4210
4113
  export interface PathLine {
4211
4114
  /**
4212
4115
  *
4213
- * @type {Pose2}
4116
+ * @type {Pose}
4214
4117
  * @memberof PathLine
4215
4118
  */
4216
- 'target_pose': Pose2;
4119
+ 'target_pose': Pose;
4217
4120
  /**
4218
4121
  *
4219
4122
  * @type {string}
@@ -4294,12 +4197,12 @@ export interface PauseMovementResponsePauseResponse {
4294
4197
  export interface PauseOnIO {
4295
4198
  /**
4296
4199
  *
4297
- * @type {IOValue}
4200
+ * @type {SetOutputValuesRequestInner}
4298
4201
  * @memberof PauseOnIO
4299
4202
  */
4300
- 'io': IOValue;
4203
+ 'io': SetOutputValuesRequestInner;
4301
4204
  /**
4302
- * Comparator for the comparison of two values. The lest side of the comparison is the measured input/output value and the right side is the expected input/output value.
4205
+ * 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.
4303
4206
  * @type {Comparator}
4304
4207
  * @memberof PauseOnIO
4305
4208
  */
@@ -4628,7 +4531,7 @@ export interface PointCloud {
4628
4531
  'pointcloud': string;
4629
4532
  }
4630
4533
  /**
4631
- * 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).
4534
+ * Defines a pose in 3D space. A pose is a combination of a position and an orientation. The position is applied before the orientation.
4632
4535
  * @export
4633
4536
  * @interface Pose
4634
4537
  */
@@ -4638,38 +4541,38 @@ export interface Pose {
4638
4541
  * @type {Array<number>}
4639
4542
  * @memberof Pose
4640
4543
  */
4641
- 'position': Array<number>;
4544
+ 'position'?: Array<number>;
4642
4545
  /**
4643
- * A three-dimensional vector [x, y, z] with double precision.
4546
+ * 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.
4644
4547
  * @type {Array<number>}
4645
4548
  * @memberof Pose
4646
4549
  */
4647
4550
  'orientation'?: Array<number>;
4648
- /**
4649
- * Unique identifier addressing the reference coordinate system of the pose. Default is the world coordinate system.
4650
- * @type {string}
4651
- * @memberof Pose
4652
- */
4653
- 'coordinate_system'?: string;
4654
4551
  }
4655
4552
  /**
4656
- * Defines a pose in 3D space. A pose is a combination of a position and an orientation. The position is applied before the orientation.
4553
+ * 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).
4657
4554
  * @export
4658
- * @interface Pose2
4555
+ * @interface PoseInCoordinateSystem
4659
4556
  */
4660
- export interface Pose2 {
4557
+ export interface PoseInCoordinateSystem {
4661
4558
  /**
4662
4559
  * A three-dimensional vector [x, y, z] with double precision.
4663
4560
  * @type {Array<number>}
4664
- * @memberof Pose2
4561
+ * @memberof PoseInCoordinateSystem
4665
4562
  */
4666
- 'position'?: Array<number>;
4563
+ 'position': Array<number>;
4667
4564
  /**
4668
4565
  * 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.
4669
4566
  * @type {Array<number>}
4670
- * @memberof Pose2
4567
+ * @memberof PoseInCoordinateSystem
4671
4568
  */
4672
4569
  'orientation'?: Array<number>;
4570
+ /**
4571
+ * Unique identifier addressing the reference coordinate system of the pose. Default is the world coordinate system.
4572
+ * @type {string}
4573
+ * @memberof PoseInCoordinateSystem
4574
+ */
4575
+ 'coordinate_system'?: string;
4673
4576
  }
4674
4577
  /**
4675
4578
  * The metadata of a program.
@@ -5518,13 +5421,34 @@ export type ServiceStatusPhase = typeof ServiceStatusPhase[keyof typeof ServiceS
5518
5421
 
5519
5422
 
5520
5423
  /**
5521
- *
5424
+ * Response containing both the overall operating state of the cell and detailed status information for each service within the cell. The operating state indicates whether the cell is active or inactive, while the service statuses provide specific health and operational information for individual service running in the cell.
5522
5425
  * @export
5523
- * @enum {string}
5426
+ * @interface ServiceStatusResponse
5524
5427
  */
5428
+ export interface ServiceStatusResponse {
5429
+ /**
5430
+ *
5431
+ * @type {OperatingState}
5432
+ * @memberof ServiceStatusResponse
5433
+ */
5434
+ 'operating_state': OperatingState;
5435
+ /**
5436
+ *
5437
+ * @type {Array<ServiceStatus>}
5438
+ * @memberof ServiceStatusResponse
5439
+ */
5440
+ 'service_status': Array<ServiceStatus>;
5441
+ }
5525
5442
 
5526
- export const ServiceStatusSeverity = {
5527
- Info: 'INFO',
5443
+
5444
+ /**
5445
+ *
5446
+ * @export
5447
+ * @enum {string}
5448
+ */
5449
+
5450
+ export const ServiceStatusSeverity = {
5451
+ Info: 'INFO',
5528
5452
  Warning: 'WARNING',
5529
5453
  Error: 'ERROR'
5530
5454
  } as const;
@@ -5559,36 +5483,17 @@ export interface ServiceStatusStatus {
5559
5483
  }
5560
5484
 
5561
5485
 
5562
- /**
5563
- * Defines an input/output that should be set upon reaching a certain location on the trajectory.
5564
- * @export
5565
- * @interface SetIO
5566
- */
5567
- export interface SetIO {
5568
- /**
5569
- *
5570
- * @type {IOValue}
5571
- * @memberof SetIO
5572
- */
5573
- 'io': IOValue;
5574
- /**
5575
- * The location on the trajectory where the input/output should be set.
5576
- * @type {number}
5577
- * @memberof SetIO
5578
- */
5579
- 'location': number;
5580
- }
5581
5486
  /**
5582
5487
  * @type SetIOValuesRequestInner
5583
5488
  * @export
5584
5489
  */
5585
- export type SetIOValuesRequestInner = IOBooleanValue2 | IOFloatValue2 | IOIntegerValue2;
5490
+ export type SetIOValuesRequestInner = IOBooleanValue | IOFloatValue | IOIntegerValue;
5586
5491
 
5587
5492
  /**
5588
5493
  * @type SetOutputValuesRequestInner
5589
5494
  * @export
5590
5495
  */
5591
- export type SetOutputValuesRequestInner = IOBooleanValue | IOFloatValue | IOIntegerValue;
5496
+ export type SetOutputValuesRequestInner = { value_type: 'boolean' } & IOBooleanValue | { value_type: 'float' } & IOFloatValue | { value_type: 'integer' } & IOIntegerValue;
5592
5497
 
5593
5498
  /**
5594
5499
  *
@@ -5755,10 +5660,10 @@ export interface StartMovementRequest {
5755
5660
  'direction': Direction;
5756
5661
  /**
5757
5662
  * 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.
5758
- * @type {Array<SetIO>}
5663
+ * @type {Array<SetOutputValuesRequestInner>}
5759
5664
  * @memberof StartMovementRequest
5760
5665
  */
5761
- 'set_ios'?: Array<SetIO>;
5666
+ 'set_ios'?: Array<SetOutputValuesRequestInner>;
5762
5667
  /**
5763
5668
  * Defines an input/output that is listened to before the movement. Execution starts if the defined comparator evaluates to `true`.
5764
5669
  * @type {StartOnIO}
@@ -5787,12 +5692,12 @@ export type StartMovementRequestMessageTypeEnum = typeof StartMovementRequestMes
5787
5692
  export interface StartOnIO {
5788
5693
  /**
5789
5694
  *
5790
- * @type {IOValue}
5695
+ * @type {SetOutputValuesRequestInner}
5791
5696
  * @memberof StartOnIO
5792
5697
  */
5793
- 'io': IOValue;
5698
+ 'io': SetOutputValuesRequestInner;
5794
5699
  /**
5795
- * Comparator for the comparison of two values. The lest side of the comparison is the measured input/output value and the right side is the expected input/output value.
5700
+ * 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.
5796
5701
  * @type {Comparator}
5797
5702
  * @memberof StartOnIO
5798
5703
  */
@@ -6403,9 +6308,26 @@ export const VirtualControllerTypes = {
6403
6308
  AbbIrb110004754: 'abb-irb1100_0475_4',
6404
6309
  AbbIrb11000584: 'abb-irb1100_058_4',
6405
6310
  AbbIrb12007: 'abb-irb1200_7',
6311
+ AbbIrb13000911: 'abb-irb1300_09_11',
6406
6312
  AbbIrb130011510: 'abb-irb1300_115_10',
6313
+ AbbIrb13001412: 'abb-irb1300_14_12',
6314
+ AbbIrb1300147: 'abb-irb1300_14_7',
6315
+ AbbIrb16001210: 'abb-irb1600_12_10',
6316
+ AbbIrb1600126: 'abb-irb1600_12_6',
6317
+ AbbIrb160014510: 'abb-irb1600_145_10',
6318
+ AbbIrb16001456: 'abb-irb1600_145_6',
6319
+ AbbIrb2600Id18515: 'abb-irb2600ID_185_15',
6320
+ AbbIrb2600Id2008: 'abb-irb2600ID_200_8',
6321
+ AbbIrb260016512: 'abb-irb2600_165_12',
6322
+ AbbIrb260016520: 'abb-irb2600_165_20',
6323
+ AbbIrb260018512: 'abb-irb2600_185_12',
6324
+ AbbIrb460020545: 'abb-irb4600_205_45',
6325
+ AbbIrb460020560: 'abb-irb4600_205_60',
6326
+ AbbIrb460025020: 'abb-irb4600_250_20',
6327
+ AbbIrb460025540: 'abb-irb4600_255_40',
6407
6328
  FanucArcMate100iD: 'fanuc-arc_mate_100iD',
6408
6329
  FanucArcMate120iD: 'fanuc-arc_mate_120iD',
6330
+ FanucArcMate120iD12L: 'fanuc-arc_mate_120iD12L',
6409
6331
  FanucArcMate120iD35: 'fanuc-arc_mate_120iD35',
6410
6332
  FanucCr35ib: 'fanuc-cr35ib',
6411
6333
  FanucCr7ia: 'fanuc-cr7ia',
@@ -6423,13 +6345,14 @@ export const VirtualControllerTypes = {
6423
6345
  FanucM20iD35: 'fanuc-m20iD35',
6424
6346
  FanucM900iB280L: 'fanuc-m900iB280L',
6425
6347
  FanucM900iB360E: 'fanuc-m900iB360E',
6426
- FanucR2000ic210f: 'fanuc-r2000ic210f',
6427
6348
  FanucR2000ic125l: 'fanuc-r2000ic125l',
6349
+ FanucR2000ic210f: 'fanuc-r2000ic210f',
6428
6350
  KukaKr10R1100: 'kuka-kr10_r1100',
6429
6351
  KukaKr10R11002: 'kuka-kr10_r1100_2',
6430
6352
  KukaKr10R900: 'kuka-kr10_r900',
6431
6353
  KukaKr10R9002: 'kuka-kr10_r900_2',
6432
6354
  KukaKr120R27002: 'kuka-kr120_r2700_2',
6355
+ KukaKr12R18102: 'kuka-kr12_r1810_2',
6433
6356
  KukaKr1502: 'kuka-kr150_2',
6434
6357
  KukaKr16R16102: 'kuka-kr16_r1610_2',
6435
6358
  KukaKr16R20102: 'kuka-kr16_r2010_2',
@@ -6496,6 +6419,27 @@ export interface VirtualRobotConfiguration {
6496
6419
  */
6497
6420
  'content': string;
6498
6421
  }
6422
+ /**
6423
+ * The value to compare with the current value of the input/output.
6424
+ * @export
6425
+ * @interface WaitForIOEventRequest
6426
+ */
6427
+ export interface WaitForIOEventRequest {
6428
+ /**
6429
+ *
6430
+ * @type {SetOutputValuesRequestInner}
6431
+ * @memberof WaitForIOEventRequest
6432
+ */
6433
+ 'io': SetOutputValuesRequestInner;
6434
+ /**
6435
+ * 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.
6436
+ * @type {Comparator}
6437
+ * @memberof WaitForIOEventRequest
6438
+ */
6439
+ 'comparator': Comparator;
6440
+ }
6441
+
6442
+
6499
6443
  /**
6500
6444
  * The configuration of a physical Yaskawa robot controller has to contain IP address of the controller.
6501
6445
  * @export
@@ -7310,6 +7254,55 @@ export const CellApiAxiosParamCreator = function (configuration?: Configuration)
7310
7254
 
7311
7255
 
7312
7256
 
7257
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
7258
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
7259
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
7260
+
7261
+ return {
7262
+ url: toPathString(localVarUrlObj),
7263
+ options: localVarRequestOptions,
7264
+ };
7265
+ },
7266
+ /**
7267
+ * Deactivate or activate the services of a cell.
7268
+ * @summary Operating State
7269
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7270
+ * @param {OperatingState} operatingState Set state of the cell. Active or inactive.
7271
+ * @param {*} [options] Override http request option.
7272
+ * @throws {RequiredError}
7273
+ */
7274
+ setCellStatus: async (cell: string, operatingState: OperatingState, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
7275
+ // verify required parameter 'cell' is not null or undefined
7276
+ assertParamExists('setCellStatus', 'cell', cell)
7277
+ // verify required parameter 'operatingState' is not null or undefined
7278
+ assertParamExists('setCellStatus', 'operatingState', operatingState)
7279
+ const localVarPath = `/cells/{cell}/status`
7280
+ .replace(`{${"cell"}}`, encodeURIComponent(String(cell)));
7281
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
7282
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
7283
+ let baseOptions;
7284
+ if (configuration) {
7285
+ baseOptions = configuration.baseOptions;
7286
+ }
7287
+
7288
+ const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
7289
+ const localVarHeaderParameter = {} as any;
7290
+ const localVarQueryParameter = {} as any;
7291
+
7292
+ // authentication BasicAuth required
7293
+ // http basic authentication required
7294
+ setBasicAuthToObject(localVarRequestOptions, configuration)
7295
+
7296
+ // authentication BearerAuth required
7297
+ // http bearer authentication required
7298
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
7299
+
7300
+ if (operatingState !== undefined) {
7301
+ localVarQueryParameter['operating_state'] = operatingState;
7302
+ }
7303
+
7304
+
7305
+
7313
7306
  setSearchParams(localVarUrlObj, localVarQueryParameter);
7314
7307
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
7315
7308
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -7430,7 +7423,7 @@ export const CellApiFp = function(configuration?: Configuration) {
7430
7423
  * @param {*} [options] Override http request option.
7431
7424
  * @throws {RequiredError}
7432
7425
  */
7433
- async getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ServiceStatus>>> {
7426
+ async getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceStatusResponse>> {
7434
7427
  const localVarAxiosArgs = await localVarAxiosParamCreator.getCellStatus(cell, options);
7435
7428
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
7436
7429
  const localVarOperationServerBasePath = operationServerMap['CellApi.getCellStatus']?.[localVarOperationServerIndex]?.url;
@@ -7448,6 +7441,20 @@ export const CellApiFp = function(configuration?: Configuration) {
7448
7441
  const localVarOperationServerBasePath = operationServerMap['CellApi.listCells']?.[localVarOperationServerIndex]?.url;
7449
7442
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7450
7443
  },
7444
+ /**
7445
+ * Deactivate or activate the services of a cell.
7446
+ * @summary Operating State
7447
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7448
+ * @param {OperatingState} operatingState Set state of the cell. Active or inactive.
7449
+ * @param {*} [options] Override http request option.
7450
+ * @throws {RequiredError}
7451
+ */
7452
+ async setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
7453
+ const localVarAxiosArgs = await localVarAxiosParamCreator.setCellStatus(cell, operatingState, options);
7454
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
7455
+ const localVarOperationServerBasePath = operationServerMap['CellApi.setCellStatus']?.[localVarOperationServerIndex]?.url;
7456
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7457
+ },
7451
7458
  /**
7452
7459
  * Update the definition of the entire Cell.
7453
7460
  * @summary Update Configuration
@@ -7512,7 +7519,7 @@ export const CellApiFactory = function (configuration?: Configuration, basePath?
7512
7519
  * @param {*} [options] Override http request option.
7513
7520
  * @throws {RequiredError}
7514
7521
  */
7515
- getCellStatus(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ServiceStatus>> {
7522
+ getCellStatus(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<ServiceStatusResponse> {
7516
7523
  return localVarFp.getCellStatus(cell, options).then((request) => request(axios, basePath));
7517
7524
  },
7518
7525
  /**
@@ -7524,6 +7531,17 @@ export const CellApiFactory = function (configuration?: Configuration, basePath?
7524
7531
  listCells(options?: RawAxiosRequestConfig): AxiosPromise<Array<string>> {
7525
7532
  return localVarFp.listCells(options).then((request) => request(axios, basePath));
7526
7533
  },
7534
+ /**
7535
+ * Deactivate or activate the services of a cell.
7536
+ * @summary Operating State
7537
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7538
+ * @param {OperatingState} operatingState Set state of the cell. Active or inactive.
7539
+ * @param {*} [options] Override http request option.
7540
+ * @throws {RequiredError}
7541
+ */
7542
+ setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): AxiosPromise<void> {
7543
+ return localVarFp.setCellStatus(cell, operatingState, options).then((request) => request(axios, basePath));
7544
+ },
7527
7545
  /**
7528
7546
  * Update the definition of the entire Cell.
7529
7547
  * @summary Update Configuration
@@ -7607,6 +7625,19 @@ export class CellApi extends BaseAPI {
7607
7625
  return CellApiFp(this.configuration).listCells(options).then((request) => request(this.axios, this.basePath));
7608
7626
  }
7609
7627
 
7628
+ /**
7629
+ * Deactivate or activate the services of a cell.
7630
+ * @summary Operating State
7631
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7632
+ * @param {OperatingState} operatingState Set state of the cell. Active or inactive.
7633
+ * @param {*} [options] Override http request option.
7634
+ * @throws {RequiredError}
7635
+ * @memberof CellApi
7636
+ */
7637
+ public setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig) {
7638
+ return CellApiFp(this.configuration).setCellStatus(cell, operatingState, options).then((request) => request(this.axios, this.basePath));
7639
+ }
7640
+
7610
7641
  /**
7611
7642
  * Update the definition of the entire Cell.
7612
7643
  * @summary Update Configuration
@@ -7625,23 +7656,27 @@ export class CellApi extends BaseAPI {
7625
7656
 
7626
7657
 
7627
7658
  /**
7628
- * ConfigurationApi - axios parameter creator
7659
+ * ControllerApi - axios parameter creator
7629
7660
  * @export
7630
7661
  */
7631
- export const ConfigurationApiAxiosParamCreator = function (configuration?: Configuration) {
7662
+ export const ControllerApiAxiosParamCreator = function (configuration?: Configuration) {
7632
7663
  return {
7633
7664
  /**
7634
- * Retrieves a configuration backup based on provided resource identifiers.
7635
- * @summary Retrieve Configuration Backup
7636
- * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
7637
- * @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
7665
+ * Add a robot controller to the cell. <!-- theme: warning --> > **WARNING** > > Using it in conjunction with the settings app may lead to unpredictable behavior.
7666
+ * @summary Add Robot Controller
7667
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7668
+ * @param {RobotController} robotController
7669
+ * @param {number} [completionTimeout]
7638
7670
  * @param {*} [options] Override http request option.
7639
7671
  * @throws {RequiredError}
7640
7672
  */
7641
- backupConfiguration: async (resources: Array<string>, metadata?: { [key: string]: string; }, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
7642
- // verify required parameter 'resources' is not null or undefined
7643
- assertParamExists('backupConfiguration', 'resources', resources)
7644
- const localVarPath = `/system/configuration`;
7673
+ addRobotController: async (cell: string, robotController: RobotController, completionTimeout?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
7674
+ // verify required parameter 'cell' is not null or undefined
7675
+ assertParamExists('addRobotController', 'cell', cell)
7676
+ // verify required parameter 'robotController' is not null or undefined
7677
+ assertParamExists('addRobotController', 'robotController', robotController)
7678
+ const localVarPath = `/cells/{cell}/controllers`
7679
+ .replace(`{${"cell"}}`, encodeURIComponent(String(cell)));
7645
7680
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
7646
7681
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
7647
7682
  let baseOptions;
@@ -7649,7 +7684,7 @@ export const ConfigurationApiAxiosParamCreator = function (configuration?: Confi
7649
7684
  baseOptions = configuration.baseOptions;
7650
7685
  }
7651
7686
 
7652
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
7687
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
7653
7688
  const localVarHeaderParameter = {} as any;
7654
7689
  const localVarQueryParameter = {} as any;
7655
7690
 
@@ -7661,19 +7696,18 @@ export const ConfigurationApiAxiosParamCreator = function (configuration?: Confi
7661
7696
  // http bearer authentication required
7662
7697
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
7663
7698
 
7664
- if (resources) {
7665
- localVarQueryParameter['resources'] = resources.join(COLLECTION_FORMATS.csv);
7666
- }
7667
-
7668
- if (metadata !== undefined) {
7669
- localVarQueryParameter['metadata'] = metadata;
7699
+ if (completionTimeout !== undefined) {
7700
+ localVarQueryParameter['completion_timeout'] = completionTimeout;
7670
7701
  }
7671
7702
 
7672
7703
 
7673
7704
 
7705
+ localVarHeaderParameter['Content-Type'] = 'application/json';
7706
+
7674
7707
  setSearchParams(localVarUrlObj, localVarQueryParameter);
7675
7708
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
7676
7709
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
7710
+ localVarRequestOptions.data = serializeDataIfNeeded(robotController, localVarRequestOptions, configuration)
7677
7711
 
7678
7712
  return {
7679
7713
  url: toPathString(localVarUrlObj),
@@ -7681,13 +7715,18 @@ export const ConfigurationApiAxiosParamCreator = function (configuration?: Confi
7681
7715
  };
7682
7716
  },
7683
7717
  /**
7684
- * Retrieves a list of all available configuration resources for backup purposes.
7685
- * @summary List Configuration Resources
7718
+ * Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with the \'Add Robot Controller\' endpoint. <!-- theme: warning --> > **WARNING** > > Using it in conjunction with the settings app may lead to unpredictable behavior.
7719
+ * @summary Clear Robot Controllers
7720
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7721
+ * @param {number} [completionTimeout]
7686
7722
  * @param {*} [options] Override http request option.
7687
7723
  * @throws {RequiredError}
7688
7724
  */
7689
- listConfigurationResources: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
7690
- const localVarPath = `/system/configuration/resources`;
7725
+ clearRobotControllers: async (cell: string, completionTimeout?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
7726
+ // verify required parameter 'cell' is not null or undefined
7727
+ assertParamExists('clearRobotControllers', 'cell', cell)
7728
+ const localVarPath = `/cells/{cell}/controllers`
7729
+ .replace(`{${"cell"}}`, encodeURIComponent(String(cell)));
7691
7730
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
7692
7731
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
7693
7732
  let baseOptions;
@@ -7695,7 +7734,7 @@ export const ConfigurationApiAxiosParamCreator = function (configuration?: Confi
7695
7734
  baseOptions = configuration.baseOptions;
7696
7735
  }
7697
7736
 
7698
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
7737
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
7699
7738
  const localVarHeaderParameter = {} as any;
7700
7739
  const localVarQueryParameter = {} as any;
7701
7740
 
@@ -7707,6 +7746,10 @@ export const ConfigurationApiAxiosParamCreator = function (configuration?: Confi
7707
7746
  // http bearer authentication required
7708
7747
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
7709
7748
 
7749
+ if (completionTimeout !== undefined) {
7750
+ localVarQueryParameter['completion_timeout'] = completionTimeout;
7751
+ }
7752
+
7710
7753
 
7711
7754
 
7712
7755
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -7719,19 +7762,22 @@ export const ConfigurationApiAxiosParamCreator = function (configuration?: Confi
7719
7762
  };
7720
7763
  },
7721
7764
  /**
7722
- * Restores a previously backed up configuration.
7723
- * @summary Restore Configuration Backup
7724
- * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
7725
- * @param {File} body Backup file stream containing the configuration to restore.
7765
+ * Delete a robot controller from the cell. <!-- theme: warning --> > **WARNING** > > Using it in conjunction with the settings app may lead to unpredictable behavior.
7766
+ * @summary Delete Robot Controller
7767
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7768
+ * @param {string} controller Unique identifier to address a controller in the cell.
7769
+ * @param {number} [completionTimeout]
7726
7770
  * @param {*} [options] Override http request option.
7727
7771
  * @throws {RequiredError}
7728
7772
  */
7729
- restoreConfiguration: async (resources: Array<string>, body: File, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
7730
- // verify required parameter 'resources' is not null or undefined
7731
- assertParamExists('restoreConfiguration', 'resources', resources)
7732
- // verify required parameter 'body' is not null or undefined
7733
- assertParamExists('restoreConfiguration', 'body', body)
7734
- const localVarPath = `/system/configuration`;
7773
+ deleteRobotController: async (cell: string, controller: string, completionTimeout?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
7774
+ // verify required parameter 'cell' is not null or undefined
7775
+ assertParamExists('deleteRobotController', 'cell', cell)
7776
+ // verify required parameter 'controller' is not null or undefined
7777
+ assertParamExists('deleteRobotController', 'controller', controller)
7778
+ const localVarPath = `/cells/{cell}/controllers/{controller}`
7779
+ .replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
7780
+ .replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
7735
7781
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
7736
7782
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
7737
7783
  let baseOptions;
@@ -7739,7 +7785,7 @@ export const ConfigurationApiAxiosParamCreator = function (configuration?: Confi
7739
7785
  baseOptions = configuration.baseOptions;
7740
7786
  }
7741
7787
 
7742
- const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
7788
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
7743
7789
  const localVarHeaderParameter = {} as any;
7744
7790
  const localVarQueryParameter = {} as any;
7745
7791
 
@@ -7751,373 +7797,72 @@ export const ConfigurationApiAxiosParamCreator = function (configuration?: Confi
7751
7797
  // http bearer authentication required
7752
7798
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
7753
7799
 
7754
- if (resources) {
7755
- localVarQueryParameter['resources'] = resources.join(COLLECTION_FORMATS.csv);
7800
+ if (completionTimeout !== undefined) {
7801
+ localVarQueryParameter['completion_timeout'] = completionTimeout;
7756
7802
  }
7757
7803
 
7758
7804
 
7759
7805
 
7760
- localVarHeaderParameter['Content-Type'] = 'application/gzip';
7761
-
7762
7806
  setSearchParams(localVarUrlObj, localVarQueryParameter);
7763
7807
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
7764
7808
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
7765
- localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)
7766
7809
 
7767
7810
  return {
7768
7811
  url: toPathString(localVarUrlObj),
7769
7812
  options: localVarRequestOptions,
7770
7813
  };
7771
7814
  },
7772
- }
7773
- };
7774
-
7775
- /**
7776
- * ConfigurationApi - functional programming interface
7777
- * @export
7778
- */
7779
- export const ConfigurationApiFp = function(configuration?: Configuration) {
7780
- const localVarAxiosParamCreator = ConfigurationApiAxiosParamCreator(configuration)
7781
- return {
7782
7815
  /**
7783
- * Retrieves a configuration backup based on provided resource identifiers.
7784
- * @summary Retrieve Configuration Backup
7785
- * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
7786
- * @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
7816
+ * Get the current state of a robot controller.
7817
+ * @summary State of Device
7818
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7819
+ * @param {string} controller Unique identifier to address a controller in the cell.
7787
7820
  * @param {*} [options] Override http request option.
7788
7821
  * @throws {RequiredError}
7789
7822
  */
7790
- async backupConfiguration(resources: Array<string>, metadata?: { [key: string]: string; }, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>> {
7791
- const localVarAxiosArgs = await localVarAxiosParamCreator.backupConfiguration(resources, metadata, options);
7792
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
7793
- const localVarOperationServerBasePath = operationServerMap['ConfigurationApi.backupConfiguration']?.[localVarOperationServerIndex]?.url;
7794
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7823
+ getCurrentRobotControllerState: async (cell: string, controller: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
7824
+ // verify required parameter 'cell' is not null or undefined
7825
+ assertParamExists('getCurrentRobotControllerState', 'cell', cell)
7826
+ // verify required parameter 'controller' is not null or undefined
7827
+ assertParamExists('getCurrentRobotControllerState', 'controller', controller)
7828
+ const localVarPath = `/cells/{cell}/controllers/{controller}/state`
7829
+ .replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
7830
+ .replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
7831
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
7832
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
7833
+ let baseOptions;
7834
+ if (configuration) {
7835
+ baseOptions = configuration.baseOptions;
7836
+ }
7837
+
7838
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
7839
+ const localVarHeaderParameter = {} as any;
7840
+ const localVarQueryParameter = {} as any;
7841
+
7842
+ // authentication BasicAuth required
7843
+ // http basic authentication required
7844
+ setBasicAuthToObject(localVarRequestOptions, configuration)
7845
+
7846
+ // authentication BearerAuth required
7847
+ // http bearer authentication required
7848
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
7849
+
7850
+
7851
+
7852
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
7853
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
7854
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
7855
+
7856
+ return {
7857
+ url: toPathString(localVarUrlObj),
7858
+ options: localVarRequestOptions,
7859
+ };
7795
7860
  },
7796
7861
  /**
7797
- * Retrieves a list of all available configuration resources for backup purposes.
7798
- * @summary List Configuration Resources
7799
- * @param {*} [options] Override http request option.
7800
- * @throws {RequiredError}
7801
- */
7802
- async listConfigurationResources(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ConfigurationResource>>> {
7803
- const localVarAxiosArgs = await localVarAxiosParamCreator.listConfigurationResources(options);
7804
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
7805
- const localVarOperationServerBasePath = operationServerMap['ConfigurationApi.listConfigurationResources']?.[localVarOperationServerIndex]?.url;
7806
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7807
- },
7808
- /**
7809
- * Restores a previously backed up configuration.
7810
- * @summary Restore Configuration Backup
7811
- * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
7812
- * @param {File} body Backup file stream containing the configuration to restore.
7813
- * @param {*} [options] Override http request option.
7814
- * @throws {RequiredError}
7815
- */
7816
- async restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>> {
7817
- const localVarAxiosArgs = await localVarAxiosParamCreator.restoreConfiguration(resources, body, options);
7818
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
7819
- const localVarOperationServerBasePath = operationServerMap['ConfigurationApi.restoreConfiguration']?.[localVarOperationServerIndex]?.url;
7820
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7821
- },
7822
- }
7823
- };
7824
-
7825
- /**
7826
- * ConfigurationApi - factory interface
7827
- * @export
7828
- */
7829
- export const ConfigurationApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
7830
- const localVarFp = ConfigurationApiFp(configuration)
7831
- return {
7832
- /**
7833
- * Retrieves a configuration backup based on provided resource identifiers.
7834
- * @summary Retrieve Configuration Backup
7835
- * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
7836
- * @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
7837
- * @param {*} [options] Override http request option.
7838
- * @throws {RequiredError}
7839
- */
7840
- backupConfiguration(resources: Array<string>, metadata?: { [key: string]: string; }, options?: RawAxiosRequestConfig): AxiosPromise<File> {
7841
- return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios, basePath));
7842
- },
7843
- /**
7844
- * Retrieves a list of all available configuration resources for backup purposes.
7845
- * @summary List Configuration Resources
7846
- * @param {*} [options] Override http request option.
7847
- * @throws {RequiredError}
7848
- */
7849
- listConfigurationResources(options?: RawAxiosRequestConfig): AxiosPromise<Array<ConfigurationResource>> {
7850
- return localVarFp.listConfigurationResources(options).then((request) => request(axios, basePath));
7851
- },
7852
- /**
7853
- * Restores a previously backed up configuration.
7854
- * @summary Restore Configuration Backup
7855
- * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
7856
- * @param {File} body Backup file stream containing the configuration to restore.
7857
- * @param {*} [options] Override http request option.
7858
- * @throws {RequiredError}
7859
- */
7860
- restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): AxiosPromise<File> {
7861
- return localVarFp.restoreConfiguration(resources, body, options).then((request) => request(axios, basePath));
7862
- },
7863
- };
7864
- };
7865
-
7866
- /**
7867
- * ConfigurationApi - object-oriented interface
7868
- * @export
7869
- * @class ConfigurationApi
7870
- * @extends {BaseAPI}
7871
- */
7872
- export class ConfigurationApi extends BaseAPI {
7873
- /**
7874
- * Retrieves a configuration backup based on provided resource identifiers.
7875
- * @summary Retrieve Configuration Backup
7876
- * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
7877
- * @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
7878
- * @param {*} [options] Override http request option.
7879
- * @throws {RequiredError}
7880
- * @memberof ConfigurationApi
7881
- */
7882
- public backupConfiguration(resources: Array<string>, metadata?: { [key: string]: string; }, options?: RawAxiosRequestConfig) {
7883
- return ConfigurationApiFp(this.configuration).backupConfiguration(resources, metadata, options).then((request) => request(this.axios, this.basePath));
7884
- }
7885
-
7886
- /**
7887
- * Retrieves a list of all available configuration resources for backup purposes.
7888
- * @summary List Configuration Resources
7889
- * @param {*} [options] Override http request option.
7890
- * @throws {RequiredError}
7891
- * @memberof ConfigurationApi
7892
- */
7893
- public listConfigurationResources(options?: RawAxiosRequestConfig) {
7894
- return ConfigurationApiFp(this.configuration).listConfigurationResources(options).then((request) => request(this.axios, this.basePath));
7895
- }
7896
-
7897
- /**
7898
- * Restores a previously backed up configuration.
7899
- * @summary Restore Configuration Backup
7900
- * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
7901
- * @param {File} body Backup file stream containing the configuration to restore.
7902
- * @param {*} [options] Override http request option.
7903
- * @throws {RequiredError}
7904
- * @memberof ConfigurationApi
7905
- */
7906
- public restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig) {
7907
- return ConfigurationApiFp(this.configuration).restoreConfiguration(resources, body, options).then((request) => request(this.axios, this.basePath));
7908
- }
7909
- }
7910
-
7911
-
7912
-
7913
- /**
7914
- * ControllerApi - axios parameter creator
7915
- * @export
7916
- */
7917
- export const ControllerApiAxiosParamCreator = function (configuration?: Configuration) {
7918
- return {
7919
- /**
7920
- * Add a robot controller to the cell. <!-- theme: warning --> > **WARNING** > > Using it in conjunction with the settings app may lead to unpredictable behavior.
7921
- * @summary Add Robot Controller
7922
- * @param {string} cell Unique identifier addressing a cell in all API calls.
7923
- * @param {RobotController} robotController
7924
- * @param {number} [completionTimeout]
7925
- * @param {*} [options] Override http request option.
7926
- * @throws {RequiredError}
7927
- */
7928
- addRobotController: async (cell: string, robotController: RobotController, completionTimeout?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
7929
- // verify required parameter 'cell' is not null or undefined
7930
- assertParamExists('addRobotController', 'cell', cell)
7931
- // verify required parameter 'robotController' is not null or undefined
7932
- assertParamExists('addRobotController', 'robotController', robotController)
7933
- const localVarPath = `/cells/{cell}/controllers`
7934
- .replace(`{${"cell"}}`, encodeURIComponent(String(cell)));
7935
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
7936
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
7937
- let baseOptions;
7938
- if (configuration) {
7939
- baseOptions = configuration.baseOptions;
7940
- }
7941
-
7942
- const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
7943
- const localVarHeaderParameter = {} as any;
7944
- const localVarQueryParameter = {} as any;
7945
-
7946
- // authentication BasicAuth required
7947
- // http basic authentication required
7948
- setBasicAuthToObject(localVarRequestOptions, configuration)
7949
-
7950
- // authentication BearerAuth required
7951
- // http bearer authentication required
7952
- await setBearerAuthToObject(localVarHeaderParameter, configuration)
7953
-
7954
- if (completionTimeout !== undefined) {
7955
- localVarQueryParameter['completion_timeout'] = completionTimeout;
7956
- }
7957
-
7958
-
7959
-
7960
- localVarHeaderParameter['Content-Type'] = 'application/json';
7961
-
7962
- setSearchParams(localVarUrlObj, localVarQueryParameter);
7963
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
7964
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
7965
- localVarRequestOptions.data = serializeDataIfNeeded(robotController, localVarRequestOptions, configuration)
7966
-
7967
- return {
7968
- url: toPathString(localVarUrlObj),
7969
- options: localVarRequestOptions,
7970
- };
7971
- },
7972
- /**
7973
- * Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with the \'Add Robot Controller\' endpoint. <!-- theme: warning --> > **WARNING** > > Using it in conjunction with the settings app may lead to unpredictable behavior.
7974
- * @summary Clear Robot Controllers
7975
- * @param {string} cell Unique identifier addressing a cell in all API calls.
7976
- * @param {number} [completionTimeout]
7977
- * @param {*} [options] Override http request option.
7978
- * @throws {RequiredError}
7979
- */
7980
- clearRobotControllers: async (cell: string, completionTimeout?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
7981
- // verify required parameter 'cell' is not null or undefined
7982
- assertParamExists('clearRobotControllers', 'cell', cell)
7983
- const localVarPath = `/cells/{cell}/controllers`
7984
- .replace(`{${"cell"}}`, encodeURIComponent(String(cell)));
7985
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
7986
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
7987
- let baseOptions;
7988
- if (configuration) {
7989
- baseOptions = configuration.baseOptions;
7990
- }
7991
-
7992
- const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
7993
- const localVarHeaderParameter = {} as any;
7994
- const localVarQueryParameter = {} as any;
7995
-
7996
- // authentication BasicAuth required
7997
- // http basic authentication required
7998
- setBasicAuthToObject(localVarRequestOptions, configuration)
7999
-
8000
- // authentication BearerAuth required
8001
- // http bearer authentication required
8002
- await setBearerAuthToObject(localVarHeaderParameter, configuration)
8003
-
8004
- if (completionTimeout !== undefined) {
8005
- localVarQueryParameter['completion_timeout'] = completionTimeout;
8006
- }
8007
-
8008
-
8009
-
8010
- setSearchParams(localVarUrlObj, localVarQueryParameter);
8011
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
8012
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
8013
-
8014
- return {
8015
- url: toPathString(localVarUrlObj),
8016
- options: localVarRequestOptions,
8017
- };
8018
- },
8019
- /**
8020
- * Delete a robot controller from the cell. <!-- theme: warning --> > **WARNING** > > Using it in conjunction with the settings app may lead to unpredictable behavior.
8021
- * @summary Delete Robot Controller
8022
- * @param {string} cell Unique identifier addressing a cell in all API calls.
8023
- * @param {string} controller Unique identifier to address a controller in the cell.
8024
- * @param {number} [completionTimeout]
8025
- * @param {*} [options] Override http request option.
8026
- * @throws {RequiredError}
8027
- */
8028
- deleteRobotController: async (cell: string, controller: string, completionTimeout?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
8029
- // verify required parameter 'cell' is not null or undefined
8030
- assertParamExists('deleteRobotController', 'cell', cell)
8031
- // verify required parameter 'controller' is not null or undefined
8032
- assertParamExists('deleteRobotController', 'controller', controller)
8033
- const localVarPath = `/cells/{cell}/controllers/{controller}`
8034
- .replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
8035
- .replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
8036
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
8037
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
8038
- let baseOptions;
8039
- if (configuration) {
8040
- baseOptions = configuration.baseOptions;
8041
- }
8042
-
8043
- const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
8044
- const localVarHeaderParameter = {} as any;
8045
- const localVarQueryParameter = {} as any;
8046
-
8047
- // authentication BasicAuth required
8048
- // http basic authentication required
8049
- setBasicAuthToObject(localVarRequestOptions, configuration)
8050
-
8051
- // authentication BearerAuth required
8052
- // http bearer authentication required
8053
- await setBearerAuthToObject(localVarHeaderParameter, configuration)
8054
-
8055
- if (completionTimeout !== undefined) {
8056
- localVarQueryParameter['completion_timeout'] = completionTimeout;
8057
- }
8058
-
8059
-
8060
-
8061
- setSearchParams(localVarUrlObj, localVarQueryParameter);
8062
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
8063
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
8064
-
8065
- return {
8066
- url: toPathString(localVarUrlObj),
8067
- options: localVarRequestOptions,
8068
- };
8069
- },
8070
- /**
8071
- * Get the current state of a robot controller.
8072
- * @summary State of Device
8073
- * @param {string} cell Unique identifier addressing a cell in all API calls.
8074
- * @param {string} controller Unique identifier to address a controller in the cell.
8075
- * @param {*} [options] Override http request option.
8076
- * @throws {RequiredError}
8077
- */
8078
- getCurrentRobotControllerState: async (cell: string, controller: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
8079
- // verify required parameter 'cell' is not null or undefined
8080
- assertParamExists('getCurrentRobotControllerState', 'cell', cell)
8081
- // verify required parameter 'controller' is not null or undefined
8082
- assertParamExists('getCurrentRobotControllerState', 'controller', controller)
8083
- const localVarPath = `/cells/{cell}/controllers/{controller}/state`
8084
- .replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
8085
- .replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
8086
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
8087
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
8088
- let baseOptions;
8089
- if (configuration) {
8090
- baseOptions = configuration.baseOptions;
8091
- }
8092
-
8093
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
8094
- const localVarHeaderParameter = {} as any;
8095
- const localVarQueryParameter = {} as any;
8096
-
8097
- // authentication BasicAuth required
8098
- // http basic authentication required
8099
- setBasicAuthToObject(localVarRequestOptions, configuration)
8100
-
8101
- // authentication BearerAuth required
8102
- // http bearer authentication required
8103
- await setBearerAuthToObject(localVarHeaderParameter, configuration)
8104
-
8105
-
8106
-
8107
- setSearchParams(localVarUrlObj, localVarQueryParameter);
8108
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
8109
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
8110
-
8111
- return {
8112
- url: toPathString(localVarUrlObj),
8113
- options: localVarRequestOptions,
8114
- };
8115
- },
8116
- /**
8117
- * Get the current robot system mode of a registered robot controller. The robot system mode indicates if a robot controller can be used. See [setDefaultMode](setDefaultMode) for more information about the different modes. The mode is influenced by the operating mode of the robot controller. The operating mode can be changed via [setDefaultMode](setDefaultMode). Request the current operating mode of the robot controller via [getCurrentRobotControllerState](getCurrentRobotControllerState).
8118
- * @summary Current Mode
8119
- * @param {string} cell Unique identifier addressing a cell in all API calls.
8120
- * @param {string} controller Unique identifier to address a controller in the cell.
7862
+ * Get the current robot system mode of a registered robot controller. The robot system mode indicates if a robot controller can be used. See [setDefaultMode](setDefaultMode) for more information about the different modes. The mode is influenced by the operating mode of the robot controller. The operating mode can be changed via [setDefaultMode](setDefaultMode). Request the current operating mode of the robot controller via [getCurrentRobotControllerState](getCurrentRobotControllerState).
7863
+ * @summary Current Mode
7864
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7865
+ * @param {string} controller Unique identifier to address a controller in the cell.
8121
7866
  * @param {*} [options] Override http request option.
8122
7867
  * @throws {RequiredError}
8123
7868
  */
@@ -9411,23 +9156,17 @@ export const ControllerInputsOutputsApiAxiosParamCreator = function (configurati
9411
9156
  * @summary Wait For
9412
9157
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9413
9158
  * @param {string} controller Unique identifier to address a controller in the cell.
9414
- * @param {string} io
9415
- * @param {Comparator} comparisonType
9416
- * @param {boolean} [booleanValue]
9417
- * @param {string} [integerValue]
9418
- * @param {number} [floatValue]
9159
+ * @param {WaitForIOEventRequest} waitForIOEventRequest
9419
9160
  * @param {*} [options] Override http request option.
9420
9161
  * @throws {RequiredError}
9421
9162
  */
9422
- waitForIOEvent: async (cell: string, controller: string, io: string, comparisonType: Comparator, booleanValue?: boolean, integerValue?: string, floatValue?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
9163
+ waitForIOEvent: async (cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
9423
9164
  // verify required parameter 'cell' is not null or undefined
9424
9165
  assertParamExists('waitForIOEvent', 'cell', cell)
9425
9166
  // verify required parameter 'controller' is not null or undefined
9426
9167
  assertParamExists('waitForIOEvent', 'controller', controller)
9427
- // verify required parameter 'io' is not null or undefined
9428
- assertParamExists('waitForIOEvent', 'io', io)
9429
- // verify required parameter 'comparisonType' is not null or undefined
9430
- assertParamExists('waitForIOEvent', 'comparisonType', comparisonType)
9168
+ // verify required parameter 'waitForIOEventRequest' is not null or undefined
9169
+ assertParamExists('waitForIOEvent', 'waitForIOEventRequest', waitForIOEventRequest)
9431
9170
  const localVarPath = `/cells/{cell}/controllers/{controller}/ios/wait-for`
9432
9171
  .replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
9433
9172
  .replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
@@ -9438,7 +9177,7 @@ export const ControllerInputsOutputsApiAxiosParamCreator = function (configurati
9438
9177
  baseOptions = configuration.baseOptions;
9439
9178
  }
9440
9179
 
9441
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
9180
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
9442
9181
  const localVarHeaderParameter = {} as any;
9443
9182
  const localVarQueryParameter = {} as any;
9444
9183
 
@@ -9450,31 +9189,14 @@ export const ControllerInputsOutputsApiAxiosParamCreator = function (configurati
9450
9189
  // http bearer authentication required
9451
9190
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
9452
9191
 
9453
- if (io !== undefined) {
9454
- localVarQueryParameter['io'] = io;
9455
- }
9456
-
9457
- if (comparisonType !== undefined) {
9458
- localVarQueryParameter['comparison_type'] = comparisonType;
9459
- }
9460
-
9461
- if (booleanValue !== undefined) {
9462
- localVarQueryParameter['boolean_value'] = booleanValue;
9463
- }
9464
-
9465
- if (integerValue !== undefined) {
9466
- localVarQueryParameter['integer_value'] = integerValue;
9467
- }
9468
-
9469
- if (floatValue !== undefined) {
9470
- localVarQueryParameter['float_value'] = floatValue;
9471
- }
9472
-
9473
9192
 
9474
9193
 
9194
+ localVarHeaderParameter['Content-Type'] = 'application/json';
9195
+
9475
9196
  setSearchParams(localVarUrlObj, localVarQueryParameter);
9476
9197
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
9477
9198
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
9199
+ localVarRequestOptions.data = serializeDataIfNeeded(waitForIOEventRequest, localVarRequestOptions, configuration)
9478
9200
 
9479
9201
  return {
9480
9202
  url: toPathString(localVarUrlObj),
@@ -9559,16 +9281,12 @@ export const ControllerInputsOutputsApiFp = function(configuration?: Configurati
9559
9281
  * @summary Wait For
9560
9282
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9561
9283
  * @param {string} controller Unique identifier to address a controller in the cell.
9562
- * @param {string} io
9563
- * @param {Comparator} comparisonType
9564
- * @param {boolean} [booleanValue]
9565
- * @param {string} [integerValue]
9566
- * @param {number} [floatValue]
9284
+ * @param {WaitForIOEventRequest} waitForIOEventRequest
9567
9285
  * @param {*} [options] Override http request option.
9568
9286
  * @throws {RequiredError}
9569
9287
  */
9570
- async waitForIOEvent(cell: string, controller: string, io: string, comparisonType: Comparator, booleanValue?: boolean, integerValue?: string, floatValue?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
9571
- const localVarAxiosArgs = await localVarAxiosParamCreator.waitForIOEvent(cell, controller, io, comparisonType, booleanValue, integerValue, floatValue, options);
9288
+ async waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
9289
+ const localVarAxiosArgs = await localVarAxiosParamCreator.waitForIOEvent(cell, controller, waitForIOEventRequest, options);
9572
9290
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
9573
9291
  const localVarOperationServerBasePath = operationServerMap['ControllerInputsOutputsApi.waitForIOEvent']?.[localVarOperationServerIndex]?.url;
9574
9292
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -9639,16 +9357,12 @@ export const ControllerInputsOutputsApiFactory = function (configuration?: Confi
9639
9357
  * @summary Wait For
9640
9358
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9641
9359
  * @param {string} controller Unique identifier to address a controller in the cell.
9642
- * @param {string} io
9643
- * @param {Comparator} comparisonType
9644
- * @param {boolean} [booleanValue]
9645
- * @param {string} [integerValue]
9646
- * @param {number} [floatValue]
9360
+ * @param {WaitForIOEventRequest} waitForIOEventRequest
9647
9361
  * @param {*} [options] Override http request option.
9648
9362
  * @throws {RequiredError}
9649
9363
  */
9650
- waitForIOEvent(cell: string, controller: string, io: string, comparisonType: Comparator, booleanValue?: boolean, integerValue?: string, floatValue?: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean> {
9651
- return localVarFp.waitForIOEvent(cell, controller, io, comparisonType, booleanValue, integerValue, floatValue, options).then((request) => request(axios, basePath));
9364
+ waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): AxiosPromise<boolean> {
9365
+ return localVarFp.waitForIOEvent(cell, controller, waitForIOEventRequest, options).then((request) => request(axios, basePath));
9652
9366
  },
9653
9367
  };
9654
9368
  };
@@ -9724,17 +9438,13 @@ export class ControllerInputsOutputsApi extends BaseAPI {
9724
9438
  * @summary Wait For
9725
9439
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9726
9440
  * @param {string} controller Unique identifier to address a controller in the cell.
9727
- * @param {string} io
9728
- * @param {Comparator} comparisonType
9729
- * @param {boolean} [booleanValue]
9730
- * @param {string} [integerValue]
9731
- * @param {number} [floatValue]
9441
+ * @param {WaitForIOEventRequest} waitForIOEventRequest
9732
9442
  * @param {*} [options] Override http request option.
9733
9443
  * @throws {RequiredError}
9734
9444
  * @memberof ControllerInputsOutputsApi
9735
9445
  */
9736
- public waitForIOEvent(cell: string, controller: string, io: string, comparisonType: Comparator, booleanValue?: boolean, integerValue?: string, floatValue?: number, options?: RawAxiosRequestConfig) {
9737
- return ControllerInputsOutputsApiFp(this.configuration).waitForIOEvent(cell, controller, io, comparisonType, booleanValue, integerValue, floatValue, options).then((request) => request(this.axios, this.basePath));
9446
+ public waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig) {
9447
+ return ControllerInputsOutputsApiFp(this.configuration).waitForIOEvent(cell, controller, waitForIOEventRequest, options).then((request) => request(this.axios, this.basePath));
9738
9448
  }
9739
9449
  }
9740
9450
 
@@ -9849,17 +9559,17 @@ export const CoordinateSystemsApiAxiosParamCreator = function (configuration?: C
9849
9559
  * @summary Transform
9850
9560
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9851
9561
  * @param {string} coordinateSystem Unique identifier addressing a coordinate system.
9852
- * @param {Pose} pose
9562
+ * @param {PoseInCoordinateSystem} poseInCoordinateSystem
9853
9563
  * @param {*} [options] Override http request option.
9854
9564
  * @throws {RequiredError}
9855
9565
  */
9856
- transformInCoordinateSystem: async (cell: string, coordinateSystem: string, pose: Pose, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
9566
+ transformInCoordinateSystem: async (cell: string, coordinateSystem: string, poseInCoordinateSystem: PoseInCoordinateSystem, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
9857
9567
  // verify required parameter 'cell' is not null or undefined
9858
9568
  assertParamExists('transformInCoordinateSystem', 'cell', cell)
9859
9569
  // verify required parameter 'coordinateSystem' is not null or undefined
9860
9570
  assertParamExists('transformInCoordinateSystem', 'coordinateSystem', coordinateSystem)
9861
- // verify required parameter 'pose' is not null or undefined
9862
- assertParamExists('transformInCoordinateSystem', 'pose', pose)
9571
+ // verify required parameter 'poseInCoordinateSystem' is not null or undefined
9572
+ assertParamExists('transformInCoordinateSystem', 'poseInCoordinateSystem', poseInCoordinateSystem)
9863
9573
  const localVarPath = `/cells/{cell}/coordinate-systems/{coordinate-system}/transform`
9864
9574
  .replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
9865
9575
  .replace(`{${"coordinate-system"}}`, encodeURIComponent(String(coordinateSystem)));
@@ -9889,7 +9599,7 @@ export const CoordinateSystemsApiAxiosParamCreator = function (configuration?: C
9889
9599
  setSearchParams(localVarUrlObj, localVarQueryParameter);
9890
9600
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
9891
9601
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
9892
- localVarRequestOptions.data = serializeDataIfNeeded(pose, localVarRequestOptions, configuration)
9602
+ localVarRequestOptions.data = serializeDataIfNeeded(poseInCoordinateSystem, localVarRequestOptions, configuration)
9893
9603
 
9894
9604
  return {
9895
9605
  url: toPathString(localVarUrlObj),
@@ -9940,12 +9650,12 @@ export const CoordinateSystemsApiFp = function(configuration?: Configuration) {
9940
9650
  * @summary Transform
9941
9651
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9942
9652
  * @param {string} coordinateSystem Unique identifier addressing a coordinate system.
9943
- * @param {Pose} pose
9653
+ * @param {PoseInCoordinateSystem} poseInCoordinateSystem
9944
9654
  * @param {*} [options] Override http request option.
9945
9655
  * @throws {RequiredError}
9946
9656
  */
9947
- async transformInCoordinateSystem(cell: string, coordinateSystem: string, pose: Pose, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pose>> {
9948
- const localVarAxiosArgs = await localVarAxiosParamCreator.transformInCoordinateSystem(cell, coordinateSystem, pose, options);
9657
+ async transformInCoordinateSystem(cell: string, coordinateSystem: string, poseInCoordinateSystem: PoseInCoordinateSystem, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoseInCoordinateSystem>> {
9658
+ const localVarAxiosArgs = await localVarAxiosParamCreator.transformInCoordinateSystem(cell, coordinateSystem, poseInCoordinateSystem, options);
9949
9659
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
9950
9660
  const localVarOperationServerBasePath = operationServerMap['CoordinateSystemsApi.transformInCoordinateSystem']?.[localVarOperationServerIndex]?.url;
9951
9661
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -9988,12 +9698,12 @@ export const CoordinateSystemsApiFactory = function (configuration?: Configurati
9988
9698
  * @summary Transform
9989
9699
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9990
9700
  * @param {string} coordinateSystem Unique identifier addressing a coordinate system.
9991
- * @param {Pose} pose
9701
+ * @param {PoseInCoordinateSystem} poseInCoordinateSystem
9992
9702
  * @param {*} [options] Override http request option.
9993
9703
  * @throws {RequiredError}
9994
9704
  */
9995
- transformInCoordinateSystem(cell: string, coordinateSystem: string, pose: Pose, options?: RawAxiosRequestConfig): AxiosPromise<Pose> {
9996
- return localVarFp.transformInCoordinateSystem(cell, coordinateSystem, pose, options).then((request) => request(axios, basePath));
9705
+ transformInCoordinateSystem(cell: string, coordinateSystem: string, poseInCoordinateSystem: PoseInCoordinateSystem, options?: RawAxiosRequestConfig): AxiosPromise<PoseInCoordinateSystem> {
9706
+ return localVarFp.transformInCoordinateSystem(cell, coordinateSystem, poseInCoordinateSystem, options).then((request) => request(axios, basePath));
9997
9707
  },
9998
9708
  };
9999
9709
  };
@@ -10037,13 +9747,13 @@ export class CoordinateSystemsApi extends BaseAPI {
10037
9747
  * @summary Transform
10038
9748
  * @param {string} cell Unique identifier addressing a cell in all API calls.
10039
9749
  * @param {string} coordinateSystem Unique identifier addressing a coordinate system.
10040
- * @param {Pose} pose
9750
+ * @param {PoseInCoordinateSystem} poseInCoordinateSystem
10041
9751
  * @param {*} [options] Override http request option.
10042
9752
  * @throws {RequiredError}
10043
9753
  * @memberof CoordinateSystemsApi
10044
9754
  */
10045
- public transformInCoordinateSystem(cell: string, coordinateSystem: string, pose: Pose, options?: RawAxiosRequestConfig) {
10046
- return CoordinateSystemsApiFp(this.configuration).transformInCoordinateSystem(cell, coordinateSystem, pose, options).then((request) => request(this.axios, this.basePath));
9755
+ public transformInCoordinateSystem(cell: string, coordinateSystem: string, poseInCoordinateSystem: PoseInCoordinateSystem, options?: RawAxiosRequestConfig) {
9756
+ return CoordinateSystemsApiFp(this.configuration).transformInCoordinateSystem(cell, coordinateSystem, poseInCoordinateSystem, options).then((request) => request(this.axios, this.basePath));
10047
9757
  }
10048
9758
  }
10049
9759
 
@@ -12229,7 +11939,7 @@ export const MotionGroupKinematicsApiFp = function(configuration?: Configuration
12229
11939
  * @param {*} [options] Override http request option.
12230
11940
  * @throws {RequiredError}
12231
11941
  */
12232
- async calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pose>> {
11942
+ async calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoseInCoordinateSystem>> {
12233
11943
  const localVarAxiosArgs = await localVarAxiosParamCreator.calculateForwardKinematic(cell, motionGroup, tcpPoseRequest, options);
12234
11944
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
12235
11945
  const localVarOperationServerBasePath = operationServerMap['MotionGroupKinematicsApi.calculateForwardKinematic']?.[localVarOperationServerIndex]?.url;
@@ -12295,7 +12005,7 @@ export const MotionGroupKinematicsApiFactory = function (configuration?: Configu
12295
12005
  * @param {*} [options] Override http request option.
12296
12006
  * @throws {RequiredError}
12297
12007
  */
12298
- calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): AxiosPromise<Pose> {
12008
+ calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): AxiosPromise<PoseInCoordinateSystem> {
12299
12009
  return localVarFp.calculateForwardKinematic(cell, motionGroup, tcpPoseRequest, options).then((request) => request(axios, basePath));
12300
12010
  },
12301
12011
  /**
@@ -16764,23 +16474,153 @@ export class StoreObjectApi extends BaseAPI {
16764
16474
 
16765
16475
 
16766
16476
 
16767
- /**
16768
- * SystemApi - axios parameter creator
16769
- * @export
16770
- */
16771
- export const SystemApiAxiosParamCreator = function (configuration?: Configuration) {
16772
- return {
16477
+ /**
16478
+ * SystemApi - axios parameter creator
16479
+ * @export
16480
+ */
16481
+ export const SystemApiAxiosParamCreator = function (configuration?: Configuration) {
16482
+ return {
16483
+ /**
16484
+ * Retrieves a configuration backup based on provided resource identifiers.
16485
+ * @summary Retrieve Configuration Backup
16486
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
16487
+ * @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
16488
+ * @param {*} [options] Override http request option.
16489
+ * @throws {RequiredError}
16490
+ */
16491
+ backupConfiguration: async (resources: Array<string>, metadata?: { [key: string]: string; }, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
16492
+ // verify required parameter 'resources' is not null or undefined
16493
+ assertParamExists('backupConfiguration', 'resources', resources)
16494
+ const localVarPath = `/system/configuration`;
16495
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
16496
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
16497
+ let baseOptions;
16498
+ if (configuration) {
16499
+ baseOptions = configuration.baseOptions;
16500
+ }
16501
+
16502
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
16503
+ const localVarHeaderParameter = {} as any;
16504
+ const localVarQueryParameter = {} as any;
16505
+
16506
+ // authentication BasicAuth required
16507
+ // http basic authentication required
16508
+ setBasicAuthToObject(localVarRequestOptions, configuration)
16509
+
16510
+ // authentication BearerAuth required
16511
+ // http bearer authentication required
16512
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
16513
+
16514
+ if (resources) {
16515
+ localVarQueryParameter['resources'] = resources.join(COLLECTION_FORMATS.csv);
16516
+ }
16517
+
16518
+ if (metadata !== undefined) {
16519
+ localVarQueryParameter['metadata'] = metadata;
16520
+ }
16521
+
16522
+
16523
+
16524
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
16525
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
16526
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
16527
+
16528
+ return {
16529
+ url: toPathString(localVarUrlObj),
16530
+ options: localVarRequestOptions,
16531
+ };
16532
+ },
16533
+ /**
16534
+ * Check if a more recent Wandelbots NOVA Version is available.
16535
+ * @summary Check update
16536
+ * @param {ReleaseChannel} channel
16537
+ * @param {*} [options] Override http request option.
16538
+ * @throws {RequiredError}
16539
+ */
16540
+ checkNovaVersionUpdate: async (channel: ReleaseChannel, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
16541
+ // verify required parameter 'channel' is not null or undefined
16542
+ assertParamExists('checkNovaVersionUpdate', 'channel', channel)
16543
+ const localVarPath = `/system/update`;
16544
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
16545
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
16546
+ let baseOptions;
16547
+ if (configuration) {
16548
+ baseOptions = configuration.baseOptions;
16549
+ }
16550
+
16551
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
16552
+ const localVarHeaderParameter = {} as any;
16553
+ const localVarQueryParameter = {} as any;
16554
+
16555
+ // authentication BasicAuth required
16556
+ // http basic authentication required
16557
+ setBasicAuthToObject(localVarRequestOptions, configuration)
16558
+
16559
+ // authentication BearerAuth required
16560
+ // http bearer authentication required
16561
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
16562
+
16563
+ if (channel !== undefined) {
16564
+ localVarQueryParameter['channel'] = channel;
16565
+ }
16566
+
16567
+
16568
+
16569
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
16570
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
16571
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
16572
+
16573
+ return {
16574
+ url: toPathString(localVarUrlObj),
16575
+ options: localVarRequestOptions,
16576
+ };
16577
+ },
16578
+ /**
16579
+ * Collects information on the current status of all NOVA services and exports them as a .zip file. Includes information on all cells on the instance such as the service logs and virtual robot controllers. From each cell the logs of all services are included, as well as the configuration of each connected controller to start virtual robots.
16580
+ * @summary Download Diagnosis Package
16581
+ * @param {*} [options] Override http request option.
16582
+ * @throws {RequiredError}
16583
+ */
16584
+ getDiagnosePackage: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
16585
+ const localVarPath = `/system/diagnosis-package/zip`;
16586
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
16587
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
16588
+ let baseOptions;
16589
+ if (configuration) {
16590
+ baseOptions = configuration.baseOptions;
16591
+ }
16592
+
16593
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
16594
+ const localVarHeaderParameter = {} as any;
16595
+ const localVarQueryParameter = {} as any;
16596
+
16597
+ // authentication BasicAuth required
16598
+ // http basic authentication required
16599
+ setBasicAuthToObject(localVarRequestOptions, configuration)
16600
+
16601
+ // authentication BearerAuth required
16602
+ // http bearer authentication required
16603
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
16604
+
16605
+
16606
+
16607
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
16608
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
16609
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
16610
+
16611
+ return {
16612
+ url: toPathString(localVarUrlObj),
16613
+ options: localVarRequestOptions,
16614
+ };
16615
+ },
16773
16616
  /**
16774
- * Check if a more recent Wandelbots NOVA Version is available.
16775
- * @summary Check update
16776
- * @param {ReleaseChannel} channel
16617
+ * Get the status of all system services.
16618
+ * @summary Wandelbots NOVA status
16777
16619
  * @param {*} [options] Override http request option.
16778
16620
  * @throws {RequiredError}
16779
16621
  */
16780
- checkNovaVersionUpdate: async (channel: ReleaseChannel, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
16781
- // verify required parameter 'channel' is not null or undefined
16782
- assertParamExists('checkNovaVersionUpdate', 'channel', channel)
16783
- const localVarPath = `/system/update`;
16622
+ getSystemStatus: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
16623
+ const localVarPath = `/system/status`;
16784
16624
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
16785
16625
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
16786
16626
  let baseOptions;
@@ -16800,10 +16640,6 @@ export const SystemApiAxiosParamCreator = function (configuration?: Configuratio
16800
16640
  // http bearer authentication required
16801
16641
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
16802
16642
 
16803
- if (channel !== undefined) {
16804
- localVarQueryParameter['channel'] = channel;
16805
- }
16806
-
16807
16643
 
16808
16644
 
16809
16645
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -16816,13 +16652,13 @@ export const SystemApiAxiosParamCreator = function (configuration?: Configuratio
16816
16652
  };
16817
16653
  },
16818
16654
  /**
16819
- * Collects information on the current status of all NOVA services and exports them as a .zip file. Includes information on all cells on the instance such as the service logs and virtual robot controllers. From each cell the logs of all services are included, as well as the configuration of each connected controller to start virtual robots.
16820
- * @summary Download Diagnosis Package
16655
+ * Get the current Wandelbots NOVA version.
16656
+ * @summary Wandelbots NOVA Version
16821
16657
  * @param {*} [options] Override http request option.
16822
16658
  * @throws {RequiredError}
16823
16659
  */
16824
- getDiagnosePackage: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
16825
- const localVarPath = `/system/diagnosis-package/zip`;
16660
+ getSystemVersion: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
16661
+ const localVarPath = `/system/version`;
16826
16662
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
16827
16663
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
16828
16664
  let baseOptions;
@@ -16854,13 +16690,13 @@ export const SystemApiAxiosParamCreator = function (configuration?: Configuratio
16854
16690
  };
16855
16691
  },
16856
16692
  /**
16857
- * Get the status of all system services.
16858
- * @summary Wandelbots NOVA status
16693
+ * Retrieves a list of all available configuration resources for backup purposes.
16694
+ * @summary List Configuration Resources
16859
16695
  * @param {*} [options] Override http request option.
16860
16696
  * @throws {RequiredError}
16861
16697
  */
16862
- getSystemStatus: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
16863
- const localVarPath = `/system/status`;
16698
+ listConfigurationResources: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
16699
+ const localVarPath = `/system/configuration/resources`;
16864
16700
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
16865
16701
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
16866
16702
  let baseOptions;
@@ -16892,13 +16728,19 @@ export const SystemApiAxiosParamCreator = function (configuration?: Configuratio
16892
16728
  };
16893
16729
  },
16894
16730
  /**
16895
- * Get the current Wandelbots NOVA version.
16896
- * @summary Wandelbots NOVA Version
16731
+ * Restores a previously backed up configuration.
16732
+ * @summary Restore Configuration Backup
16733
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
16734
+ * @param {File} body Backup file stream containing the configuration to restore.
16897
16735
  * @param {*} [options] Override http request option.
16898
16736
  * @throws {RequiredError}
16899
16737
  */
16900
- getSystemVersion: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
16901
- const localVarPath = `/system/version`;
16738
+ restoreConfiguration: async (resources: Array<string>, body: File, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
16739
+ // verify required parameter 'resources' is not null or undefined
16740
+ assertParamExists('restoreConfiguration', 'resources', resources)
16741
+ // verify required parameter 'body' is not null or undefined
16742
+ assertParamExists('restoreConfiguration', 'body', body)
16743
+ const localVarPath = `/system/configuration`;
16902
16744
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
16903
16745
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
16904
16746
  let baseOptions;
@@ -16906,7 +16748,7 @@ export const SystemApiAxiosParamCreator = function (configuration?: Configuratio
16906
16748
  baseOptions = configuration.baseOptions;
16907
16749
  }
16908
16750
 
16909
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
16751
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
16910
16752
  const localVarHeaderParameter = {} as any;
16911
16753
  const localVarQueryParameter = {} as any;
16912
16754
 
@@ -16918,11 +16760,18 @@ export const SystemApiAxiosParamCreator = function (configuration?: Configuratio
16918
16760
  // http bearer authentication required
16919
16761
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
16920
16762
 
16763
+ if (resources) {
16764
+ localVarQueryParameter['resources'] = resources.join(COLLECTION_FORMATS.csv);
16765
+ }
16766
+
16921
16767
 
16922
16768
 
16769
+ localVarHeaderParameter['Content-Type'] = 'application/gzip';
16770
+
16923
16771
  setSearchParams(localVarUrlObj, localVarQueryParameter);
16924
16772
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
16925
16773
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
16774
+ localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)
16926
16775
 
16927
16776
  return {
16928
16777
  url: toPathString(localVarUrlObj),
@@ -16983,6 +16832,20 @@ export const SystemApiAxiosParamCreator = function (configuration?: Configuratio
16983
16832
  export const SystemApiFp = function(configuration?: Configuration) {
16984
16833
  const localVarAxiosParamCreator = SystemApiAxiosParamCreator(configuration)
16985
16834
  return {
16835
+ /**
16836
+ * Retrieves a configuration backup based on provided resource identifiers.
16837
+ * @summary Retrieve Configuration Backup
16838
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
16839
+ * @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
16840
+ * @param {*} [options] Override http request option.
16841
+ * @throws {RequiredError}
16842
+ */
16843
+ async backupConfiguration(resources: Array<string>, metadata?: { [key: string]: string; }, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>> {
16844
+ const localVarAxiosArgs = await localVarAxiosParamCreator.backupConfiguration(resources, metadata, options);
16845
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
16846
+ const localVarOperationServerBasePath = operationServerMap['SystemApi.backupConfiguration']?.[localVarOperationServerIndex]?.url;
16847
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
16848
+ },
16986
16849
  /**
16987
16850
  * Check if a more recent Wandelbots NOVA Version is available.
16988
16851
  * @summary Check update
@@ -17032,6 +16895,32 @@ export const SystemApiFp = function(configuration?: Configuration) {
17032
16895
  const localVarOperationServerBasePath = operationServerMap['SystemApi.getSystemVersion']?.[localVarOperationServerIndex]?.url;
17033
16896
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
17034
16897
  },
16898
+ /**
16899
+ * Retrieves a list of all available configuration resources for backup purposes.
16900
+ * @summary List Configuration Resources
16901
+ * @param {*} [options] Override http request option.
16902
+ * @throws {RequiredError}
16903
+ */
16904
+ async listConfigurationResources(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ConfigurationResource>>> {
16905
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listConfigurationResources(options);
16906
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
16907
+ const localVarOperationServerBasePath = operationServerMap['SystemApi.listConfigurationResources']?.[localVarOperationServerIndex]?.url;
16908
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
16909
+ },
16910
+ /**
16911
+ * Restores a previously backed up configuration.
16912
+ * @summary Restore Configuration Backup
16913
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
16914
+ * @param {File} body Backup file stream containing the configuration to restore.
16915
+ * @param {*} [options] Override http request option.
16916
+ * @throws {RequiredError}
16917
+ */
16918
+ async restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
16919
+ const localVarAxiosArgs = await localVarAxiosParamCreator.restoreConfiguration(resources, body, options);
16920
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
16921
+ const localVarOperationServerBasePath = operationServerMap['SystemApi.restoreConfiguration']?.[localVarOperationServerIndex]?.url;
16922
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
16923
+ },
17035
16924
  /**
17036
16925
  * Update the Wandelbots NOVA version and all attached services. Sending this API Request will trigger an update of all NOVA services that are part of a cell. Previous cells and cell configurations will remain on the instance. If the update fails, the previous Wandelbots NOVA version is restored.
17037
16926
  * @summary Update Wandelbots NOVA version
@@ -17055,6 +16944,17 @@ export const SystemApiFp = function(configuration?: Configuration) {
17055
16944
  export const SystemApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
17056
16945
  const localVarFp = SystemApiFp(configuration)
17057
16946
  return {
16947
+ /**
16948
+ * Retrieves a configuration backup based on provided resource identifiers.
16949
+ * @summary Retrieve Configuration Backup
16950
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
16951
+ * @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
16952
+ * @param {*} [options] Override http request option.
16953
+ * @throws {RequiredError}
16954
+ */
16955
+ backupConfiguration(resources: Array<string>, metadata?: { [key: string]: string; }, options?: RawAxiosRequestConfig): AxiosPromise<File> {
16956
+ return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios, basePath));
16957
+ },
17058
16958
  /**
17059
16959
  * Check if a more recent Wandelbots NOVA Version is available.
17060
16960
  * @summary Check update
@@ -17092,6 +16992,26 @@ export const SystemApiFactory = function (configuration?: Configuration, basePat
17092
16992
  getSystemVersion(options?: RawAxiosRequestConfig): AxiosPromise<string> {
17093
16993
  return localVarFp.getSystemVersion(options).then((request) => request(axios, basePath));
17094
16994
  },
16995
+ /**
16996
+ * Retrieves a list of all available configuration resources for backup purposes.
16997
+ * @summary List Configuration Resources
16998
+ * @param {*} [options] Override http request option.
16999
+ * @throws {RequiredError}
17000
+ */
17001
+ listConfigurationResources(options?: RawAxiosRequestConfig): AxiosPromise<Array<ConfigurationResource>> {
17002
+ return localVarFp.listConfigurationResources(options).then((request) => request(axios, basePath));
17003
+ },
17004
+ /**
17005
+ * Restores a previously backed up configuration.
17006
+ * @summary Restore Configuration Backup
17007
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
17008
+ * @param {File} body Backup file stream containing the configuration to restore.
17009
+ * @param {*} [options] Override http request option.
17010
+ * @throws {RequiredError}
17011
+ */
17012
+ restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): AxiosPromise<void> {
17013
+ return localVarFp.restoreConfiguration(resources, body, options).then((request) => request(axios, basePath));
17014
+ },
17095
17015
  /**
17096
17016
  * Update the Wandelbots NOVA version and all attached services. Sending this API Request will trigger an update of all NOVA services that are part of a cell. Previous cells and cell configurations will remain on the instance. If the update fails, the previous Wandelbots NOVA version is restored.
17097
17017
  * @summary Update Wandelbots NOVA version
@@ -17112,6 +17032,19 @@ export const SystemApiFactory = function (configuration?: Configuration, basePat
17112
17032
  * @extends {BaseAPI}
17113
17033
  */
17114
17034
  export class SystemApi extends BaseAPI {
17035
+ /**
17036
+ * Retrieves a configuration backup based on provided resource identifiers.
17037
+ * @summary Retrieve Configuration Backup
17038
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
17039
+ * @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
17040
+ * @param {*} [options] Override http request option.
17041
+ * @throws {RequiredError}
17042
+ * @memberof SystemApi
17043
+ */
17044
+ public backupConfiguration(resources: Array<string>, metadata?: { [key: string]: string; }, options?: RawAxiosRequestConfig) {
17045
+ return SystemApiFp(this.configuration).backupConfiguration(resources, metadata, options).then((request) => request(this.axios, this.basePath));
17046
+ }
17047
+
17115
17048
  /**
17116
17049
  * Check if a more recent Wandelbots NOVA Version is available.
17117
17050
  * @summary Check update
@@ -17157,6 +17090,30 @@ export class SystemApi extends BaseAPI {
17157
17090
  return SystemApiFp(this.configuration).getSystemVersion(options).then((request) => request(this.axios, this.basePath));
17158
17091
  }
17159
17092
 
17093
+ /**
17094
+ * Retrieves a list of all available configuration resources for backup purposes.
17095
+ * @summary List Configuration Resources
17096
+ * @param {*} [options] Override http request option.
17097
+ * @throws {RequiredError}
17098
+ * @memberof SystemApi
17099
+ */
17100
+ public listConfigurationResources(options?: RawAxiosRequestConfig) {
17101
+ return SystemApiFp(this.configuration).listConfigurationResources(options).then((request) => request(this.axios, this.basePath));
17102
+ }
17103
+
17104
+ /**
17105
+ * Restores a previously backed up configuration.
17106
+ * @summary Restore Configuration Backup
17107
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
17108
+ * @param {File} body Backup file stream containing the configuration to restore.
17109
+ * @param {*} [options] Override http request option.
17110
+ * @throws {RequiredError}
17111
+ * @memberof SystemApi
17112
+ */
17113
+ public restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig) {
17114
+ return SystemApiFp(this.configuration).restoreConfiguration(resources, body, options).then((request) => request(this.axios, this.basePath));
17115
+ }
17116
+
17160
17117
  /**
17161
17118
  * Update the Wandelbots NOVA version and all attached services. Sending this API Request will trigger an update of all NOVA services that are part of a cell. Previous cells and cell configurations will remain on the instance. If the update fails, the previous Wandelbots NOVA version is restored.
17162
17119
  * @summary Update Wandelbots NOVA version
@@ -18074,22 +18031,21 @@ export const VirtualRobotApiAxiosParamCreator = function (configuration?: Config
18074
18031
  };
18075
18032
  },
18076
18033
  /**
18077
- * Lists the inputs/outputs of the virtual controller. Every input/output contains the description and the value. Each input/output has a unique identifier. If no identifiers are specified in the request, the full list of available inputs/outputs is retrieved by this endpoint. As a virtual robot can have up to thousand inputs/outputs, be ready to handle a large response. Use [List Descriptions](List Descriptions) to get a detailed description of an input/output.
18034
+ * 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).
18078
18035
  * @summary Get Inputs/Outputs
18079
18036
  * @param {string} cell Unique identifier addressing a cell in all API calls.
18080
18037
  * @param {string} controller Unique identifier to address a controller in the cell.
18081
- * @param {Array<string>} [ios]
18082
- * @param {IODirection} [direction] Return only inputs/outputs with the specified direction.
18083
- * @param {IOValueType} [valueType] Return only inputs/outputs with the specified value type.
18084
- * @param {string} [prefix] Return only inputs/outputs with the specified prefix of unique identifier.
18038
+ * @param {Array<string>} ios
18085
18039
  * @param {*} [options] Override http request option.
18086
18040
  * @throws {RequiredError}
18087
18041
  */
18088
- listIOs: async (cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, prefix?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
18042
+ listIOs: async (cell: string, controller: string, ios: Array<string>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
18089
18043
  // verify required parameter 'cell' is not null or undefined
18090
18044
  assertParamExists('listIOs', 'cell', cell)
18091
18045
  // verify required parameter 'controller' is not null or undefined
18092
18046
  assertParamExists('listIOs', 'controller', controller)
18047
+ // verify required parameter 'ios' is not null or undefined
18048
+ assertParamExists('listIOs', 'ios', ios)
18093
18049
  const localVarPath = `/cells/{cell}/controllers/{controller}/teach-pendant/ios`
18094
18050
  .replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
18095
18051
  .replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
@@ -18116,6 +18072,60 @@ export const VirtualRobotApiAxiosParamCreator = function (configuration?: Config
18116
18072
  localVarQueryParameter['ios'] = ios;
18117
18073
  }
18118
18074
 
18075
+
18076
+
18077
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
18078
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
18079
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
18080
+
18081
+ return {
18082
+ url: toPathString(localVarUrlObj),
18083
+ options: localVarRequestOptions,
18084
+ };
18085
+ },
18086
+ /**
18087
+ * 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.
18088
+ * @summary List Input/Output Descriptions
18089
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
18090
+ * @param {string} controller Unique identifier to address a controller in the cell.
18091
+ * @param {Array<string>} [ios]
18092
+ * @param {IODirection} [direction] Return only inputs/outputs with the specified direction.
18093
+ * @param {IOValueType} [valueType] Return only inputs/outputs with the specified value type.
18094
+ * @param {string} [group] Return only inputs/outputs from the specified group.
18095
+ * @param {*} [options] Override http request option.
18096
+ * @throws {RequiredError}
18097
+ */
18098
+ listVirtualRobotIODescriptions: async (cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
18099
+ // verify required parameter 'cell' is not null or undefined
18100
+ assertParamExists('listVirtualRobotIODescriptions', 'cell', cell)
18101
+ // verify required parameter 'controller' is not null or undefined
18102
+ assertParamExists('listVirtualRobotIODescriptions', 'controller', controller)
18103
+ const localVarPath = `/cells/{cell}/controllers/{controller}/teach-pendant/ios/description`
18104
+ .replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
18105
+ .replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
18106
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
18107
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
18108
+ let baseOptions;
18109
+ if (configuration) {
18110
+ baseOptions = configuration.baseOptions;
18111
+ }
18112
+
18113
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
18114
+ const localVarHeaderParameter = {} as any;
18115
+ const localVarQueryParameter = {} as any;
18116
+
18117
+ // authentication BasicAuth required
18118
+ // http basic authentication required
18119
+ setBasicAuthToObject(localVarRequestOptions, configuration)
18120
+
18121
+ // authentication BearerAuth required
18122
+ // http bearer authentication required
18123
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
18124
+
18125
+ if (ios) {
18126
+ localVarQueryParameter['ios'] = ios;
18127
+ }
18128
+
18119
18129
  if (direction !== undefined) {
18120
18130
  localVarQueryParameter['direction'] = direction;
18121
18131
  }
@@ -18124,8 +18134,8 @@ export const VirtualRobotApiAxiosParamCreator = function (configuration?: Config
18124
18134
  localVarQueryParameter['value_type'] = valueType;
18125
18135
  }
18126
18136
 
18127
- if (prefix !== undefined) {
18128
- localVarQueryParameter['prefix'] = prefix;
18137
+ if (group !== undefined) {
18138
+ localVarQueryParameter['group'] = group;
18129
18139
  }
18130
18140
 
18131
18141
 
@@ -18287,21 +18297,36 @@ export const VirtualRobotApiFp = function(configuration?: Configuration) {
18287
18297
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
18288
18298
  },
18289
18299
  /**
18290
- * Lists the inputs/outputs of the virtual controller. Every input/output contains the description and the value. Each input/output has a unique identifier. If no identifiers are specified in the request, the full list of available inputs/outputs is retrieved by this endpoint. As a virtual robot can have up to thousand inputs/outputs, be ready to handle a large response. Use [List Descriptions](List Descriptions) to get a detailed description of an input/output.
18300
+ * 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).
18291
18301
  * @summary Get Inputs/Outputs
18292
18302
  * @param {string} cell Unique identifier addressing a cell in all API calls.
18293
18303
  * @param {string} controller Unique identifier to address a controller in the cell.
18304
+ * @param {Array<string>} ios
18305
+ * @param {*} [options] Override http request option.
18306
+ * @throws {RequiredError}
18307
+ */
18308
+ async listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListIOValuesResponse>> {
18309
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listIOs(cell, controller, ios, options);
18310
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
18311
+ const localVarOperationServerBasePath = operationServerMap['VirtualRobotApi.listIOs']?.[localVarOperationServerIndex]?.url;
18312
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
18313
+ },
18314
+ /**
18315
+ * 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.
18316
+ * @summary List Input/Output Descriptions
18317
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
18318
+ * @param {string} controller Unique identifier to address a controller in the cell.
18294
18319
  * @param {Array<string>} [ios]
18295
18320
  * @param {IODirection} [direction] Return only inputs/outputs with the specified direction.
18296
18321
  * @param {IOValueType} [valueType] Return only inputs/outputs with the specified value type.
18297
- * @param {string} [prefix] Return only inputs/outputs with the specified prefix of unique identifier.
18322
+ * @param {string} [group] Return only inputs/outputs from the specified group.
18298
18323
  * @param {*} [options] Override http request option.
18299
18324
  * @throws {RequiredError}
18300
18325
  */
18301
- async listIOs(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, prefix?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IOs>> {
18302
- const localVarAxiosArgs = await localVarAxiosParamCreator.listIOs(cell, controller, ios, direction, valueType, prefix, options);
18326
+ async listVirtualRobotIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListIODescriptionsResponse>> {
18327
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualRobotIODescriptions(cell, controller, ios, direction, valueType, group, options);
18303
18328
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
18304
- const localVarOperationServerBasePath = operationServerMap['VirtualRobotApi.listIOs']?.[localVarOperationServerIndex]?.url;
18329
+ const localVarOperationServerBasePath = operationServerMap['VirtualRobotApi.listVirtualRobotIODescriptions']?.[localVarOperationServerIndex]?.url;
18305
18330
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
18306
18331
  },
18307
18332
  /**
@@ -18313,7 +18338,7 @@ export const VirtualRobotApiFp = function(configuration?: Configuration) {
18313
18338
  * @param {*} [options] Override http request option.
18314
18339
  * @throws {RequiredError}
18315
18340
  */
18316
- async setIOValues(cell: string, controller: string, setIOValuesRequestInner: Array<SetIOValuesRequestInner>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
18341
+ async setIOValues(cell: string, controller: string, setIOValuesRequestInner: Array<SetIOValuesRequestInner>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
18317
18342
  const localVarAxiosArgs = await localVarAxiosParamCreator.setIOValues(cell, controller, setIOValuesRequestInner, options);
18318
18343
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
18319
18344
  const localVarOperationServerBasePath = operationServerMap['VirtualRobotApi.setIOValues']?.[localVarOperationServerIndex]?.url;
@@ -18329,7 +18354,7 @@ export const VirtualRobotApiFp = function(configuration?: Configuration) {
18329
18354
  * @param {*} [options] Override http request option.
18330
18355
  * @throws {RequiredError}
18331
18356
  */
18332
- async setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
18357
+ async setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
18333
18358
  const localVarAxiosArgs = await localVarAxiosParamCreator.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options);
18334
18359
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
18335
18360
  const localVarOperationServerBasePath = operationServerMap['VirtualRobotApi.setMotionGroupState']?.[localVarOperationServerIndex]?.url;
@@ -18369,19 +18394,31 @@ export const VirtualRobotApiFactory = function (configuration?: Configuration, b
18369
18394
  return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios, basePath));
18370
18395
  },
18371
18396
  /**
18372
- * Lists the inputs/outputs of the virtual controller. Every input/output contains the description and the value. Each input/output has a unique identifier. If no identifiers are specified in the request, the full list of available inputs/outputs is retrieved by this endpoint. As a virtual robot can have up to thousand inputs/outputs, be ready to handle a large response. Use [List Descriptions](List Descriptions) to get a detailed description of an input/output.
18397
+ * 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).
18373
18398
  * @summary Get Inputs/Outputs
18374
18399
  * @param {string} cell Unique identifier addressing a cell in all API calls.
18375
18400
  * @param {string} controller Unique identifier to address a controller in the cell.
18401
+ * @param {Array<string>} ios
18402
+ * @param {*} [options] Override http request option.
18403
+ * @throws {RequiredError}
18404
+ */
18405
+ listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): AxiosPromise<ListIOValuesResponse> {
18406
+ return localVarFp.listIOs(cell, controller, ios, options).then((request) => request(axios, basePath));
18407
+ },
18408
+ /**
18409
+ * 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.
18410
+ * @summary List Input/Output Descriptions
18411
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
18412
+ * @param {string} controller Unique identifier to address a controller in the cell.
18376
18413
  * @param {Array<string>} [ios]
18377
18414
  * @param {IODirection} [direction] Return only inputs/outputs with the specified direction.
18378
18415
  * @param {IOValueType} [valueType] Return only inputs/outputs with the specified value type.
18379
- * @param {string} [prefix] Return only inputs/outputs with the specified prefix of unique identifier.
18416
+ * @param {string} [group] Return only inputs/outputs from the specified group.
18380
18417
  * @param {*} [options] Override http request option.
18381
18418
  * @throws {RequiredError}
18382
18419
  */
18383
- listIOs(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, prefix?: string, options?: RawAxiosRequestConfig): AxiosPromise<IOs> {
18384
- return localVarFp.listIOs(cell, controller, ios, direction, valueType, prefix, options).then((request) => request(axios, basePath));
18420
+ listVirtualRobotIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListIODescriptionsResponse> {
18421
+ return localVarFp.listVirtualRobotIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios, basePath));
18385
18422
  },
18386
18423
  /**
18387
18424
  * Sets a list of values of a virtual controller inputs/outputs.
@@ -18392,7 +18429,7 @@ export const VirtualRobotApiFactory = function (configuration?: Configuration, b
18392
18429
  * @param {*} [options] Override http request option.
18393
18430
  * @throws {RequiredError}
18394
18431
  */
18395
- setIOValues(cell: string, controller: string, setIOValuesRequestInner: Array<SetIOValuesRequestInner>, options?: RawAxiosRequestConfig): AxiosPromise<object> {
18432
+ setIOValues(cell: string, controller: string, setIOValuesRequestInner: Array<SetIOValuesRequestInner>, options?: RawAxiosRequestConfig): AxiosPromise<void> {
18396
18433
  return localVarFp.setIOValues(cell, controller, setIOValuesRequestInner, options).then((request) => request(axios, basePath));
18397
18434
  },
18398
18435
  /**
@@ -18405,7 +18442,7 @@ export const VirtualRobotApiFactory = function (configuration?: Configuration, b
18405
18442
  * @param {*} [options] Override http request option.
18406
18443
  * @throws {RequiredError}
18407
18444
  */
18408
- setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): AxiosPromise<object> {
18445
+ setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): AxiosPromise<void> {
18409
18446
  return localVarFp.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(axios, basePath));
18410
18447
  },
18411
18448
  };
@@ -18446,20 +18483,34 @@ export class VirtualRobotApi extends BaseAPI {
18446
18483
  }
18447
18484
 
18448
18485
  /**
18449
- * Lists the inputs/outputs of the virtual controller. Every input/output contains the description and the value. Each input/output has a unique identifier. If no identifiers are specified in the request, the full list of available inputs/outputs is retrieved by this endpoint. As a virtual robot can have up to thousand inputs/outputs, be ready to handle a large response. Use [List Descriptions](List Descriptions) to get a detailed description of an input/output.
18486
+ * 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).
18450
18487
  * @summary Get Inputs/Outputs
18451
18488
  * @param {string} cell Unique identifier addressing a cell in all API calls.
18452
18489
  * @param {string} controller Unique identifier to address a controller in the cell.
18490
+ * @param {Array<string>} ios
18491
+ * @param {*} [options] Override http request option.
18492
+ * @throws {RequiredError}
18493
+ * @memberof VirtualRobotApi
18494
+ */
18495
+ public listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig) {
18496
+ return VirtualRobotApiFp(this.configuration).listIOs(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
18497
+ }
18498
+
18499
+ /**
18500
+ * 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.
18501
+ * @summary List Input/Output Descriptions
18502
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
18503
+ * @param {string} controller Unique identifier to address a controller in the cell.
18453
18504
  * @param {Array<string>} [ios]
18454
18505
  * @param {IODirection} [direction] Return only inputs/outputs with the specified direction.
18455
18506
  * @param {IOValueType} [valueType] Return only inputs/outputs with the specified value type.
18456
- * @param {string} [prefix] Return only inputs/outputs with the specified prefix of unique identifier.
18507
+ * @param {string} [group] Return only inputs/outputs from the specified group.
18457
18508
  * @param {*} [options] Override http request option.
18458
18509
  * @throws {RequiredError}
18459
18510
  * @memberof VirtualRobotApi
18460
18511
  */
18461
- public listIOs(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, prefix?: string, options?: RawAxiosRequestConfig) {
18462
- return VirtualRobotApiFp(this.configuration).listIOs(cell, controller, ios, direction, valueType, prefix, options).then((request) => request(this.axios, this.basePath));
18512
+ public listVirtualRobotIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig) {
18513
+ return VirtualRobotApiFp(this.configuration).listVirtualRobotIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(this.axios, this.basePath));
18463
18514
  }
18464
18515
 
18465
18516
  /**
@@ -18707,7 +18758,7 @@ export const VirtualRobotBehaviorApiFp = function(configuration?: Configuration)
18707
18758
  * @param {*} [options] Override http request option.
18708
18759
  * @throws {RequiredError}
18709
18760
  */
18710
- async setMotionGroupBehavior(cell: string, controller: string, motionGroup: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
18761
+ async setMotionGroupBehavior(cell: string, controller: string, motionGroup: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
18711
18762
  const localVarAxiosArgs = await localVarAxiosParamCreator.setMotionGroupBehavior(cell, controller, motionGroup, behavior, options);
18712
18763
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
18713
18764
  const localVarOperationServerBasePath = operationServerMap['VirtualRobotBehaviorApi.setMotionGroupBehavior']?.[localVarOperationServerIndex]?.url;
@@ -18757,7 +18808,7 @@ export const VirtualRobotBehaviorApiFactory = function (configuration?: Configur
18757
18808
  * @param {*} [options] Override http request option.
18758
18809
  * @throws {RequiredError}
18759
18810
  */
18760
- setMotionGroupBehavior(cell: string, controller: string, motionGroup: string, behavior?: Behavior, options?: RawAxiosRequestConfig): AxiosPromise<object> {
18811
+ setMotionGroupBehavior(cell: string, controller: string, motionGroup: string, behavior?: Behavior, options?: RawAxiosRequestConfig): AxiosPromise<void> {
18761
18812
  return localVarFp.setMotionGroupBehavior(cell, controller, motionGroup, behavior, options).then((request) => request(axios, basePath));
18762
18813
  },
18763
18814
  };
@@ -19125,7 +19176,7 @@ export const VirtualRobotModeApiFp = function(configuration?: Configuration) {
19125
19176
  * @param {*} [options] Override http request option.
19126
19177
  * @throws {RequiredError}
19127
19178
  */
19128
- async setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
19179
+ async setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
19129
19180
  const localVarAxiosArgs = await localVarAxiosParamCreator.setEmergencyStop(cell, controller, active, options);
19130
19181
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
19131
19182
  const localVarOperationServerBasePath = operationServerMap['VirtualRobotModeApi.setEmergencyStop']?.[localVarOperationServerIndex]?.url;
@@ -19140,7 +19191,7 @@ export const VirtualRobotModeApiFp = function(configuration?: Configuration) {
19140
19191
  * @param {*} [options] Override http request option.
19141
19192
  * @throws {RequiredError}
19142
19193
  */
19143
- async setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
19194
+ async setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
19144
19195
  const localVarAxiosArgs = await localVarAxiosParamCreator.setOperationMode(cell, controller, mode, options);
19145
19196
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
19146
19197
  const localVarOperationServerBasePath = operationServerMap['VirtualRobotModeApi.setOperationMode']?.[localVarOperationServerIndex]?.url;
@@ -19198,7 +19249,7 @@ export const VirtualRobotModeApiFactory = function (configuration?: Configuratio
19198
19249
  * @param {*} [options] Override http request option.
19199
19250
  * @throws {RequiredError}
19200
19251
  */
19201
- setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<object> {
19252
+ setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
19202
19253
  return localVarFp.setEmergencyStop(cell, controller, active, options).then((request) => request(axios, basePath));
19203
19254
  },
19204
19255
  /**
@@ -19210,7 +19261,7 @@ export const VirtualRobotModeApiFactory = function (configuration?: Configuratio
19210
19261
  * @param {*} [options] Override http request option.
19211
19262
  * @throws {RequiredError}
19212
19263
  */
19213
- setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): AxiosPromise<object> {
19264
+ setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): AxiosPromise<void> {
19214
19265
  return localVarFp.setOperationMode(cell, controller, mode, options).then((request) => request(axios, basePath));
19215
19266
  },
19216
19267
  };
@@ -19737,7 +19788,7 @@ export const VirtualRobotSetupApiFp = function(configuration?: Configuration) {
19737
19788
  * @param {*} [options] Override http request option.
19738
19789
  * @throws {RequiredError}
19739
19790
  */
19740
- async addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
19791
+ async addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
19741
19792
  const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, options);
19742
19793
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
19743
19794
  const localVarOperationServerBasePath = operationServerMap['VirtualRobotSetupApi.addVirtualRobotCoordinateSystem']?.[localVarOperationServerIndex]?.url;
@@ -19753,7 +19804,7 @@ export const VirtualRobotSetupApiFp = function(configuration?: Configuration) {
19753
19804
  * @param {*} [options] Override http request option.
19754
19805
  * @throws {RequiredError}
19755
19806
  */
19756
- async addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
19807
+ async addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
19757
19808
  const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualRobotTcp(cell, controller, motionGroup, robotTcp, options);
19758
19809
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
19759
19810
  const localVarOperationServerBasePath = operationServerMap['VirtualRobotSetupApi.addVirtualRobotTcp']?.[localVarOperationServerIndex]?.url;
@@ -19769,7 +19820,7 @@ export const VirtualRobotSetupApiFp = function(configuration?: Configuration) {
19769
19820
  * @param {*} [options] Override http request option.
19770
19821
  * @throws {RequiredError}
19771
19822
  */
19772
- async deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
19823
+ async deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
19773
19824
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options);
19774
19825
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
19775
19826
  const localVarOperationServerBasePath = operationServerMap['VirtualRobotSetupApi.deleteVirtualRobotCoordinateSystem']?.[localVarOperationServerIndex]?.url;
@@ -19785,7 +19836,7 @@ export const VirtualRobotSetupApiFp = function(configuration?: Configuration) {
19785
19836
  * @param {*} [options] Override http request option.
19786
19837
  * @throws {RequiredError}
19787
19838
  */
19788
- async deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
19839
+ async deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
19789
19840
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualRobotTcp(cell, controller, motionGroup, tcp, options);
19790
19841
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
19791
19842
  const localVarOperationServerBasePath = operationServerMap['VirtualRobotSetupApi.deleteVirtualRobotTcp']?.[localVarOperationServerIndex]?.url;
@@ -19870,7 +19921,7 @@ export const VirtualRobotSetupApiFactory = function (configuration?: Configurati
19870
19921
  * @param {*} [options] Override http request option.
19871
19922
  * @throws {RequiredError}
19872
19923
  */
19873
- addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): AxiosPromise<object> {
19924
+ addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): AxiosPromise<void> {
19874
19925
  return localVarFp.addVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, options).then((request) => request(axios, basePath));
19875
19926
  },
19876
19927
  /**
@@ -19883,7 +19934,7 @@ export const VirtualRobotSetupApiFactory = function (configuration?: Configurati
19883
19934
  * @param {*} [options] Override http request option.
19884
19935
  * @throws {RequiredError}
19885
19936
  */
19886
- addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): AxiosPromise<object> {
19937
+ addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): AxiosPromise<void> {
19887
19938
  return localVarFp.addVirtualRobotTcp(cell, controller, motionGroup, robotTcp, options).then((request) => request(axios, basePath));
19888
19939
  },
19889
19940
  /**
@@ -19896,7 +19947,7 @@ export const VirtualRobotSetupApiFactory = function (configuration?: Configurati
19896
19947
  * @param {*} [options] Override http request option.
19897
19948
  * @throws {RequiredError}
19898
19949
  */
19899
- deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<object> {
19950
+ deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
19900
19951
  return localVarFp.deleteVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios, basePath));
19901
19952
  },
19902
19953
  /**
@@ -19909,7 +19960,7 @@ export const VirtualRobotSetupApiFactory = function (configuration?: Configurati
19909
19960
  * @param {*} [options] Override http request option.
19910
19961
  * @throws {RequiredError}
19911
19962
  */
19912
- deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): AxiosPromise<object> {
19963
+ deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
19913
19964
  return localVarFp.deleteVirtualRobotTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios, basePath));
19914
19965
  },
19915
19966
  /**