@wandelbots/nova-api 25.4.0-dev.3 → 25.4.0-dev.30

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
@@ -242,6 +242,12 @@ export interface App {
242
242
  * @memberof App
243
243
  */
244
244
  'storage'?: ContainerStorage;
245
+ /**
246
+ * Defines the URL path suffix used to check the application\'s health status. The complete health check URL is constructed as `/$cell/$name/$health_path`. When the application is working as expected, the endpoint returns an HTTP 200 status code. If not specified, the system will default to using the application icon path suffix (the value of `app_icon`) as the health check endpoint, resulting in `/$cell/$name/$app_icon`. If the health check fails (no response or non-200 status code), the system will automatically restart the application container to restore service.
247
+ * @type {string}
248
+ * @memberof App
249
+ */
250
+ 'health_path'?: string;
245
251
  }
246
252
  /**
247
253
  *
@@ -434,7 +440,20 @@ export interface BooleanValue {
434
440
  * @memberof BooleanValue
435
441
  */
436
442
  'boolean_value': boolean;
443
+ /**
444
+ *
445
+ * @type {string}
446
+ * @memberof BooleanValue
447
+ */
448
+ 'value_type'?: BooleanValueValueTypeEnum;
437
449
  }
450
+
451
+ export const BooleanValueValueTypeEnum = {
452
+ Boolean: 'boolean'
453
+ } as const;
454
+
455
+ export type BooleanValueValueTypeEnum = typeof BooleanValueValueTypeEnum[keyof typeof BooleanValueValueTypeEnum];
456
+
438
457
  /**
439
458
  * Defines a cuboid shape centered around an origin.
440
459
  * @export
@@ -600,6 +619,12 @@ export interface Cell {
600
619
  * @memberof Cell
601
620
  */
602
621
  'name': string;
622
+ /**
623
+ * A description of the cell.
624
+ * @type {string}
625
+ * @memberof Cell
626
+ */
627
+ 'description'?: string;
603
628
  /**
604
629
  *
605
630
  * @type {Array<RobotController>}
@@ -646,10 +671,10 @@ export interface Collider {
646
671
  'shape': ColliderShape;
647
672
  /**
648
673
  *
649
- * @type {Pose2}
674
+ * @type {Pose}
650
675
  * @memberof Collider
651
676
  */
652
- 'pose'?: Pose2;
677
+ 'pose'?: Pose;
653
678
  /**
654
679
  * Increases the shape\'s size in all dimensions. Applied in [mm]. Can be used to keep a safe distance to the shape.
655
680
  * @type {number}
@@ -875,6 +900,31 @@ export interface Compound {
875
900
  */
876
901
  'child_geometries': Array<Geometry>;
877
902
  }
903
+ /**
904
+ * Configuration resource object.
905
+ * @export
906
+ * @interface ConfigurationResource
907
+ */
908
+ export interface ConfigurationResource {
909
+ /**
910
+ * Identifier of a configuration resource.
911
+ * @type {string}
912
+ * @memberof ConfigurationResource
913
+ */
914
+ 'id': string;
915
+ /**
916
+ * Human-readable name of the configuration resource.
917
+ * @type {string}
918
+ * @memberof ConfigurationResource
919
+ */
920
+ 'name': string;
921
+ /**
922
+ * Array of configuration resources.
923
+ * @type {Array<ConfigurationResource>}
924
+ * @memberof ConfigurationResource
925
+ */
926
+ 'children'?: Array<ConfigurationResource>;
927
+ }
878
928
  /**
879
929
  *
880
930
  * @export
@@ -1221,10 +1271,10 @@ export type CreateTriggerRequestConfig = OpcuaNodeValueTriggerConfig;
1221
1271
  export interface CubicSplineParameter {
1222
1272
  /**
1223
1273
  *
1224
- * @type {Pose2}
1274
+ * @type {Pose}
1225
1275
  * @memberof CubicSplineParameter
1226
1276
  */
1227
- 'pose': Pose2;
1277
+ 'pose': Pose;
1228
1278
  /**
1229
1279
  *
1230
1280
  * @type {number}
@@ -1347,6 +1397,19 @@ export const Direction = {
1347
1397
  export type Direction = typeof Direction[keyof typeof Direction];
1348
1398
 
1349
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
+ }
1350
1413
  /**
1351
1414
  * @type ExecuteJoggingRequest
1352
1415
  * @export
@@ -1492,10 +1555,10 @@ export interface FeedbackCollision {
1492
1555
  'joint_position'?: Array<number>;
1493
1556
  /**
1494
1557
  *
1495
- * @type {Pose2}
1558
+ * @type {Pose}
1496
1559
  * @memberof FeedbackCollision
1497
1560
  */
1498
- 'tcp_pose'?: Pose2;
1561
+ 'tcp_pose'?: Pose;
1499
1562
  /**
1500
1563
  *
1501
1564
  * @type {string}
@@ -1550,10 +1613,10 @@ export type FeedbackJointLimitExceededErrorFeedbackNameEnum = typeof FeedbackJoi
1550
1613
  export interface FeedbackOutOfWorkspace {
1551
1614
  /**
1552
1615
  *
1553
- * @type {Pose2}
1616
+ * @type {Pose}
1554
1617
  * @memberof FeedbackOutOfWorkspace
1555
1618
  */
1556
- 'invalid_tcp_pose'?: Pose2;
1619
+ 'invalid_tcp_pose'?: Pose;
1557
1620
  /**
1558
1621
  *
1559
1622
  * @type {string}
@@ -1625,7 +1688,20 @@ export interface FloatValue {
1625
1688
  * @memberof FloatValue
1626
1689
  */
1627
1690
  'float_value': number;
1691
+ /**
1692
+ *
1693
+ * @type {string}
1694
+ * @memberof FloatValue
1695
+ */
1696
+ 'value_type'?: FloatValueValueTypeEnum;
1628
1697
  }
1698
+
1699
+ export const FloatValueValueTypeEnum = {
1700
+ Float: 'float'
1701
+ } as const;
1702
+
1703
+ export type FloatValueValueTypeEnum = typeof FloatValueValueTypeEnum[keyof typeof FloatValueValueTypeEnum];
1704
+
1629
1705
  /**
1630
1706
  * Representing a force on a specific point in operational space, e.g. on robot flange.
1631
1707
  * @export
@@ -1814,52 +1890,14 @@ export interface IOBooleanValue {
1814
1890
  * @type {string}
1815
1891
  * @memberof IOBooleanValue
1816
1892
  */
1817
- 'io_value_type'?: IOBooleanValueIoValueTypeEnum;
1893
+ 'value_type'?: IOBooleanValueValueTypeEnum;
1818
1894
  }
1819
1895
 
1820
- export const IOBooleanValueIoValueTypeEnum = {
1821
- IoBooleanValue: 'IOBooleanValue'
1896
+ export const IOBooleanValueValueTypeEnum = {
1897
+ Boolean: 'boolean'
1822
1898
  } as const;
1823
1899
 
1824
- export type IOBooleanValueIoValueTypeEnum = typeof IOBooleanValueIoValueTypeEnum[keyof typeof IOBooleanValueIoValueTypeEnum];
1825
-
1826
- /**
1827
- *
1828
- * @export
1829
- * @interface IOBooleanValue2
1830
- */
1831
- export interface IOBooleanValue2 {
1832
- /**
1833
- *
1834
- * @type {string}
1835
- * @memberof IOBooleanValue2
1836
- */
1837
- 'io': string;
1838
- /**
1839
- *
1840
- * @type {IODirection}
1841
- * @memberof IOBooleanValue2
1842
- */
1843
- 'direction': IODirection;
1844
- /**
1845
- *
1846
- * @type {boolean}
1847
- * @memberof IOBooleanValue2
1848
- */
1849
- 'boolean_value': boolean;
1850
- /**
1851
- *
1852
- * @type {string}
1853
- * @memberof IOBooleanValue2
1854
- */
1855
- 'io_value_type'?: IOBooleanValue2IoValueTypeEnum;
1856
- }
1857
-
1858
- export const IOBooleanValue2IoValueTypeEnum = {
1859
- IoBooleanValue: 'IOBooleanValue'
1860
- } as const;
1861
-
1862
- export type IOBooleanValue2IoValueTypeEnum = typeof IOBooleanValue2IoValueTypeEnum[keyof typeof IOBooleanValue2IoValueTypeEnum];
1900
+ export type IOBooleanValueValueTypeEnum = typeof IOBooleanValueValueTypeEnum[keyof typeof IOBooleanValueValueTypeEnum];
1863
1901
 
1864
1902
  /**
1865
1903
  *
@@ -1890,7 +1928,7 @@ export interface IODescription {
1890
1928
  * @type {IODirection}
1891
1929
  * @memberof IODescription
1892
1930
  */
1893
- 'direction'?: IODirection;
1931
+ 'direction': IODirection;
1894
1932
  /**
1895
1933
  *
1896
1934
  * @type {IOValueType}
@@ -1922,7 +1960,7 @@ export interface IODescription {
1922
1960
  * @type IODescriptionMin
1923
1961
  * @export
1924
1962
  */
1925
- export type IODescriptionMin = BooleanValue | FloatValue | IntegerValue;
1963
+ export type IODescriptionMin = { value_type: 'boolean' } & BooleanValue | { value_type: 'float' } & FloatValue | { value_type: 'integer' } & IntegerValue;
1926
1964
 
1927
1965
  /**
1928
1966
  * Identifies the input/output type.
@@ -1961,52 +1999,14 @@ export interface IOFloatValue {
1961
1999
  * @type {string}
1962
2000
  * @memberof IOFloatValue
1963
2001
  */
1964
- 'io_value_type'?: IOFloatValueIoValueTypeEnum;
2002
+ 'value_type'?: IOFloatValueValueTypeEnum;
1965
2003
  }
1966
2004
 
1967
- export const IOFloatValueIoValueTypeEnum = {
1968
- IoFloatValue: 'IOFloatValue'
2005
+ export const IOFloatValueValueTypeEnum = {
2006
+ Float: 'float'
1969
2007
  } as const;
1970
2008
 
1971
- export type IOFloatValueIoValueTypeEnum = typeof IOFloatValueIoValueTypeEnum[keyof typeof IOFloatValueIoValueTypeEnum];
1972
-
1973
- /**
1974
- *
1975
- * @export
1976
- * @interface IOFloatValue2
1977
- */
1978
- export interface IOFloatValue2 {
1979
- /**
1980
- *
1981
- * @type {string}
1982
- * @memberof IOFloatValue2
1983
- */
1984
- 'io': string;
1985
- /**
1986
- *
1987
- * @type {IODirection}
1988
- * @memberof IOFloatValue2
1989
- */
1990
- 'direction': IODirection;
1991
- /**
1992
- *
1993
- * @type {number}
1994
- * @memberof IOFloatValue2
1995
- */
1996
- 'float_value': number;
1997
- /**
1998
- *
1999
- * @type {string}
2000
- * @memberof IOFloatValue2
2001
- */
2002
- 'io_value_type'?: IOFloatValue2IoValueTypeEnum;
2003
- }
2004
-
2005
- export const IOFloatValue2IoValueTypeEnum = {
2006
- IoFloatValue: 'IOFloatValue'
2007
- } as const;
2008
-
2009
- export type IOFloatValue2IoValueTypeEnum = typeof IOFloatValue2IoValueTypeEnum[keyof typeof IOFloatValue2IoValueTypeEnum];
2009
+ export type IOFloatValueValueTypeEnum = typeof IOFloatValueValueTypeEnum[keyof typeof IOFloatValueValueTypeEnum];
2010
2010
 
2011
2011
  /**
2012
2012
  * Input/Output integer value representation.
@@ -2031,84 +2031,15 @@ export interface IOIntegerValue {
2031
2031
  * @type {string}
2032
2032
  * @memberof IOIntegerValue
2033
2033
  */
2034
- 'io_value_type'?: IOIntegerValueIoValueTypeEnum;
2034
+ 'value_type'?: IOIntegerValueValueTypeEnum;
2035
2035
  }
2036
2036
 
2037
- export const IOIntegerValueIoValueTypeEnum = {
2038
- IoIntegerValue: 'IOIntegerValue'
2037
+ export const IOIntegerValueValueTypeEnum = {
2038
+ Integer: 'integer'
2039
2039
  } as const;
2040
2040
 
2041
- export type IOIntegerValueIoValueTypeEnum = typeof IOIntegerValueIoValueTypeEnum[keyof typeof IOIntegerValueIoValueTypeEnum];
2041
+ export type IOIntegerValueValueTypeEnum = typeof IOIntegerValueValueTypeEnum[keyof typeof IOIntegerValueValueTypeEnum];
2042
2042
 
2043
- /**
2044
- *
2045
- * @export
2046
- * @interface IOIntegerValue2
2047
- */
2048
- export interface IOIntegerValue2 {
2049
- /**
2050
- *
2051
- * @type {string}
2052
- * @memberof IOIntegerValue2
2053
- */
2054
- 'io': string;
2055
- /**
2056
- *
2057
- * @type {IODirection}
2058
- * @memberof IOIntegerValue2
2059
- */
2060
- 'direction': IODirection;
2061
- /**
2062
- *
2063
- * @type {string}
2064
- * @memberof IOIntegerValue2
2065
- */
2066
- 'integer_value': string;
2067
- /**
2068
- *
2069
- * @type {string}
2070
- * @memberof IOIntegerValue2
2071
- */
2072
- 'io_value_type'?: IOIntegerValue2IoValueTypeEnum;
2073
- }
2074
-
2075
- export const IOIntegerValue2IoValueTypeEnum = {
2076
- IoIntegerValue: 'IOIntegerValue'
2077
- } as const;
2078
-
2079
- export type IOIntegerValue2IoValueTypeEnum = typeof IOIntegerValue2IoValueTypeEnum[keyof typeof IOIntegerValue2IoValueTypeEnum];
2080
-
2081
- /**
2082
- * Input/Output value representation. Depending on the input/output type, only one of the value fields will be set.
2083
- * @export
2084
- * @interface IOValue
2085
- */
2086
- export interface IOValue {
2087
- /**
2088
- * Unique identifier of the input/output.
2089
- * @type {string}
2090
- * @memberof IOValue
2091
- */
2092
- 'io': string;
2093
- /**
2094
- * Value of a digital input/output. This field is only set if the input/output is of type IO_VALUE_BOOLEAN.
2095
- * @type {boolean}
2096
- * @memberof IOValue
2097
- */
2098
- 'boolean_value'?: boolean;
2099
- /**
2100
- * 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.
2101
- * @type {string}
2102
- * @memberof IOValue
2103
- */
2104
- 'integer_value'?: string;
2105
- /**
2106
- * 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.
2107
- * @type {number}
2108
- * @memberof IOValue
2109
- */
2110
- 'float_value'?: number;
2111
- }
2112
2043
  /**
2113
2044
  * Data type of the input/output.
2114
2045
  * @export
@@ -2124,69 +2055,6 @@ export const IOValueType = {
2124
2055
  export type IOValueType = typeof IOValueType[keyof typeof IOValueType];
2125
2056
 
2126
2057
 
2127
- /**
2128
- *
2129
- * @export
2130
- * @interface IOs
2131
- */
2132
- export interface IOs {
2133
- /**
2134
- *
2135
- * @type {Array<IOsIosInner>}
2136
- * @memberof IOs
2137
- */
2138
- 'ios': Array<IOsIosInner>;
2139
- }
2140
- /**
2141
- *
2142
- * @export
2143
- * @interface IOsIosInner
2144
- */
2145
- export interface IOsIosInner {
2146
- /**
2147
- *
2148
- * @type {string}
2149
- * @memberof IOsIosInner
2150
- */
2151
- 'io': string;
2152
- /**
2153
- *
2154
- * @type {IODirection}
2155
- * @memberof IOsIosInner
2156
- */
2157
- 'direction': IODirection;
2158
- /**
2159
- *
2160
- * @type {string}
2161
- * @memberof IOsIosInner
2162
- */
2163
- 'integer_value': string;
2164
- /**
2165
- *
2166
- * @type {string}
2167
- * @memberof IOsIosInner
2168
- */
2169
- 'io_value_type'?: IOsIosInnerIoValueTypeEnum;
2170
- /**
2171
- *
2172
- * @type {boolean}
2173
- * @memberof IOsIosInner
2174
- */
2175
- 'boolean_value': boolean;
2176
- /**
2177
- *
2178
- * @type {number}
2179
- * @memberof IOsIosInner
2180
- */
2181
- 'float_value': number;
2182
- }
2183
-
2184
- export const IOsIosInnerIoValueTypeEnum = {
2185
- IoFloatValue: 'IOFloatValue'
2186
- } as const;
2187
-
2188
- export type IOsIosInnerIoValueTypeEnum = typeof IOsIosInnerIoValueTypeEnum[keyof typeof IOsIosInnerIoValueTypeEnum];
2189
-
2190
2058
  /**
2191
2059
  * User provided credentials for creating a secret to pull an image from a registry.
2192
2060
  * @export
@@ -2465,18 +2333,31 @@ export interface InitializeMovementResponseInitResponse {
2465
2333
  'error_message'?: string;
2466
2334
  }
2467
2335
  /**
2468
- *
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.
2469
2337
  * @export
2470
2338
  * @interface IntegerValue
2471
2339
  */
2472
2340
  export interface IntegerValue {
2473
2341
  /**
2474
- * 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
+ *
2475
2343
  * @type {string}
2476
2344
  * @memberof IntegerValue
2477
2345
  */
2478
2346
  'integer_value': string;
2347
+ /**
2348
+ *
2349
+ * @type {string}
2350
+ * @memberof IntegerValue
2351
+ */
2352
+ 'value_type'?: IntegerValueValueTypeEnum;
2479
2353
  }
2354
+
2355
+ export const IntegerValueValueTypeEnum = {
2356
+ Integer: 'integer'
2357
+ } as const;
2358
+
2359
+ export type IntegerValueValueTypeEnum = typeof IntegerValueValueTypeEnum[keyof typeof IntegerValueValueTypeEnum];
2360
+
2480
2361
  /**
2481
2362
  *
2482
2363
  * @export
@@ -3304,7 +3185,7 @@ export interface ModelError {
3304
3185
  * @type {string}
3305
3186
  * @memberof ModelError
3306
3187
  */
3307
- 'code': string;
3188
+ 'code'?: string;
3308
3189
  /**
3309
3190
  *
3310
3191
  * @type {string}
@@ -3351,7 +3232,7 @@ export type MotionCommandBlending = BlendingAuto | BlendingPosition;
3351
3232
  export type MotionCommandPath = PathCartesianPTP | PathCircle | PathCubicSpline | PathJointPTP | PathLine;
3352
3233
 
3353
3234
  /**
3354
- * 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.
3355
3236
  * @export
3356
3237
  * @interface MotionGroup
3357
3238
  */
@@ -3375,11 +3256,17 @@ export interface MotionGroup {
3375
3256
  */
3376
3257
  'name_from_controller': string;
3377
3258
  /**
3378
- * The robot controller model if available. Usable for frontend 3D visualization.
3259
+ * The robot controller model, if available. Usable for frontend 3D visualization.
3379
3260
  * @type {string}
3380
3261
  * @memberof MotionGroup
3381
3262
  */
3382
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;
3383
3270
  }
3384
3271
  /**
3385
3272
  *
@@ -3626,11 +3513,17 @@ export interface MotionGroupPhysical {
3626
3513
  */
3627
3514
  'active': boolean;
3628
3515
  /**
3629
- * The robot controller model if available. Usable for frontend 3D visualization.
3516
+ * The robot controller model, if available. Usable for frontend 3D visualization.
3630
3517
  * @type {string}
3631
3518
  * @memberof MotionGroupPhysical
3632
3519
  */
3633
3520
  'model_from_controller'?: string;
3521
+ /**
3522
+ * 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.
3523
+ * @type {string}
3524
+ * @memberof MotionGroupPhysical
3525
+ */
3526
+ 'serial_number'?: string;
3634
3527
  }
3635
3528
  /**
3636
3529
  * Holding static properties of the motion group.
@@ -3689,10 +3582,10 @@ export interface MotionGroupState {
3689
3582
  'joint_torque'?: Joints;
3690
3583
  /**
3691
3584
  * Current position of the Flange (last point of the motion group before the endeffector starts) in [mm]. The position is relative to the response_coordinate_system that is specified in the request. For robot arms a flange pose is always returned, for positioners the flange might not be available, depending on the model.
3692
- * @type {Pose}
3585
+ * @type {PoseInCoordinateSystem}
3693
3586
  * @memberof MotionGroupState
3694
3587
  */
3695
- 'flange_pose'?: Pose;
3588
+ 'flange_pose'?: PoseInCoordinateSystem;
3696
3589
  /**
3697
3590
  * Current position of the TCP currently selected on the robot control panel. Attention: This TCP is not necessarily the same as specified as `tcp` in the request. If you need the information for the specified TCP, use the tcp_pose in the outer response. Position is in [mm]. The position is relative to the response_coordinate_system that is specified in the request.
3698
3591
  * @type {TcpPose}
@@ -3789,10 +3682,10 @@ export interface Mounting {
3789
3682
  'coordinate_system': string;
3790
3683
  /**
3791
3684
  * The pose offset based on world coordinate system of the mounting.
3792
- * @type {Pose}
3685
+ * @type {PoseInCoordinateSystem}
3793
3686
  * @memberof Mounting
3794
3687
  */
3795
- 'pose': Pose;
3688
+ 'pose': PoseInCoordinateSystem;
3796
3689
  }
3797
3690
  /**
3798
3691
  * @type MoveToTrajectoryViaJointPTPResponse
@@ -3937,6 +3830,20 @@ export interface OpcuaNodeValueTriggerConfig {
3937
3830
  */
3938
3831
  export interface OpcuaNodeValueTriggerConfigNodeValue {
3939
3832
  }
3833
+ /**
3834
+ * The operating state.
3835
+ * @export
3836
+ * @enum {string}
3837
+ */
3838
+
3839
+ export const OperatingState = {
3840
+ Active: 'ACTIVE',
3841
+ Inactive: 'INACTIVE'
3842
+ } as const;
3843
+
3844
+ export type OperatingState = typeof OperatingState[keyof typeof OperatingState];
3845
+
3846
+
3940
3847
  /**
3941
3848
  * 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.
3942
3849
  * @export
@@ -4069,10 +3976,10 @@ export interface Path {
4069
3976
  export interface PathCartesianPTP {
4070
3977
  /**
4071
3978
  *
4072
- * @type {Pose2}
3979
+ * @type {Pose}
4073
3980
  * @memberof PathCartesianPTP
4074
3981
  */
4075
- 'target_pose': Pose2;
3982
+ 'target_pose': Pose;
4076
3983
  /**
4077
3984
  *
4078
3985
  * @type {string}
@@ -4095,16 +4002,16 @@ export type PathCartesianPTPPathDefinitionNameEnum = typeof PathCartesianPTPPath
4095
4002
  export interface PathCircle {
4096
4003
  /**
4097
4004
  *
4098
- * @type {Pose2}
4005
+ * @type {Pose}
4099
4006
  * @memberof PathCircle
4100
4007
  */
4101
- 'via_pose': Pose2;
4008
+ 'via_pose': Pose;
4102
4009
  /**
4103
4010
  *
4104
- * @type {Pose2}
4011
+ * @type {Pose}
4105
4012
  * @memberof PathCircle
4106
4013
  */
4107
- 'target_pose': Pose2;
4014
+ 'target_pose': Pose;
4108
4015
  /**
4109
4016
  *
4110
4017
  * @type {string}
@@ -4179,10 +4086,10 @@ export type PathJointPTPPathDefinitionNameEnum = typeof PathJointPTPPathDefiniti
4179
4086
  export interface PathLine {
4180
4087
  /**
4181
4088
  *
4182
- * @type {Pose2}
4089
+ * @type {Pose}
4183
4090
  * @memberof PathLine
4184
4091
  */
4185
- 'target_pose': Pose2;
4092
+ 'target_pose': Pose;
4186
4093
  /**
4187
4094
  *
4188
4095
  * @type {string}
@@ -4263,12 +4170,12 @@ export interface PauseMovementResponsePauseResponse {
4263
4170
  export interface PauseOnIO {
4264
4171
  /**
4265
4172
  *
4266
- * @type {IOValue}
4173
+ * @type {SetOutputValuesRequestInner}
4267
4174
  * @memberof PauseOnIO
4268
4175
  */
4269
- 'io': IOValue;
4176
+ 'io': SetOutputValuesRequestInner;
4270
4177
  /**
4271
- * 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.
4178
+ * Comparator for the comparison of two values. Use the measured I/O as the base value (a) and the expected input/output value as the comparator (b): e.g., a > b.
4272
4179
  * @type {Comparator}
4273
4180
  * @memberof PauseOnIO
4274
4181
  */
@@ -4597,7 +4504,7 @@ export interface PointCloud {
4597
4504
  'pointcloud': string;
4598
4505
  }
4599
4506
  /**
4600
- * 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).
4507
+ * Defines a pose in 3D space. A pose is a combination of a position and an orientation. The position is applied before the orientation.
4601
4508
  * @export
4602
4509
  * @interface Pose
4603
4510
  */
@@ -4607,38 +4514,38 @@ export interface Pose {
4607
4514
  * @type {Array<number>}
4608
4515
  * @memberof Pose
4609
4516
  */
4610
- 'position': Array<number>;
4517
+ 'position'?: Array<number>;
4611
4518
  /**
4612
- * A three-dimensional vector [x, y, z] with double precision.
4519
+ * Defines a rotation in 3D space. A three-dimensional Vector [rx, ry, rz] with double precision. Rotation is applied around the vector. The angle of rotation equals the length of the vector.
4613
4520
  * @type {Array<number>}
4614
4521
  * @memberof Pose
4615
4522
  */
4616
4523
  'orientation'?: Array<number>;
4617
- /**
4618
- * Unique identifier addressing the reference coordinate system of the pose. Default is the world coordinate system.
4619
- * @type {string}
4620
- * @memberof Pose
4621
- */
4622
- 'coordinate_system'?: string;
4623
4524
  }
4624
4525
  /**
4625
- * Defines a pose in 3D space. A pose is a combination of a position and an orientation. The position is applied before the orientation.
4526
+ * Representing a pose in space with its origin in `coordinate_system`. A pose consists of positional coordinates [x, y, z] in millimeters (mm) and orientational coordinates in axis-angle representation [rx, ry, rz] in radian (rad).
4626
4527
  * @export
4627
- * @interface Pose2
4528
+ * @interface PoseInCoordinateSystem
4628
4529
  */
4629
- export interface Pose2 {
4530
+ export interface PoseInCoordinateSystem {
4630
4531
  /**
4631
4532
  * A three-dimensional vector [x, y, z] with double precision.
4632
4533
  * @type {Array<number>}
4633
- * @memberof Pose2
4534
+ * @memberof PoseInCoordinateSystem
4634
4535
  */
4635
- 'position'?: Array<number>;
4536
+ 'position': Array<number>;
4636
4537
  /**
4637
4538
  * Defines a rotation in 3D space. A three-dimensional Vector [rx, ry, rz] with double precision. Rotation is applied around the vector. The angle of rotation equals the length of the vector.
4638
4539
  * @type {Array<number>}
4639
- * @memberof Pose2
4540
+ * @memberof PoseInCoordinateSystem
4640
4541
  */
4641
4542
  'orientation'?: Array<number>;
4543
+ /**
4544
+ * Unique identifier addressing the reference coordinate system of the pose. Default is the world coordinate system.
4545
+ * @type {string}
4546
+ * @memberof PoseInCoordinateSystem
4547
+ */
4548
+ 'coordinate_system'?: string;
4642
4549
  }
4643
4550
  /**
4644
4551
  * The metadata of a program.
@@ -5486,6 +5393,27 @@ export const ServiceStatusPhase = {
5486
5393
  export type ServiceStatusPhase = typeof ServiceStatusPhase[keyof typeof ServiceStatusPhase];
5487
5394
 
5488
5395
 
5396
+ /**
5397
+ * 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.
5398
+ * @export
5399
+ * @interface ServiceStatusResponse
5400
+ */
5401
+ export interface ServiceStatusResponse {
5402
+ /**
5403
+ *
5404
+ * @type {OperatingState}
5405
+ * @memberof ServiceStatusResponse
5406
+ */
5407
+ 'operating_state': OperatingState;
5408
+ /**
5409
+ *
5410
+ * @type {Array<ServiceStatus>}
5411
+ * @memberof ServiceStatusResponse
5412
+ */
5413
+ 'service_status': Array<ServiceStatus>;
5414
+ }
5415
+
5416
+
5489
5417
  /**
5490
5418
  *
5491
5419
  * @export
@@ -5528,36 +5456,17 @@ export interface ServiceStatusStatus {
5528
5456
  }
5529
5457
 
5530
5458
 
5531
- /**
5532
- * Defines an input/output that should be set upon reaching a certain location on the trajectory.
5533
- * @export
5534
- * @interface SetIO
5535
- */
5536
- export interface SetIO {
5537
- /**
5538
- *
5539
- * @type {IOValue}
5540
- * @memberof SetIO
5541
- */
5542
- 'io': IOValue;
5543
- /**
5544
- * The location on the trajectory where the input/output should be set.
5545
- * @type {number}
5546
- * @memberof SetIO
5547
- */
5548
- 'location': number;
5549
- }
5550
5459
  /**
5551
5460
  * @type SetIOValuesRequestInner
5552
5461
  * @export
5553
5462
  */
5554
- export type SetIOValuesRequestInner = IOBooleanValue2 | IOFloatValue2 | IOIntegerValue2;
5463
+ export type SetIOValuesRequestInner = IOBooleanValue | IOFloatValue | IOIntegerValue;
5555
5464
 
5556
5465
  /**
5557
5466
  * @type SetOutputValuesRequestInner
5558
5467
  * @export
5559
5468
  */
5560
- export type SetOutputValuesRequestInner = IOBooleanValue | IOFloatValue | IOIntegerValue;
5469
+ export type SetOutputValuesRequestInner = { value_type: 'boolean' } & IOBooleanValue | { value_type: 'float' } & IOFloatValue | { value_type: 'integer' } & IOIntegerValue;
5561
5470
 
5562
5471
  /**
5563
5472
  *
@@ -5724,10 +5633,10 @@ export interface StartMovementRequest {
5724
5633
  'direction': Direction;
5725
5634
  /**
5726
5635
  * Attaches a list of input/output commands to the trajectory. The inputs/outputs are set to the specified values right after the specified location was reached. If the specified location is located before the start location (forward direction: value is smaller, backward direction: value is bigger), the input/output is not set.
5727
- * @type {Array<SetIO>}
5636
+ * @type {Array<SetOutputValuesRequestInner>}
5728
5637
  * @memberof StartMovementRequest
5729
5638
  */
5730
- 'set_ios'?: Array<SetIO>;
5639
+ 'set_ios'?: Array<SetOutputValuesRequestInner>;
5731
5640
  /**
5732
5641
  * Defines an input/output that is listened to before the movement. Execution starts if the defined comparator evaluates to `true`.
5733
5642
  * @type {StartOnIO}
@@ -5756,12 +5665,12 @@ export type StartMovementRequestMessageTypeEnum = typeof StartMovementRequestMes
5756
5665
  export interface StartOnIO {
5757
5666
  /**
5758
5667
  *
5759
- * @type {IOValue}
5668
+ * @type {SetOutputValuesRequestInner}
5760
5669
  * @memberof StartOnIO
5761
5670
  */
5762
- 'io': IOValue;
5671
+ 'io': SetOutputValuesRequestInner;
5763
5672
  /**
5764
- * 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.
5673
+ * Comparator for the comparison of two values. Use the measured I/O as the base value (a) and the expected input/output value as the comparator (b): e.g., a > b.
5765
5674
  * @type {Comparator}
5766
5675
  * @memberof StartOnIO
5767
5676
  */
@@ -6465,6 +6374,27 @@ export interface VirtualRobotConfiguration {
6465
6374
  */
6466
6375
  'content': string;
6467
6376
  }
6377
+ /**
6378
+ * The value to compare with the current value of the input/output.
6379
+ * @export
6380
+ * @interface WaitForIOEventRequest
6381
+ */
6382
+ export interface WaitForIOEventRequest {
6383
+ /**
6384
+ *
6385
+ * @type {SetOutputValuesRequestInner}
6386
+ * @memberof WaitForIOEventRequest
6387
+ */
6388
+ 'io': SetOutputValuesRequestInner;
6389
+ /**
6390
+ * Comparator for the comparison of two values. Use the measured I/O as the base value (a) and the expected input/output value as the comparator (b): e.g., a > b.
6391
+ * @type {Comparator}
6392
+ * @memberof WaitForIOEventRequest
6393
+ */
6394
+ 'comparator': Comparator;
6395
+ }
6396
+
6397
+
6468
6398
  /**
6469
6399
  * The configuration of a physical Yaskawa robot controller has to contain IP address of the controller.
6470
6400
  * @export
@@ -7279,6 +7209,55 @@ export const CellApiAxiosParamCreator = function (configuration?: Configuration)
7279
7209
 
7280
7210
 
7281
7211
 
7212
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
7213
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
7214
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
7215
+
7216
+ return {
7217
+ url: toPathString(localVarUrlObj),
7218
+ options: localVarRequestOptions,
7219
+ };
7220
+ },
7221
+ /**
7222
+ * Deactivate or activate the services of a cell.
7223
+ * @summary Operating State
7224
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7225
+ * @param {OperatingState} operatingState Set state of the cell. Active or inactive.
7226
+ * @param {*} [options] Override http request option.
7227
+ * @throws {RequiredError}
7228
+ */
7229
+ setCellStatus: async (cell: string, operatingState: OperatingState, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
7230
+ // verify required parameter 'cell' is not null or undefined
7231
+ assertParamExists('setCellStatus', 'cell', cell)
7232
+ // verify required parameter 'operatingState' is not null or undefined
7233
+ assertParamExists('setCellStatus', 'operatingState', operatingState)
7234
+ const localVarPath = `/cells/{cell}/status`
7235
+ .replace(`{${"cell"}}`, encodeURIComponent(String(cell)));
7236
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
7237
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
7238
+ let baseOptions;
7239
+ if (configuration) {
7240
+ baseOptions = configuration.baseOptions;
7241
+ }
7242
+
7243
+ const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
7244
+ const localVarHeaderParameter = {} as any;
7245
+ const localVarQueryParameter = {} as any;
7246
+
7247
+ // authentication BasicAuth required
7248
+ // http basic authentication required
7249
+ setBasicAuthToObject(localVarRequestOptions, configuration)
7250
+
7251
+ // authentication BearerAuth required
7252
+ // http bearer authentication required
7253
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
7254
+
7255
+ if (operatingState !== undefined) {
7256
+ localVarQueryParameter['operating_state'] = operatingState;
7257
+ }
7258
+
7259
+
7260
+
7282
7261
  setSearchParams(localVarUrlObj, localVarQueryParameter);
7283
7262
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
7284
7263
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -7399,7 +7378,7 @@ export const CellApiFp = function(configuration?: Configuration) {
7399
7378
  * @param {*} [options] Override http request option.
7400
7379
  * @throws {RequiredError}
7401
7380
  */
7402
- async getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ServiceStatus>>> {
7381
+ async getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceStatusResponse>> {
7403
7382
  const localVarAxiosArgs = await localVarAxiosParamCreator.getCellStatus(cell, options);
7404
7383
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
7405
7384
  const localVarOperationServerBasePath = operationServerMap['CellApi.getCellStatus']?.[localVarOperationServerIndex]?.url;
@@ -7417,6 +7396,20 @@ export const CellApiFp = function(configuration?: Configuration) {
7417
7396
  const localVarOperationServerBasePath = operationServerMap['CellApi.listCells']?.[localVarOperationServerIndex]?.url;
7418
7397
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7419
7398
  },
7399
+ /**
7400
+ * Deactivate or activate the services of a cell.
7401
+ * @summary Operating State
7402
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7403
+ * @param {OperatingState} operatingState Set state of the cell. Active or inactive.
7404
+ * @param {*} [options] Override http request option.
7405
+ * @throws {RequiredError}
7406
+ */
7407
+ async setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
7408
+ const localVarAxiosArgs = await localVarAxiosParamCreator.setCellStatus(cell, operatingState, options);
7409
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
7410
+ const localVarOperationServerBasePath = operationServerMap['CellApi.setCellStatus']?.[localVarOperationServerIndex]?.url;
7411
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
7412
+ },
7420
7413
  /**
7421
7414
  * Update the definition of the entire Cell.
7422
7415
  * @summary Update Configuration
@@ -7481,7 +7474,7 @@ export const CellApiFactory = function (configuration?: Configuration, basePath?
7481
7474
  * @param {*} [options] Override http request option.
7482
7475
  * @throws {RequiredError}
7483
7476
  */
7484
- getCellStatus(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ServiceStatus>> {
7477
+ getCellStatus(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<ServiceStatusResponse> {
7485
7478
  return localVarFp.getCellStatus(cell, options).then((request) => request(axios, basePath));
7486
7479
  },
7487
7480
  /**
@@ -7493,6 +7486,17 @@ export const CellApiFactory = function (configuration?: Configuration, basePath?
7493
7486
  listCells(options?: RawAxiosRequestConfig): AxiosPromise<Array<string>> {
7494
7487
  return localVarFp.listCells(options).then((request) => request(axios, basePath));
7495
7488
  },
7489
+ /**
7490
+ * Deactivate or activate the services of a cell.
7491
+ * @summary Operating State
7492
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7493
+ * @param {OperatingState} operatingState Set state of the cell. Active or inactive.
7494
+ * @param {*} [options] Override http request option.
7495
+ * @throws {RequiredError}
7496
+ */
7497
+ setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): AxiosPromise<void> {
7498
+ return localVarFp.setCellStatus(cell, operatingState, options).then((request) => request(axios, basePath));
7499
+ },
7496
7500
  /**
7497
7501
  * Update the definition of the entire Cell.
7498
7502
  * @summary Update Configuration
@@ -7576,6 +7580,19 @@ export class CellApi extends BaseAPI {
7576
7580
  return CellApiFp(this.configuration).listCells(options).then((request) => request(this.axios, this.basePath));
7577
7581
  }
7578
7582
 
7583
+ /**
7584
+ * Deactivate or activate the services of a cell.
7585
+ * @summary Operating State
7586
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
7587
+ * @param {OperatingState} operatingState Set state of the cell. Active or inactive.
7588
+ * @param {*} [options] Override http request option.
7589
+ * @throws {RequiredError}
7590
+ * @memberof CellApi
7591
+ */
7592
+ public setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig) {
7593
+ return CellApiFp(this.configuration).setCellStatus(cell, operatingState, options).then((request) => request(this.axios, this.basePath));
7594
+ }
7595
+
7579
7596
  /**
7580
7597
  * Update the definition of the entire Cell.
7581
7598
  * @summary Update Configuration
@@ -9094,23 +9111,17 @@ export const ControllerInputsOutputsApiAxiosParamCreator = function (configurati
9094
9111
  * @summary Wait For
9095
9112
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9096
9113
  * @param {string} controller Unique identifier to address a controller in the cell.
9097
- * @param {string} io
9098
- * @param {Comparator} comparisonType
9099
- * @param {boolean} [booleanValue]
9100
- * @param {string} [integerValue]
9101
- * @param {number} [floatValue]
9114
+ * @param {WaitForIOEventRequest} waitForIOEventRequest
9102
9115
  * @param {*} [options] Override http request option.
9103
9116
  * @throws {RequiredError}
9104
9117
  */
9105
- waitForIOEvent: async (cell: string, controller: string, io: string, comparisonType: Comparator, booleanValue?: boolean, integerValue?: string, floatValue?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
9118
+ waitForIOEvent: async (cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
9106
9119
  // verify required parameter 'cell' is not null or undefined
9107
9120
  assertParamExists('waitForIOEvent', 'cell', cell)
9108
9121
  // verify required parameter 'controller' is not null or undefined
9109
9122
  assertParamExists('waitForIOEvent', 'controller', controller)
9110
- // verify required parameter 'io' is not null or undefined
9111
- assertParamExists('waitForIOEvent', 'io', io)
9112
- // verify required parameter 'comparisonType' is not null or undefined
9113
- assertParamExists('waitForIOEvent', 'comparisonType', comparisonType)
9123
+ // verify required parameter 'waitForIOEventRequest' is not null or undefined
9124
+ assertParamExists('waitForIOEvent', 'waitForIOEventRequest', waitForIOEventRequest)
9114
9125
  const localVarPath = `/cells/{cell}/controllers/{controller}/ios/wait-for`
9115
9126
  .replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
9116
9127
  .replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
@@ -9121,7 +9132,7 @@ export const ControllerInputsOutputsApiAxiosParamCreator = function (configurati
9121
9132
  baseOptions = configuration.baseOptions;
9122
9133
  }
9123
9134
 
9124
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
9135
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
9125
9136
  const localVarHeaderParameter = {} as any;
9126
9137
  const localVarQueryParameter = {} as any;
9127
9138
 
@@ -9129,35 +9140,18 @@ export const ControllerInputsOutputsApiAxiosParamCreator = function (configurati
9129
9140
  // http basic authentication required
9130
9141
  setBasicAuthToObject(localVarRequestOptions, configuration)
9131
9142
 
9132
- // authentication BearerAuth required
9133
- // http bearer authentication required
9134
- await setBearerAuthToObject(localVarHeaderParameter, configuration)
9135
-
9136
- if (io !== undefined) {
9137
- localVarQueryParameter['io'] = io;
9138
- }
9139
-
9140
- if (comparisonType !== undefined) {
9141
- localVarQueryParameter['comparison_type'] = comparisonType;
9142
- }
9143
-
9144
- if (booleanValue !== undefined) {
9145
- localVarQueryParameter['boolean_value'] = booleanValue;
9146
- }
9147
-
9148
- if (integerValue !== undefined) {
9149
- localVarQueryParameter['integer_value'] = integerValue;
9150
- }
9151
-
9152
- if (floatValue !== undefined) {
9153
- localVarQueryParameter['float_value'] = floatValue;
9154
- }
9143
+ // authentication BearerAuth required
9144
+ // http bearer authentication required
9145
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
9155
9146
 
9156
9147
 
9157
9148
 
9149
+ localVarHeaderParameter['Content-Type'] = 'application/json';
9150
+
9158
9151
  setSearchParams(localVarUrlObj, localVarQueryParameter);
9159
9152
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
9160
9153
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
9154
+ localVarRequestOptions.data = serializeDataIfNeeded(waitForIOEventRequest, localVarRequestOptions, configuration)
9161
9155
 
9162
9156
  return {
9163
9157
  url: toPathString(localVarUrlObj),
@@ -9242,16 +9236,12 @@ export const ControllerInputsOutputsApiFp = function(configuration?: Configurati
9242
9236
  * @summary Wait For
9243
9237
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9244
9238
  * @param {string} controller Unique identifier to address a controller in the cell.
9245
- * @param {string} io
9246
- * @param {Comparator} comparisonType
9247
- * @param {boolean} [booleanValue]
9248
- * @param {string} [integerValue]
9249
- * @param {number} [floatValue]
9239
+ * @param {WaitForIOEventRequest} waitForIOEventRequest
9250
9240
  * @param {*} [options] Override http request option.
9251
9241
  * @throws {RequiredError}
9252
9242
  */
9253
- 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>> {
9254
- const localVarAxiosArgs = await localVarAxiosParamCreator.waitForIOEvent(cell, controller, io, comparisonType, booleanValue, integerValue, floatValue, options);
9243
+ async waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
9244
+ const localVarAxiosArgs = await localVarAxiosParamCreator.waitForIOEvent(cell, controller, waitForIOEventRequest, options);
9255
9245
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
9256
9246
  const localVarOperationServerBasePath = operationServerMap['ControllerInputsOutputsApi.waitForIOEvent']?.[localVarOperationServerIndex]?.url;
9257
9247
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -9322,16 +9312,12 @@ export const ControllerInputsOutputsApiFactory = function (configuration?: Confi
9322
9312
  * @summary Wait For
9323
9313
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9324
9314
  * @param {string} controller Unique identifier to address a controller in the cell.
9325
- * @param {string} io
9326
- * @param {Comparator} comparisonType
9327
- * @param {boolean} [booleanValue]
9328
- * @param {string} [integerValue]
9329
- * @param {number} [floatValue]
9315
+ * @param {WaitForIOEventRequest} waitForIOEventRequest
9330
9316
  * @param {*} [options] Override http request option.
9331
9317
  * @throws {RequiredError}
9332
9318
  */
9333
- waitForIOEvent(cell: string, controller: string, io: string, comparisonType: Comparator, booleanValue?: boolean, integerValue?: string, floatValue?: number, options?: RawAxiosRequestConfig): AxiosPromise<boolean> {
9334
- return localVarFp.waitForIOEvent(cell, controller, io, comparisonType, booleanValue, integerValue, floatValue, options).then((request) => request(axios, basePath));
9319
+ waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): AxiosPromise<boolean> {
9320
+ return localVarFp.waitForIOEvent(cell, controller, waitForIOEventRequest, options).then((request) => request(axios, basePath));
9335
9321
  },
9336
9322
  };
9337
9323
  };
@@ -9407,17 +9393,13 @@ export class ControllerInputsOutputsApi extends BaseAPI {
9407
9393
  * @summary Wait For
9408
9394
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9409
9395
  * @param {string} controller Unique identifier to address a controller in the cell.
9410
- * @param {string} io
9411
- * @param {Comparator} comparisonType
9412
- * @param {boolean} [booleanValue]
9413
- * @param {string} [integerValue]
9414
- * @param {number} [floatValue]
9396
+ * @param {WaitForIOEventRequest} waitForIOEventRequest
9415
9397
  * @param {*} [options] Override http request option.
9416
9398
  * @throws {RequiredError}
9417
9399
  * @memberof ControllerInputsOutputsApi
9418
9400
  */
9419
- public waitForIOEvent(cell: string, controller: string, io: string, comparisonType: Comparator, booleanValue?: boolean, integerValue?: string, floatValue?: number, options?: RawAxiosRequestConfig) {
9420
- return ControllerInputsOutputsApiFp(this.configuration).waitForIOEvent(cell, controller, io, comparisonType, booleanValue, integerValue, floatValue, options).then((request) => request(this.axios, this.basePath));
9401
+ public waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig) {
9402
+ return ControllerInputsOutputsApiFp(this.configuration).waitForIOEvent(cell, controller, waitForIOEventRequest, options).then((request) => request(this.axios, this.basePath));
9421
9403
  }
9422
9404
  }
9423
9405
 
@@ -9532,17 +9514,17 @@ export const CoordinateSystemsApiAxiosParamCreator = function (configuration?: C
9532
9514
  * @summary Transform
9533
9515
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9534
9516
  * @param {string} coordinateSystem Unique identifier addressing a coordinate system.
9535
- * @param {Pose} pose
9517
+ * @param {PoseInCoordinateSystem} poseInCoordinateSystem
9536
9518
  * @param {*} [options] Override http request option.
9537
9519
  * @throws {RequiredError}
9538
9520
  */
9539
- transformInCoordinateSystem: async (cell: string, coordinateSystem: string, pose: Pose, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
9521
+ transformInCoordinateSystem: async (cell: string, coordinateSystem: string, poseInCoordinateSystem: PoseInCoordinateSystem, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
9540
9522
  // verify required parameter 'cell' is not null or undefined
9541
9523
  assertParamExists('transformInCoordinateSystem', 'cell', cell)
9542
9524
  // verify required parameter 'coordinateSystem' is not null or undefined
9543
9525
  assertParamExists('transformInCoordinateSystem', 'coordinateSystem', coordinateSystem)
9544
- // verify required parameter 'pose' is not null or undefined
9545
- assertParamExists('transformInCoordinateSystem', 'pose', pose)
9526
+ // verify required parameter 'poseInCoordinateSystem' is not null or undefined
9527
+ assertParamExists('transformInCoordinateSystem', 'poseInCoordinateSystem', poseInCoordinateSystem)
9546
9528
  const localVarPath = `/cells/{cell}/coordinate-systems/{coordinate-system}/transform`
9547
9529
  .replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
9548
9530
  .replace(`{${"coordinate-system"}}`, encodeURIComponent(String(coordinateSystem)));
@@ -9572,7 +9554,7 @@ export const CoordinateSystemsApiAxiosParamCreator = function (configuration?: C
9572
9554
  setSearchParams(localVarUrlObj, localVarQueryParameter);
9573
9555
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
9574
9556
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
9575
- localVarRequestOptions.data = serializeDataIfNeeded(pose, localVarRequestOptions, configuration)
9557
+ localVarRequestOptions.data = serializeDataIfNeeded(poseInCoordinateSystem, localVarRequestOptions, configuration)
9576
9558
 
9577
9559
  return {
9578
9560
  url: toPathString(localVarUrlObj),
@@ -9623,12 +9605,12 @@ export const CoordinateSystemsApiFp = function(configuration?: Configuration) {
9623
9605
  * @summary Transform
9624
9606
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9625
9607
  * @param {string} coordinateSystem Unique identifier addressing a coordinate system.
9626
- * @param {Pose} pose
9608
+ * @param {PoseInCoordinateSystem} poseInCoordinateSystem
9627
9609
  * @param {*} [options] Override http request option.
9628
9610
  * @throws {RequiredError}
9629
9611
  */
9630
- async transformInCoordinateSystem(cell: string, coordinateSystem: string, pose: Pose, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pose>> {
9631
- const localVarAxiosArgs = await localVarAxiosParamCreator.transformInCoordinateSystem(cell, coordinateSystem, pose, options);
9612
+ async transformInCoordinateSystem(cell: string, coordinateSystem: string, poseInCoordinateSystem: PoseInCoordinateSystem, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoseInCoordinateSystem>> {
9613
+ const localVarAxiosArgs = await localVarAxiosParamCreator.transformInCoordinateSystem(cell, coordinateSystem, poseInCoordinateSystem, options);
9632
9614
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
9633
9615
  const localVarOperationServerBasePath = operationServerMap['CoordinateSystemsApi.transformInCoordinateSystem']?.[localVarOperationServerIndex]?.url;
9634
9616
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -9671,12 +9653,12 @@ export const CoordinateSystemsApiFactory = function (configuration?: Configurati
9671
9653
  * @summary Transform
9672
9654
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9673
9655
  * @param {string} coordinateSystem Unique identifier addressing a coordinate system.
9674
- * @param {Pose} pose
9656
+ * @param {PoseInCoordinateSystem} poseInCoordinateSystem
9675
9657
  * @param {*} [options] Override http request option.
9676
9658
  * @throws {RequiredError}
9677
9659
  */
9678
- transformInCoordinateSystem(cell: string, coordinateSystem: string, pose: Pose, options?: RawAxiosRequestConfig): AxiosPromise<Pose> {
9679
- return localVarFp.transformInCoordinateSystem(cell, coordinateSystem, pose, options).then((request) => request(axios, basePath));
9660
+ transformInCoordinateSystem(cell: string, coordinateSystem: string, poseInCoordinateSystem: PoseInCoordinateSystem, options?: RawAxiosRequestConfig): AxiosPromise<PoseInCoordinateSystem> {
9661
+ return localVarFp.transformInCoordinateSystem(cell, coordinateSystem, poseInCoordinateSystem, options).then((request) => request(axios, basePath));
9680
9662
  },
9681
9663
  };
9682
9664
  };
@@ -9720,13 +9702,13 @@ export class CoordinateSystemsApi extends BaseAPI {
9720
9702
  * @summary Transform
9721
9703
  * @param {string} cell Unique identifier addressing a cell in all API calls.
9722
9704
  * @param {string} coordinateSystem Unique identifier addressing a coordinate system.
9723
- * @param {Pose} pose
9705
+ * @param {PoseInCoordinateSystem} poseInCoordinateSystem
9724
9706
  * @param {*} [options] Override http request option.
9725
9707
  * @throws {RequiredError}
9726
9708
  * @memberof CoordinateSystemsApi
9727
9709
  */
9728
- public transformInCoordinateSystem(cell: string, coordinateSystem: string, pose: Pose, options?: RawAxiosRequestConfig) {
9729
- return CoordinateSystemsApiFp(this.configuration).transformInCoordinateSystem(cell, coordinateSystem, pose, options).then((request) => request(this.axios, this.basePath));
9710
+ public transformInCoordinateSystem(cell: string, coordinateSystem: string, poseInCoordinateSystem: PoseInCoordinateSystem, options?: RawAxiosRequestConfig) {
9711
+ return CoordinateSystemsApiFp(this.configuration).transformInCoordinateSystem(cell, coordinateSystem, poseInCoordinateSystem, options).then((request) => request(this.axios, this.basePath));
9730
9712
  }
9731
9713
  }
9732
9714
 
@@ -11912,7 +11894,7 @@ export const MotionGroupKinematicsApiFp = function(configuration?: Configuration
11912
11894
  * @param {*} [options] Override http request option.
11913
11895
  * @throws {RequiredError}
11914
11896
  */
11915
- async calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pose>> {
11897
+ async calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoseInCoordinateSystem>> {
11916
11898
  const localVarAxiosArgs = await localVarAxiosParamCreator.calculateForwardKinematic(cell, motionGroup, tcpPoseRequest, options);
11917
11899
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
11918
11900
  const localVarOperationServerBasePath = operationServerMap['MotionGroupKinematicsApi.calculateForwardKinematic']?.[localVarOperationServerIndex]?.url;
@@ -11978,7 +11960,7 @@ export const MotionGroupKinematicsApiFactory = function (configuration?: Configu
11978
11960
  * @param {*} [options] Override http request option.
11979
11961
  * @throws {RequiredError}
11980
11962
  */
11981
- calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): AxiosPromise<Pose> {
11963
+ calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): AxiosPromise<PoseInCoordinateSystem> {
11982
11964
  return localVarFp.calculateForwardKinematic(cell, motionGroup, tcpPoseRequest, options).then((request) => request(axios, basePath));
11983
11965
  },
11984
11966
  /**
@@ -16453,6 +16435,56 @@ export class StoreObjectApi extends BaseAPI {
16453
16435
  */
16454
16436
  export const SystemApiAxiosParamCreator = function (configuration?: Configuration) {
16455
16437
  return {
16438
+ /**
16439
+ * Retrieves a configuration backup based on provided resource identifiers.
16440
+ * @summary Retrieve Configuration Backup
16441
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
16442
+ * @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
16443
+ * @param {*} [options] Override http request option.
16444
+ * @throws {RequiredError}
16445
+ */
16446
+ backupConfiguration: async (resources: Array<string>, metadata?: { [key: string]: string; }, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
16447
+ // verify required parameter 'resources' is not null or undefined
16448
+ assertParamExists('backupConfiguration', 'resources', resources)
16449
+ const localVarPath = `/system/configuration`;
16450
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
16451
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
16452
+ let baseOptions;
16453
+ if (configuration) {
16454
+ baseOptions = configuration.baseOptions;
16455
+ }
16456
+
16457
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
16458
+ const localVarHeaderParameter = {} as any;
16459
+ const localVarQueryParameter = {} as any;
16460
+
16461
+ // authentication BasicAuth required
16462
+ // http basic authentication required
16463
+ setBasicAuthToObject(localVarRequestOptions, configuration)
16464
+
16465
+ // authentication BearerAuth required
16466
+ // http bearer authentication required
16467
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
16468
+
16469
+ if (resources) {
16470
+ localVarQueryParameter['resources'] = resources.join(COLLECTION_FORMATS.csv);
16471
+ }
16472
+
16473
+ if (metadata !== undefined) {
16474
+ localVarQueryParameter['metadata'] = metadata;
16475
+ }
16476
+
16477
+
16478
+
16479
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
16480
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
16481
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
16482
+
16483
+ return {
16484
+ url: toPathString(localVarUrlObj),
16485
+ options: localVarRequestOptions,
16486
+ };
16487
+ },
16456
16488
  /**
16457
16489
  * Check if a more recent Wandelbots NOVA Version is available.
16458
16490
  * @summary Check update
@@ -16612,6 +16644,95 @@ export const SystemApiAxiosParamCreator = function (configuration?: Configuratio
16612
16644
  options: localVarRequestOptions,
16613
16645
  };
16614
16646
  },
16647
+ /**
16648
+ * Retrieves a list of all available configuration resources for backup purposes.
16649
+ * @summary List Configuration Resources
16650
+ * @param {*} [options] Override http request option.
16651
+ * @throws {RequiredError}
16652
+ */
16653
+ listConfigurationResources: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
16654
+ const localVarPath = `/system/configuration/resources`;
16655
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
16656
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
16657
+ let baseOptions;
16658
+ if (configuration) {
16659
+ baseOptions = configuration.baseOptions;
16660
+ }
16661
+
16662
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
16663
+ const localVarHeaderParameter = {} as any;
16664
+ const localVarQueryParameter = {} as any;
16665
+
16666
+ // authentication BasicAuth required
16667
+ // http basic authentication required
16668
+ setBasicAuthToObject(localVarRequestOptions, configuration)
16669
+
16670
+ // authentication BearerAuth required
16671
+ // http bearer authentication required
16672
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
16673
+
16674
+
16675
+
16676
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
16677
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
16678
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
16679
+
16680
+ return {
16681
+ url: toPathString(localVarUrlObj),
16682
+ options: localVarRequestOptions,
16683
+ };
16684
+ },
16685
+ /**
16686
+ * Restores a previously backed up configuration.
16687
+ * @summary Restore Configuration Backup
16688
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
16689
+ * @param {File} body Backup file stream containing the configuration to restore.
16690
+ * @param {*} [options] Override http request option.
16691
+ * @throws {RequiredError}
16692
+ */
16693
+ restoreConfiguration: async (resources: Array<string>, body: File, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
16694
+ // verify required parameter 'resources' is not null or undefined
16695
+ assertParamExists('restoreConfiguration', 'resources', resources)
16696
+ // verify required parameter 'body' is not null or undefined
16697
+ assertParamExists('restoreConfiguration', 'body', body)
16698
+ const localVarPath = `/system/configuration`;
16699
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
16700
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
16701
+ let baseOptions;
16702
+ if (configuration) {
16703
+ baseOptions = configuration.baseOptions;
16704
+ }
16705
+
16706
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
16707
+ const localVarHeaderParameter = {} as any;
16708
+ const localVarQueryParameter = {} as any;
16709
+
16710
+ // authentication BasicAuth required
16711
+ // http basic authentication required
16712
+ setBasicAuthToObject(localVarRequestOptions, configuration)
16713
+
16714
+ // authentication BearerAuth required
16715
+ // http bearer authentication required
16716
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
16717
+
16718
+ if (resources) {
16719
+ localVarQueryParameter['resources'] = resources.join(COLLECTION_FORMATS.csv);
16720
+ }
16721
+
16722
+
16723
+
16724
+ localVarHeaderParameter['Content-Type'] = 'application/gzip';
16725
+
16726
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
16727
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
16728
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
16729
+ localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)
16730
+
16731
+ return {
16732
+ url: toPathString(localVarUrlObj),
16733
+ options: localVarRequestOptions,
16734
+ };
16735
+ },
16615
16736
  /**
16616
16737
  * 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.
16617
16738
  * @summary Update Wandelbots NOVA version
@@ -16666,6 +16787,20 @@ export const SystemApiAxiosParamCreator = function (configuration?: Configuratio
16666
16787
  export const SystemApiFp = function(configuration?: Configuration) {
16667
16788
  const localVarAxiosParamCreator = SystemApiAxiosParamCreator(configuration)
16668
16789
  return {
16790
+ /**
16791
+ * Retrieves a configuration backup based on provided resource identifiers.
16792
+ * @summary Retrieve Configuration Backup
16793
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
16794
+ * @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
16795
+ * @param {*} [options] Override http request option.
16796
+ * @throws {RequiredError}
16797
+ */
16798
+ async backupConfiguration(resources: Array<string>, metadata?: { [key: string]: string; }, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>> {
16799
+ const localVarAxiosArgs = await localVarAxiosParamCreator.backupConfiguration(resources, metadata, options);
16800
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
16801
+ const localVarOperationServerBasePath = operationServerMap['SystemApi.backupConfiguration']?.[localVarOperationServerIndex]?.url;
16802
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
16803
+ },
16669
16804
  /**
16670
16805
  * Check if a more recent Wandelbots NOVA Version is available.
16671
16806
  * @summary Check update
@@ -16715,6 +16850,32 @@ export const SystemApiFp = function(configuration?: Configuration) {
16715
16850
  const localVarOperationServerBasePath = operationServerMap['SystemApi.getSystemVersion']?.[localVarOperationServerIndex]?.url;
16716
16851
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
16717
16852
  },
16853
+ /**
16854
+ * Retrieves a list of all available configuration resources for backup purposes.
16855
+ * @summary List Configuration Resources
16856
+ * @param {*} [options] Override http request option.
16857
+ * @throws {RequiredError}
16858
+ */
16859
+ async listConfigurationResources(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ConfigurationResource>>> {
16860
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listConfigurationResources(options);
16861
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
16862
+ const localVarOperationServerBasePath = operationServerMap['SystemApi.listConfigurationResources']?.[localVarOperationServerIndex]?.url;
16863
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
16864
+ },
16865
+ /**
16866
+ * Restores a previously backed up configuration.
16867
+ * @summary Restore Configuration Backup
16868
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
16869
+ * @param {File} body Backup file stream containing the configuration to restore.
16870
+ * @param {*} [options] Override http request option.
16871
+ * @throws {RequiredError}
16872
+ */
16873
+ async restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
16874
+ const localVarAxiosArgs = await localVarAxiosParamCreator.restoreConfiguration(resources, body, options);
16875
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
16876
+ const localVarOperationServerBasePath = operationServerMap['SystemApi.restoreConfiguration']?.[localVarOperationServerIndex]?.url;
16877
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
16878
+ },
16718
16879
  /**
16719
16880
  * 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.
16720
16881
  * @summary Update Wandelbots NOVA version
@@ -16738,6 +16899,17 @@ export const SystemApiFp = function(configuration?: Configuration) {
16738
16899
  export const SystemApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
16739
16900
  const localVarFp = SystemApiFp(configuration)
16740
16901
  return {
16902
+ /**
16903
+ * Retrieves a configuration backup based on provided resource identifiers.
16904
+ * @summary Retrieve Configuration Backup
16905
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
16906
+ * @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
16907
+ * @param {*} [options] Override http request option.
16908
+ * @throws {RequiredError}
16909
+ */
16910
+ backupConfiguration(resources: Array<string>, metadata?: { [key: string]: string; }, options?: RawAxiosRequestConfig): AxiosPromise<File> {
16911
+ return localVarFp.backupConfiguration(resources, metadata, options).then((request) => request(axios, basePath));
16912
+ },
16741
16913
  /**
16742
16914
  * Check if a more recent Wandelbots NOVA Version is available.
16743
16915
  * @summary Check update
@@ -16775,6 +16947,26 @@ export const SystemApiFactory = function (configuration?: Configuration, basePat
16775
16947
  getSystemVersion(options?: RawAxiosRequestConfig): AxiosPromise<string> {
16776
16948
  return localVarFp.getSystemVersion(options).then((request) => request(axios, basePath));
16777
16949
  },
16950
+ /**
16951
+ * Retrieves a list of all available configuration resources for backup purposes.
16952
+ * @summary List Configuration Resources
16953
+ * @param {*} [options] Override http request option.
16954
+ * @throws {RequiredError}
16955
+ */
16956
+ listConfigurationResources(options?: RawAxiosRequestConfig): AxiosPromise<Array<ConfigurationResource>> {
16957
+ return localVarFp.listConfigurationResources(options).then((request) => request(axios, basePath));
16958
+ },
16959
+ /**
16960
+ * Restores a previously backed up configuration.
16961
+ * @summary Restore Configuration Backup
16962
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
16963
+ * @param {File} body Backup file stream containing the configuration to restore.
16964
+ * @param {*} [options] Override http request option.
16965
+ * @throws {RequiredError}
16966
+ */
16967
+ restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): AxiosPromise<void> {
16968
+ return localVarFp.restoreConfiguration(resources, body, options).then((request) => request(axios, basePath));
16969
+ },
16778
16970
  /**
16779
16971
  * 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.
16780
16972
  * @summary Update Wandelbots NOVA version
@@ -16795,6 +16987,19 @@ export const SystemApiFactory = function (configuration?: Configuration, basePat
16795
16987
  * @extends {BaseAPI}
16796
16988
  */
16797
16989
  export class SystemApi extends BaseAPI {
16990
+ /**
16991
+ * Retrieves a configuration backup based on provided resource identifiers.
16992
+ * @summary Retrieve Configuration Backup
16993
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
16994
+ * @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
16995
+ * @param {*} [options] Override http request option.
16996
+ * @throws {RequiredError}
16997
+ * @memberof SystemApi
16998
+ */
16999
+ public backupConfiguration(resources: Array<string>, metadata?: { [key: string]: string; }, options?: RawAxiosRequestConfig) {
17000
+ return SystemApiFp(this.configuration).backupConfiguration(resources, metadata, options).then((request) => request(this.axios, this.basePath));
17001
+ }
17002
+
16798
17003
  /**
16799
17004
  * Check if a more recent Wandelbots NOVA Version is available.
16800
17005
  * @summary Check update
@@ -16840,6 +17045,30 @@ export class SystemApi extends BaseAPI {
16840
17045
  return SystemApiFp(this.configuration).getSystemVersion(options).then((request) => request(this.axios, this.basePath));
16841
17046
  }
16842
17047
 
17048
+ /**
17049
+ * Retrieves a list of all available configuration resources for backup purposes.
17050
+ * @summary List Configuration Resources
17051
+ * @param {*} [options] Override http request option.
17052
+ * @throws {RequiredError}
17053
+ * @memberof SystemApi
17054
+ */
17055
+ public listConfigurationResources(options?: RawAxiosRequestConfig) {
17056
+ return SystemApiFp(this.configuration).listConfigurationResources(options).then((request) => request(this.axios, this.basePath));
17057
+ }
17058
+
17059
+ /**
17060
+ * Restores a previously backed up configuration.
17061
+ * @summary Restore Configuration Backup
17062
+ * @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
17063
+ * @param {File} body Backup file stream containing the configuration to restore.
17064
+ * @param {*} [options] Override http request option.
17065
+ * @throws {RequiredError}
17066
+ * @memberof SystemApi
17067
+ */
17068
+ public restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig) {
17069
+ return SystemApiFp(this.configuration).restoreConfiguration(resources, body, options).then((request) => request(this.axios, this.basePath));
17070
+ }
17071
+
16843
17072
  /**
16844
17073
  * 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.
16845
17074
  * @summary Update Wandelbots NOVA version
@@ -17757,22 +17986,21 @@ export const VirtualRobotApiAxiosParamCreator = function (configuration?: Config
17757
17986
  };
17758
17987
  },
17759
17988
  /**
17760
- * 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.
17989
+ * Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualRobotIODescriptions](listVirtualRobotIODescriptions).
17761
17990
  * @summary Get Inputs/Outputs
17762
17991
  * @param {string} cell Unique identifier addressing a cell in all API calls.
17763
17992
  * @param {string} controller Unique identifier to address a controller in the cell.
17764
- * @param {Array<string>} [ios]
17765
- * @param {IODirection} [direction] Return only inputs/outputs with the specified direction.
17766
- * @param {IOValueType} [valueType] Return only inputs/outputs with the specified value type.
17767
- * @param {string} [prefix] Return only inputs/outputs with the specified prefix of unique identifier.
17993
+ * @param {Array<string>} ios
17768
17994
  * @param {*} [options] Override http request option.
17769
17995
  * @throws {RequiredError}
17770
17996
  */
17771
- listIOs: async (cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, prefix?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
17997
+ listIOs: async (cell: string, controller: string, ios: Array<string>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
17772
17998
  // verify required parameter 'cell' is not null or undefined
17773
17999
  assertParamExists('listIOs', 'cell', cell)
17774
18000
  // verify required parameter 'controller' is not null or undefined
17775
18001
  assertParamExists('listIOs', 'controller', controller)
18002
+ // verify required parameter 'ios' is not null or undefined
18003
+ assertParamExists('listIOs', 'ios', ios)
17776
18004
  const localVarPath = `/cells/{cell}/controllers/{controller}/teach-pendant/ios`
17777
18005
  .replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
17778
18006
  .replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
@@ -17799,6 +18027,60 @@ export const VirtualRobotApiAxiosParamCreator = function (configuration?: Config
17799
18027
  localVarQueryParameter['ios'] = ios;
17800
18028
  }
17801
18029
 
18030
+
18031
+
18032
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
18033
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
18034
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
18035
+
18036
+ return {
18037
+ url: toPathString(localVarUrlObj),
18038
+ options: localVarRequestOptions,
18039
+ };
18040
+ },
18041
+ /**
18042
+ * Lists the input/output descriptions of the virtual robot controller. The input/output descriptions contain information like name, type and unit. Available inputs/outputs are defined by the virtual robot controller. Each input/output has a unique identifier. If no identifiers are specified in the request, all available inputs/outputs are retrieved by this endpoint. Exception: When a filter (e.g., direction, value_type, group) is applied, only matching inputs/outputs are returned.
18043
+ * @summary List Input/Output Descriptions
18044
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
18045
+ * @param {string} controller Unique identifier to address a controller in the cell.
18046
+ * @param {Array<string>} [ios]
18047
+ * @param {IODirection} [direction] Return only inputs/outputs with the specified direction.
18048
+ * @param {IOValueType} [valueType] Return only inputs/outputs with the specified value type.
18049
+ * @param {string} [group] Return only inputs/outputs from the specified group.
18050
+ * @param {*} [options] Override http request option.
18051
+ * @throws {RequiredError}
18052
+ */
18053
+ listVirtualRobotIODescriptions: async (cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
18054
+ // verify required parameter 'cell' is not null or undefined
18055
+ assertParamExists('listVirtualRobotIODescriptions', 'cell', cell)
18056
+ // verify required parameter 'controller' is not null or undefined
18057
+ assertParamExists('listVirtualRobotIODescriptions', 'controller', controller)
18058
+ const localVarPath = `/cells/{cell}/controllers/{controller}/teach-pendant/ios/description`
18059
+ .replace(`{${"cell"}}`, encodeURIComponent(String(cell)))
18060
+ .replace(`{${"controller"}}`, encodeURIComponent(String(controller)));
18061
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
18062
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
18063
+ let baseOptions;
18064
+ if (configuration) {
18065
+ baseOptions = configuration.baseOptions;
18066
+ }
18067
+
18068
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
18069
+ const localVarHeaderParameter = {} as any;
18070
+ const localVarQueryParameter = {} as any;
18071
+
18072
+ // authentication BasicAuth required
18073
+ // http basic authentication required
18074
+ setBasicAuthToObject(localVarRequestOptions, configuration)
18075
+
18076
+ // authentication BearerAuth required
18077
+ // http bearer authentication required
18078
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
18079
+
18080
+ if (ios) {
18081
+ localVarQueryParameter['ios'] = ios;
18082
+ }
18083
+
17802
18084
  if (direction !== undefined) {
17803
18085
  localVarQueryParameter['direction'] = direction;
17804
18086
  }
@@ -17807,8 +18089,8 @@ export const VirtualRobotApiAxiosParamCreator = function (configuration?: Config
17807
18089
  localVarQueryParameter['value_type'] = valueType;
17808
18090
  }
17809
18091
 
17810
- if (prefix !== undefined) {
17811
- localVarQueryParameter['prefix'] = prefix;
18092
+ if (group !== undefined) {
18093
+ localVarQueryParameter['group'] = group;
17812
18094
  }
17813
18095
 
17814
18096
 
@@ -17970,21 +18252,36 @@ export const VirtualRobotApiFp = function(configuration?: Configuration) {
17970
18252
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
17971
18253
  },
17972
18254
  /**
17973
- * 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.
18255
+ * Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualRobotIODescriptions](listVirtualRobotIODescriptions).
17974
18256
  * @summary Get Inputs/Outputs
17975
18257
  * @param {string} cell Unique identifier addressing a cell in all API calls.
17976
18258
  * @param {string} controller Unique identifier to address a controller in the cell.
18259
+ * @param {Array<string>} ios
18260
+ * @param {*} [options] Override http request option.
18261
+ * @throws {RequiredError}
18262
+ */
18263
+ async listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListIOValuesResponse>> {
18264
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listIOs(cell, controller, ios, options);
18265
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
18266
+ const localVarOperationServerBasePath = operationServerMap['VirtualRobotApi.listIOs']?.[localVarOperationServerIndex]?.url;
18267
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
18268
+ },
18269
+ /**
18270
+ * Lists the input/output descriptions of the virtual robot controller. The input/output descriptions contain information like name, type and unit. Available inputs/outputs are defined by the virtual robot controller. Each input/output has a unique identifier. If no identifiers are specified in the request, all available inputs/outputs are retrieved by this endpoint. Exception: When a filter (e.g., direction, value_type, group) is applied, only matching inputs/outputs are returned.
18271
+ * @summary List Input/Output Descriptions
18272
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
18273
+ * @param {string} controller Unique identifier to address a controller in the cell.
17977
18274
  * @param {Array<string>} [ios]
17978
18275
  * @param {IODirection} [direction] Return only inputs/outputs with the specified direction.
17979
18276
  * @param {IOValueType} [valueType] Return only inputs/outputs with the specified value type.
17980
- * @param {string} [prefix] Return only inputs/outputs with the specified prefix of unique identifier.
18277
+ * @param {string} [group] Return only inputs/outputs from the specified group.
17981
18278
  * @param {*} [options] Override http request option.
17982
18279
  * @throws {RequiredError}
17983
18280
  */
17984
- async listIOs(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, prefix?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IOs>> {
17985
- const localVarAxiosArgs = await localVarAxiosParamCreator.listIOs(cell, controller, ios, direction, valueType, prefix, options);
18281
+ async listVirtualRobotIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListIODescriptionsResponse>> {
18282
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listVirtualRobotIODescriptions(cell, controller, ios, direction, valueType, group, options);
17986
18283
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
17987
- const localVarOperationServerBasePath = operationServerMap['VirtualRobotApi.listIOs']?.[localVarOperationServerIndex]?.url;
18284
+ const localVarOperationServerBasePath = operationServerMap['VirtualRobotApi.listVirtualRobotIODescriptions']?.[localVarOperationServerIndex]?.url;
17988
18285
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
17989
18286
  },
17990
18287
  /**
@@ -17996,7 +18293,7 @@ export const VirtualRobotApiFp = function(configuration?: Configuration) {
17996
18293
  * @param {*} [options] Override http request option.
17997
18294
  * @throws {RequiredError}
17998
18295
  */
17999
- async setIOValues(cell: string, controller: string, setIOValuesRequestInner: Array<SetIOValuesRequestInner>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
18296
+ async setIOValues(cell: string, controller: string, setIOValuesRequestInner: Array<SetIOValuesRequestInner>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
18000
18297
  const localVarAxiosArgs = await localVarAxiosParamCreator.setIOValues(cell, controller, setIOValuesRequestInner, options);
18001
18298
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
18002
18299
  const localVarOperationServerBasePath = operationServerMap['VirtualRobotApi.setIOValues']?.[localVarOperationServerIndex]?.url;
@@ -18012,7 +18309,7 @@ export const VirtualRobotApiFp = function(configuration?: Configuration) {
18012
18309
  * @param {*} [options] Override http request option.
18013
18310
  * @throws {RequiredError}
18014
18311
  */
18015
- async setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
18312
+ async setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
18016
18313
  const localVarAxiosArgs = await localVarAxiosParamCreator.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options);
18017
18314
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
18018
18315
  const localVarOperationServerBasePath = operationServerMap['VirtualRobotApi.setMotionGroupState']?.[localVarOperationServerIndex]?.url;
@@ -18052,19 +18349,31 @@ export const VirtualRobotApiFactory = function (configuration?: Configuration, b
18052
18349
  return localVarFp.getMotionGroups(cell, controller, options).then((request) => request(axios, basePath));
18053
18350
  },
18054
18351
  /**
18055
- * 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.
18352
+ * Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualRobotIODescriptions](listVirtualRobotIODescriptions).
18056
18353
  * @summary Get Inputs/Outputs
18057
18354
  * @param {string} cell Unique identifier addressing a cell in all API calls.
18058
18355
  * @param {string} controller Unique identifier to address a controller in the cell.
18356
+ * @param {Array<string>} ios
18357
+ * @param {*} [options] Override http request option.
18358
+ * @throws {RequiredError}
18359
+ */
18360
+ listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): AxiosPromise<ListIOValuesResponse> {
18361
+ return localVarFp.listIOs(cell, controller, ios, options).then((request) => request(axios, basePath));
18362
+ },
18363
+ /**
18364
+ * Lists the input/output descriptions of the virtual robot controller. The input/output descriptions contain information like name, type and unit. Available inputs/outputs are defined by the virtual robot controller. Each input/output has a unique identifier. If no identifiers are specified in the request, all available inputs/outputs are retrieved by this endpoint. Exception: When a filter (e.g., direction, value_type, group) is applied, only matching inputs/outputs are returned.
18365
+ * @summary List Input/Output Descriptions
18366
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
18367
+ * @param {string} controller Unique identifier to address a controller in the cell.
18059
18368
  * @param {Array<string>} [ios]
18060
18369
  * @param {IODirection} [direction] Return only inputs/outputs with the specified direction.
18061
18370
  * @param {IOValueType} [valueType] Return only inputs/outputs with the specified value type.
18062
- * @param {string} [prefix] Return only inputs/outputs with the specified prefix of unique identifier.
18371
+ * @param {string} [group] Return only inputs/outputs from the specified group.
18063
18372
  * @param {*} [options] Override http request option.
18064
18373
  * @throws {RequiredError}
18065
18374
  */
18066
- listIOs(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, prefix?: string, options?: RawAxiosRequestConfig): AxiosPromise<IOs> {
18067
- return localVarFp.listIOs(cell, controller, ios, direction, valueType, prefix, options).then((request) => request(axios, basePath));
18375
+ listVirtualRobotIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListIODescriptionsResponse> {
18376
+ return localVarFp.listVirtualRobotIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(axios, basePath));
18068
18377
  },
18069
18378
  /**
18070
18379
  * Sets a list of values of a virtual controller inputs/outputs.
@@ -18075,7 +18384,7 @@ export const VirtualRobotApiFactory = function (configuration?: Configuration, b
18075
18384
  * @param {*} [options] Override http request option.
18076
18385
  * @throws {RequiredError}
18077
18386
  */
18078
- setIOValues(cell: string, controller: string, setIOValuesRequestInner: Array<SetIOValuesRequestInner>, options?: RawAxiosRequestConfig): AxiosPromise<object> {
18387
+ setIOValues(cell: string, controller: string, setIOValuesRequestInner: Array<SetIOValuesRequestInner>, options?: RawAxiosRequestConfig): AxiosPromise<void> {
18079
18388
  return localVarFp.setIOValues(cell, controller, setIOValuesRequestInner, options).then((request) => request(axios, basePath));
18080
18389
  },
18081
18390
  /**
@@ -18088,7 +18397,7 @@ export const VirtualRobotApiFactory = function (configuration?: Configuration, b
18088
18397
  * @param {*} [options] Override http request option.
18089
18398
  * @throws {RequiredError}
18090
18399
  */
18091
- setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): AxiosPromise<object> {
18400
+ setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): AxiosPromise<void> {
18092
18401
  return localVarFp.setMotionGroupState(cell, controller, motionGroup, motionGroupJoints, options).then((request) => request(axios, basePath));
18093
18402
  },
18094
18403
  };
@@ -18129,20 +18438,34 @@ export class VirtualRobotApi extends BaseAPI {
18129
18438
  }
18130
18439
 
18131
18440
  /**
18132
- * 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.
18441
+ * Retrieves the current values of inputs/outputs of the virtual controller. The identifiers of inputs/outputs must be provided in the request. Request all available input/output identifiers via [listVirtualRobotIODescriptions](listVirtualRobotIODescriptions).
18133
18442
  * @summary Get Inputs/Outputs
18134
18443
  * @param {string} cell Unique identifier addressing a cell in all API calls.
18135
18444
  * @param {string} controller Unique identifier to address a controller in the cell.
18445
+ * @param {Array<string>} ios
18446
+ * @param {*} [options] Override http request option.
18447
+ * @throws {RequiredError}
18448
+ * @memberof VirtualRobotApi
18449
+ */
18450
+ public listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig) {
18451
+ return VirtualRobotApiFp(this.configuration).listIOs(cell, controller, ios, options).then((request) => request(this.axios, this.basePath));
18452
+ }
18453
+
18454
+ /**
18455
+ * Lists the input/output descriptions of the virtual robot controller. The input/output descriptions contain information like name, type and unit. Available inputs/outputs are defined by the virtual robot controller. Each input/output has a unique identifier. If no identifiers are specified in the request, all available inputs/outputs are retrieved by this endpoint. Exception: When a filter (e.g., direction, value_type, group) is applied, only matching inputs/outputs are returned.
18456
+ * @summary List Input/Output Descriptions
18457
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
18458
+ * @param {string} controller Unique identifier to address a controller in the cell.
18136
18459
  * @param {Array<string>} [ios]
18137
18460
  * @param {IODirection} [direction] Return only inputs/outputs with the specified direction.
18138
18461
  * @param {IOValueType} [valueType] Return only inputs/outputs with the specified value type.
18139
- * @param {string} [prefix] Return only inputs/outputs with the specified prefix of unique identifier.
18462
+ * @param {string} [group] Return only inputs/outputs from the specified group.
18140
18463
  * @param {*} [options] Override http request option.
18141
18464
  * @throws {RequiredError}
18142
18465
  * @memberof VirtualRobotApi
18143
18466
  */
18144
- public listIOs(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, prefix?: string, options?: RawAxiosRequestConfig) {
18145
- return VirtualRobotApiFp(this.configuration).listIOs(cell, controller, ios, direction, valueType, prefix, options).then((request) => request(this.axios, this.basePath));
18467
+ public listVirtualRobotIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig) {
18468
+ return VirtualRobotApiFp(this.configuration).listVirtualRobotIODescriptions(cell, controller, ios, direction, valueType, group, options).then((request) => request(this.axios, this.basePath));
18146
18469
  }
18147
18470
 
18148
18471
  /**
@@ -18390,7 +18713,7 @@ export const VirtualRobotBehaviorApiFp = function(configuration?: Configuration)
18390
18713
  * @param {*} [options] Override http request option.
18391
18714
  * @throws {RequiredError}
18392
18715
  */
18393
- async setMotionGroupBehavior(cell: string, controller: string, motionGroup: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
18716
+ async setMotionGroupBehavior(cell: string, controller: string, motionGroup: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
18394
18717
  const localVarAxiosArgs = await localVarAxiosParamCreator.setMotionGroupBehavior(cell, controller, motionGroup, behavior, options);
18395
18718
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
18396
18719
  const localVarOperationServerBasePath = operationServerMap['VirtualRobotBehaviorApi.setMotionGroupBehavior']?.[localVarOperationServerIndex]?.url;
@@ -18440,7 +18763,7 @@ export const VirtualRobotBehaviorApiFactory = function (configuration?: Configur
18440
18763
  * @param {*} [options] Override http request option.
18441
18764
  * @throws {RequiredError}
18442
18765
  */
18443
- setMotionGroupBehavior(cell: string, controller: string, motionGroup: string, behavior?: Behavior, options?: RawAxiosRequestConfig): AxiosPromise<object> {
18766
+ setMotionGroupBehavior(cell: string, controller: string, motionGroup: string, behavior?: Behavior, options?: RawAxiosRequestConfig): AxiosPromise<void> {
18444
18767
  return localVarFp.setMotionGroupBehavior(cell, controller, motionGroup, behavior, options).then((request) => request(axios, basePath));
18445
18768
  },
18446
18769
  };
@@ -18808,7 +19131,7 @@ export const VirtualRobotModeApiFp = function(configuration?: Configuration) {
18808
19131
  * @param {*} [options] Override http request option.
18809
19132
  * @throws {RequiredError}
18810
19133
  */
18811
- async setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
19134
+ async setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
18812
19135
  const localVarAxiosArgs = await localVarAxiosParamCreator.setEmergencyStop(cell, controller, active, options);
18813
19136
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
18814
19137
  const localVarOperationServerBasePath = operationServerMap['VirtualRobotModeApi.setEmergencyStop']?.[localVarOperationServerIndex]?.url;
@@ -18823,7 +19146,7 @@ export const VirtualRobotModeApiFp = function(configuration?: Configuration) {
18823
19146
  * @param {*} [options] Override http request option.
18824
19147
  * @throws {RequiredError}
18825
19148
  */
18826
- async setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
19149
+ async setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
18827
19150
  const localVarAxiosArgs = await localVarAxiosParamCreator.setOperationMode(cell, controller, mode, options);
18828
19151
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
18829
19152
  const localVarOperationServerBasePath = operationServerMap['VirtualRobotModeApi.setOperationMode']?.[localVarOperationServerIndex]?.url;
@@ -18881,7 +19204,7 @@ export const VirtualRobotModeApiFactory = function (configuration?: Configuratio
18881
19204
  * @param {*} [options] Override http request option.
18882
19205
  * @throws {RequiredError}
18883
19206
  */
18884
- setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<object> {
19207
+ setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
18885
19208
  return localVarFp.setEmergencyStop(cell, controller, active, options).then((request) => request(axios, basePath));
18886
19209
  },
18887
19210
  /**
@@ -18893,7 +19216,7 @@ export const VirtualRobotModeApiFactory = function (configuration?: Configuratio
18893
19216
  * @param {*} [options] Override http request option.
18894
19217
  * @throws {RequiredError}
18895
19218
  */
18896
- setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): AxiosPromise<object> {
19219
+ setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): AxiosPromise<void> {
18897
19220
  return localVarFp.setOperationMode(cell, controller, mode, options).then((request) => request(axios, basePath));
18898
19221
  },
18899
19222
  };
@@ -19420,7 +19743,7 @@ export const VirtualRobotSetupApiFp = function(configuration?: Configuration) {
19420
19743
  * @param {*} [options] Override http request option.
19421
19744
  * @throws {RequiredError}
19422
19745
  */
19423
- async addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
19746
+ async addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
19424
19747
  const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, options);
19425
19748
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
19426
19749
  const localVarOperationServerBasePath = operationServerMap['VirtualRobotSetupApi.addVirtualRobotCoordinateSystem']?.[localVarOperationServerIndex]?.url;
@@ -19436,7 +19759,7 @@ export const VirtualRobotSetupApiFp = function(configuration?: Configuration) {
19436
19759
  * @param {*} [options] Override http request option.
19437
19760
  * @throws {RequiredError}
19438
19761
  */
19439
- async addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
19762
+ async addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
19440
19763
  const localVarAxiosArgs = await localVarAxiosParamCreator.addVirtualRobotTcp(cell, controller, motionGroup, robotTcp, options);
19441
19764
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
19442
19765
  const localVarOperationServerBasePath = operationServerMap['VirtualRobotSetupApi.addVirtualRobotTcp']?.[localVarOperationServerIndex]?.url;
@@ -19452,7 +19775,7 @@ export const VirtualRobotSetupApiFp = function(configuration?: Configuration) {
19452
19775
  * @param {*} [options] Override http request option.
19453
19776
  * @throws {RequiredError}
19454
19777
  */
19455
- async deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
19778
+ async deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
19456
19779
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options);
19457
19780
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
19458
19781
  const localVarOperationServerBasePath = operationServerMap['VirtualRobotSetupApi.deleteVirtualRobotCoordinateSystem']?.[localVarOperationServerIndex]?.url;
@@ -19468,7 +19791,7 @@ export const VirtualRobotSetupApiFp = function(configuration?: Configuration) {
19468
19791
  * @param {*} [options] Override http request option.
19469
19792
  * @throws {RequiredError}
19470
19793
  */
19471
- async deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
19794
+ async deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
19472
19795
  const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVirtualRobotTcp(cell, controller, motionGroup, tcp, options);
19473
19796
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
19474
19797
  const localVarOperationServerBasePath = operationServerMap['VirtualRobotSetupApi.deleteVirtualRobotTcp']?.[localVarOperationServerIndex]?.url;
@@ -19553,7 +19876,7 @@ export const VirtualRobotSetupApiFactory = function (configuration?: Configurati
19553
19876
  * @param {*} [options] Override http request option.
19554
19877
  * @throws {RequiredError}
19555
19878
  */
19556
- addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): AxiosPromise<object> {
19879
+ addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): AxiosPromise<void> {
19557
19880
  return localVarFp.addVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, options).then((request) => request(axios, basePath));
19558
19881
  },
19559
19882
  /**
@@ -19566,7 +19889,7 @@ export const VirtualRobotSetupApiFactory = function (configuration?: Configurati
19566
19889
  * @param {*} [options] Override http request option.
19567
19890
  * @throws {RequiredError}
19568
19891
  */
19569
- addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): AxiosPromise<object> {
19892
+ addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): AxiosPromise<void> {
19570
19893
  return localVarFp.addVirtualRobotTcp(cell, controller, motionGroup, robotTcp, options).then((request) => request(axios, basePath));
19571
19894
  },
19572
19895
  /**
@@ -19579,7 +19902,7 @@ export const VirtualRobotSetupApiFactory = function (configuration?: Configurati
19579
19902
  * @param {*} [options] Override http request option.
19580
19903
  * @throws {RequiredError}
19581
19904
  */
19582
- deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<object> {
19905
+ deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void> {
19583
19906
  return localVarFp.deleteVirtualRobotCoordinateSystem(cell, controller, coordinateSystem, deleteDependent, options).then((request) => request(axios, basePath));
19584
19907
  },
19585
19908
  /**
@@ -19592,7 +19915,7 @@ export const VirtualRobotSetupApiFactory = function (configuration?: Configurati
19592
19915
  * @param {*} [options] Override http request option.
19593
19916
  * @throws {RequiredError}
19594
19917
  */
19595
- deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): AxiosPromise<object> {
19918
+ deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): AxiosPromise<void> {
19596
19919
  return localVarFp.deleteVirtualRobotTcp(cell, controller, motionGroup, tcp, options).then((request) => request(axios, basePath));
19597
19920
  },
19598
19921
  /**