@wandelbots/nova-api 25.4.0-dev.8 → 25.5.0-dev.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/v1/api.d.ts +48 -3
- package/v1/api.js +47 -2
- package/v1/api.js.map +1 -1
- package/v1/api.ts +49 -4
- package/v2/api.d.ts +483 -496
- package/v2/api.js +623 -474
- package/v2/api.js.map +1 -1
- package/v2/api.ts +869 -818
package/v2/api.d.ts
CHANGED
|
@@ -416,7 +416,17 @@ export interface BooleanValue {
|
|
|
416
416
|
* @memberof BooleanValue
|
|
417
417
|
*/
|
|
418
418
|
'boolean_value': boolean;
|
|
419
|
+
/**
|
|
420
|
+
*
|
|
421
|
+
* @type {string}
|
|
422
|
+
* @memberof BooleanValue
|
|
423
|
+
*/
|
|
424
|
+
'value_type'?: BooleanValueValueTypeEnum;
|
|
419
425
|
}
|
|
426
|
+
export declare const BooleanValueValueTypeEnum: {
|
|
427
|
+
readonly Boolean: "boolean";
|
|
428
|
+
};
|
|
429
|
+
export type BooleanValueValueTypeEnum = typeof BooleanValueValueTypeEnum[keyof typeof BooleanValueValueTypeEnum];
|
|
420
430
|
/**
|
|
421
431
|
* Defines a cuboid shape centered around an origin.
|
|
422
432
|
* @export
|
|
@@ -572,6 +582,12 @@ export interface Cell {
|
|
|
572
582
|
* @memberof Cell
|
|
573
583
|
*/
|
|
574
584
|
'name': string;
|
|
585
|
+
/**
|
|
586
|
+
* A description of the cell.
|
|
587
|
+
* @type {string}
|
|
588
|
+
* @memberof Cell
|
|
589
|
+
*/
|
|
590
|
+
'description'?: string;
|
|
575
591
|
/**
|
|
576
592
|
*
|
|
577
593
|
* @type {Array<RobotController>}
|
|
@@ -620,10 +636,10 @@ export interface Collider {
|
|
|
620
636
|
'shape': ColliderShape;
|
|
621
637
|
/**
|
|
622
638
|
*
|
|
623
|
-
* @type {
|
|
639
|
+
* @type {Pose}
|
|
624
640
|
* @memberof Collider
|
|
625
641
|
*/
|
|
626
|
-
'pose'?:
|
|
642
|
+
'pose'?: Pose;
|
|
627
643
|
/**
|
|
628
644
|
* Increases the shape\'s size in all dimensions. Applied in [mm]. Can be used to keep a safe distance to the shape.
|
|
629
645
|
* @type {number}
|
|
@@ -1239,10 +1255,10 @@ export type CreateTriggerRequestConfig = OpcuaNodeValueTriggerConfig;
|
|
|
1239
1255
|
export interface CubicSplineParameter {
|
|
1240
1256
|
/**
|
|
1241
1257
|
*
|
|
1242
|
-
* @type {
|
|
1258
|
+
* @type {Pose}
|
|
1243
1259
|
* @memberof CubicSplineParameter
|
|
1244
1260
|
*/
|
|
1245
|
-
'pose':
|
|
1261
|
+
'pose': Pose;
|
|
1246
1262
|
/**
|
|
1247
1263
|
*
|
|
1248
1264
|
* @type {number}
|
|
@@ -1358,6 +1374,19 @@ export declare const Direction: {
|
|
|
1358
1374
|
readonly DirectionBackward: "DIRECTION_BACKWARD";
|
|
1359
1375
|
};
|
|
1360
1376
|
export type Direction = typeof Direction[keyof typeof Direction];
|
|
1377
|
+
/**
|
|
1378
|
+
*
|
|
1379
|
+
* @export
|
|
1380
|
+
* @interface Error2
|
|
1381
|
+
*/
|
|
1382
|
+
export interface Error2 {
|
|
1383
|
+
/**
|
|
1384
|
+
*
|
|
1385
|
+
* @type {string}
|
|
1386
|
+
* @memberof Error2
|
|
1387
|
+
*/
|
|
1388
|
+
'message': string;
|
|
1389
|
+
}
|
|
1361
1390
|
/**
|
|
1362
1391
|
* @type ExecuteJoggingRequest
|
|
1363
1392
|
* @export
|
|
@@ -1496,10 +1525,10 @@ export interface FeedbackCollision {
|
|
|
1496
1525
|
'joint_position'?: Array<number>;
|
|
1497
1526
|
/**
|
|
1498
1527
|
*
|
|
1499
|
-
* @type {
|
|
1528
|
+
* @type {Pose}
|
|
1500
1529
|
* @memberof FeedbackCollision
|
|
1501
1530
|
*/
|
|
1502
|
-
'tcp_pose'?:
|
|
1531
|
+
'tcp_pose'?: Pose;
|
|
1503
1532
|
/**
|
|
1504
1533
|
*
|
|
1505
1534
|
* @type {string}
|
|
@@ -1548,10 +1577,10 @@ export type FeedbackJointLimitExceededErrorFeedbackNameEnum = typeof FeedbackJoi
|
|
|
1548
1577
|
export interface FeedbackOutOfWorkspace {
|
|
1549
1578
|
/**
|
|
1550
1579
|
*
|
|
1551
|
-
* @type {
|
|
1580
|
+
* @type {Pose}
|
|
1552
1581
|
* @memberof FeedbackOutOfWorkspace
|
|
1553
1582
|
*/
|
|
1554
|
-
'invalid_tcp_pose'?:
|
|
1583
|
+
'invalid_tcp_pose'?: Pose;
|
|
1555
1584
|
/**
|
|
1556
1585
|
*
|
|
1557
1586
|
* @type {string}
|
|
@@ -1617,7 +1646,17 @@ export interface FloatValue {
|
|
|
1617
1646
|
* @memberof FloatValue
|
|
1618
1647
|
*/
|
|
1619
1648
|
'float_value': number;
|
|
1649
|
+
/**
|
|
1650
|
+
*
|
|
1651
|
+
* @type {string}
|
|
1652
|
+
* @memberof FloatValue
|
|
1653
|
+
*/
|
|
1654
|
+
'value_type'?: FloatValueValueTypeEnum;
|
|
1620
1655
|
}
|
|
1656
|
+
export declare const FloatValueValueTypeEnum: {
|
|
1657
|
+
readonly Float: "float";
|
|
1658
|
+
};
|
|
1659
|
+
export type FloatValueValueTypeEnum = typeof FloatValueValueTypeEnum[keyof typeof FloatValueValueTypeEnum];
|
|
1621
1660
|
/**
|
|
1622
1661
|
* Representing a force on a specific point in operational space, e.g. on robot flange.
|
|
1623
1662
|
* @export
|
|
@@ -1804,47 +1843,12 @@ export interface IOBooleanValue {
|
|
|
1804
1843
|
* @type {string}
|
|
1805
1844
|
* @memberof IOBooleanValue
|
|
1806
1845
|
*/
|
|
1807
|
-
'
|
|
1846
|
+
'value_type'?: IOBooleanValueValueTypeEnum;
|
|
1808
1847
|
}
|
|
1809
|
-
export declare const
|
|
1810
|
-
readonly
|
|
1848
|
+
export declare const IOBooleanValueValueTypeEnum: {
|
|
1849
|
+
readonly Boolean: "boolean";
|
|
1811
1850
|
};
|
|
1812
|
-
export type
|
|
1813
|
-
/**
|
|
1814
|
-
*
|
|
1815
|
-
* @export
|
|
1816
|
-
* @interface IOBooleanValue2
|
|
1817
|
-
*/
|
|
1818
|
-
export interface IOBooleanValue2 {
|
|
1819
|
-
/**
|
|
1820
|
-
*
|
|
1821
|
-
* @type {string}
|
|
1822
|
-
* @memberof IOBooleanValue2
|
|
1823
|
-
*/
|
|
1824
|
-
'io': string;
|
|
1825
|
-
/**
|
|
1826
|
-
*
|
|
1827
|
-
* @type {IODirection}
|
|
1828
|
-
* @memberof IOBooleanValue2
|
|
1829
|
-
*/
|
|
1830
|
-
'direction': IODirection;
|
|
1831
|
-
/**
|
|
1832
|
-
*
|
|
1833
|
-
* @type {boolean}
|
|
1834
|
-
* @memberof IOBooleanValue2
|
|
1835
|
-
*/
|
|
1836
|
-
'boolean_value': boolean;
|
|
1837
|
-
/**
|
|
1838
|
-
*
|
|
1839
|
-
* @type {string}
|
|
1840
|
-
* @memberof IOBooleanValue2
|
|
1841
|
-
*/
|
|
1842
|
-
'io_value_type'?: IOBooleanValue2IoValueTypeEnum;
|
|
1843
|
-
}
|
|
1844
|
-
export declare const IOBooleanValue2IoValueTypeEnum: {
|
|
1845
|
-
readonly IoBooleanValue: "IOBooleanValue";
|
|
1846
|
-
};
|
|
1847
|
-
export type IOBooleanValue2IoValueTypeEnum = typeof IOBooleanValue2IoValueTypeEnum[keyof typeof IOBooleanValue2IoValueTypeEnum];
|
|
1851
|
+
export type IOBooleanValueValueTypeEnum = typeof IOBooleanValueValueTypeEnum[keyof typeof IOBooleanValueValueTypeEnum];
|
|
1848
1852
|
/**
|
|
1849
1853
|
*
|
|
1850
1854
|
* @export
|
|
@@ -1874,7 +1878,7 @@ export interface IODescription {
|
|
|
1874
1878
|
* @type {IODirection}
|
|
1875
1879
|
* @memberof IODescription
|
|
1876
1880
|
*/
|
|
1877
|
-
'direction'
|
|
1881
|
+
'direction': IODirection;
|
|
1878
1882
|
/**
|
|
1879
1883
|
*
|
|
1880
1884
|
* @type {IOValueType}
|
|
@@ -1904,7 +1908,13 @@ export interface IODescription {
|
|
|
1904
1908
|
* @type IODescriptionMin
|
|
1905
1909
|
* @export
|
|
1906
1910
|
*/
|
|
1907
|
-
export type IODescriptionMin =
|
|
1911
|
+
export type IODescriptionMin = {
|
|
1912
|
+
value_type: 'boolean';
|
|
1913
|
+
} & BooleanValue | {
|
|
1914
|
+
value_type: 'float';
|
|
1915
|
+
} & FloatValue | {
|
|
1916
|
+
value_type: 'integer';
|
|
1917
|
+
} & IntegerValue;
|
|
1908
1918
|
/**
|
|
1909
1919
|
* Identifies the input/output type.
|
|
1910
1920
|
* @export
|
|
@@ -1938,47 +1948,12 @@ export interface IOFloatValue {
|
|
|
1938
1948
|
* @type {string}
|
|
1939
1949
|
* @memberof IOFloatValue
|
|
1940
1950
|
*/
|
|
1941
|
-
'
|
|
1942
|
-
}
|
|
1943
|
-
export declare const IOFloatValueIoValueTypeEnum: {
|
|
1944
|
-
readonly IoFloatValue: "IOFloatValue";
|
|
1945
|
-
};
|
|
1946
|
-
export type IOFloatValueIoValueTypeEnum = typeof IOFloatValueIoValueTypeEnum[keyof typeof IOFloatValueIoValueTypeEnum];
|
|
1947
|
-
/**
|
|
1948
|
-
*
|
|
1949
|
-
* @export
|
|
1950
|
-
* @interface IOFloatValue2
|
|
1951
|
-
*/
|
|
1952
|
-
export interface IOFloatValue2 {
|
|
1953
|
-
/**
|
|
1954
|
-
*
|
|
1955
|
-
* @type {string}
|
|
1956
|
-
* @memberof IOFloatValue2
|
|
1957
|
-
*/
|
|
1958
|
-
'io': string;
|
|
1959
|
-
/**
|
|
1960
|
-
*
|
|
1961
|
-
* @type {IODirection}
|
|
1962
|
-
* @memberof IOFloatValue2
|
|
1963
|
-
*/
|
|
1964
|
-
'direction': IODirection;
|
|
1965
|
-
/**
|
|
1966
|
-
*
|
|
1967
|
-
* @type {number}
|
|
1968
|
-
* @memberof IOFloatValue2
|
|
1969
|
-
*/
|
|
1970
|
-
'float_value': number;
|
|
1971
|
-
/**
|
|
1972
|
-
*
|
|
1973
|
-
* @type {string}
|
|
1974
|
-
* @memberof IOFloatValue2
|
|
1975
|
-
*/
|
|
1976
|
-
'io_value_type'?: IOFloatValue2IoValueTypeEnum;
|
|
1951
|
+
'value_type'?: IOFloatValueValueTypeEnum;
|
|
1977
1952
|
}
|
|
1978
|
-
export declare const
|
|
1979
|
-
readonly
|
|
1953
|
+
export declare const IOFloatValueValueTypeEnum: {
|
|
1954
|
+
readonly Float: "float";
|
|
1980
1955
|
};
|
|
1981
|
-
export type
|
|
1956
|
+
export type IOFloatValueValueTypeEnum = typeof IOFloatValueValueTypeEnum[keyof typeof IOFloatValueValueTypeEnum];
|
|
1982
1957
|
/**
|
|
1983
1958
|
* Input/Output integer value representation.
|
|
1984
1959
|
* @export
|
|
@@ -2002,78 +1977,12 @@ export interface IOIntegerValue {
|
|
|
2002
1977
|
* @type {string}
|
|
2003
1978
|
* @memberof IOIntegerValue
|
|
2004
1979
|
*/
|
|
2005
|
-
'
|
|
2006
|
-
}
|
|
2007
|
-
export declare const IOIntegerValueIoValueTypeEnum: {
|
|
2008
|
-
readonly IoIntegerValue: "IOIntegerValue";
|
|
2009
|
-
};
|
|
2010
|
-
export type IOIntegerValueIoValueTypeEnum = typeof IOIntegerValueIoValueTypeEnum[keyof typeof IOIntegerValueIoValueTypeEnum];
|
|
2011
|
-
/**
|
|
2012
|
-
*
|
|
2013
|
-
* @export
|
|
2014
|
-
* @interface IOIntegerValue2
|
|
2015
|
-
*/
|
|
2016
|
-
export interface IOIntegerValue2 {
|
|
2017
|
-
/**
|
|
2018
|
-
*
|
|
2019
|
-
* @type {string}
|
|
2020
|
-
* @memberof IOIntegerValue2
|
|
2021
|
-
*/
|
|
2022
|
-
'io': string;
|
|
2023
|
-
/**
|
|
2024
|
-
*
|
|
2025
|
-
* @type {IODirection}
|
|
2026
|
-
* @memberof IOIntegerValue2
|
|
2027
|
-
*/
|
|
2028
|
-
'direction': IODirection;
|
|
2029
|
-
/**
|
|
2030
|
-
*
|
|
2031
|
-
* @type {string}
|
|
2032
|
-
* @memberof IOIntegerValue2
|
|
2033
|
-
*/
|
|
2034
|
-
'integer_value': string;
|
|
2035
|
-
/**
|
|
2036
|
-
*
|
|
2037
|
-
* @type {string}
|
|
2038
|
-
* @memberof IOIntegerValue2
|
|
2039
|
-
*/
|
|
2040
|
-
'io_value_type'?: IOIntegerValue2IoValueTypeEnum;
|
|
1980
|
+
'value_type'?: IOIntegerValueValueTypeEnum;
|
|
2041
1981
|
}
|
|
2042
|
-
export declare const
|
|
2043
|
-
readonly
|
|
1982
|
+
export declare const IOIntegerValueValueTypeEnum: {
|
|
1983
|
+
readonly Integer: "integer";
|
|
2044
1984
|
};
|
|
2045
|
-
export type
|
|
2046
|
-
/**
|
|
2047
|
-
* Input/Output value representation. Depending on the input/output type, only one of the value fields will be set.
|
|
2048
|
-
* @export
|
|
2049
|
-
* @interface IOValue
|
|
2050
|
-
*/
|
|
2051
|
-
export interface IOValue {
|
|
2052
|
-
/**
|
|
2053
|
-
* Unique identifier of the input/output.
|
|
2054
|
-
* @type {string}
|
|
2055
|
-
* @memberof IOValue
|
|
2056
|
-
*/
|
|
2057
|
-
'io': string;
|
|
2058
|
-
/**
|
|
2059
|
-
* Value of a digital input/output. This field is only set if the input/output is of type IO_VALUE_BOOLEAN.
|
|
2060
|
-
* @type {boolean}
|
|
2061
|
-
* @memberof IOValue
|
|
2062
|
-
*/
|
|
2063
|
-
'boolean_value'?: boolean;
|
|
2064
|
-
/**
|
|
2065
|
-
* 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.
|
|
2066
|
-
* @type {string}
|
|
2067
|
-
* @memberof IOValue
|
|
2068
|
-
*/
|
|
2069
|
-
'integer_value'?: string;
|
|
2070
|
-
/**
|
|
2071
|
-
* 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.
|
|
2072
|
-
* @type {number}
|
|
2073
|
-
* @memberof IOValue
|
|
2074
|
-
*/
|
|
2075
|
-
'float_value'?: number;
|
|
2076
|
-
}
|
|
1985
|
+
export type IOIntegerValueValueTypeEnum = typeof IOIntegerValueValueTypeEnum[keyof typeof IOIntegerValueValueTypeEnum];
|
|
2077
1986
|
/**
|
|
2078
1987
|
* Data type of the input/output.
|
|
2079
1988
|
* @export
|
|
@@ -2085,66 +1994,6 @@ export declare const IOValueType: {
|
|
|
2085
1994
|
readonly IoValueAnalogInteger: "IO_VALUE_ANALOG_INTEGER";
|
|
2086
1995
|
};
|
|
2087
1996
|
export type IOValueType = typeof IOValueType[keyof typeof IOValueType];
|
|
2088
|
-
/**
|
|
2089
|
-
*
|
|
2090
|
-
* @export
|
|
2091
|
-
* @interface IOs
|
|
2092
|
-
*/
|
|
2093
|
-
export interface IOs {
|
|
2094
|
-
/**
|
|
2095
|
-
*
|
|
2096
|
-
* @type {Array<IOsIosInner>}
|
|
2097
|
-
* @memberof IOs
|
|
2098
|
-
*/
|
|
2099
|
-
'ios': Array<IOsIosInner>;
|
|
2100
|
-
}
|
|
2101
|
-
/**
|
|
2102
|
-
*
|
|
2103
|
-
* @export
|
|
2104
|
-
* @interface IOsIosInner
|
|
2105
|
-
*/
|
|
2106
|
-
export interface IOsIosInner {
|
|
2107
|
-
/**
|
|
2108
|
-
*
|
|
2109
|
-
* @type {string}
|
|
2110
|
-
* @memberof IOsIosInner
|
|
2111
|
-
*/
|
|
2112
|
-
'io': string;
|
|
2113
|
-
/**
|
|
2114
|
-
*
|
|
2115
|
-
* @type {IODirection}
|
|
2116
|
-
* @memberof IOsIosInner
|
|
2117
|
-
*/
|
|
2118
|
-
'direction': IODirection;
|
|
2119
|
-
/**
|
|
2120
|
-
*
|
|
2121
|
-
* @type {string}
|
|
2122
|
-
* @memberof IOsIosInner
|
|
2123
|
-
*/
|
|
2124
|
-
'integer_value': string;
|
|
2125
|
-
/**
|
|
2126
|
-
*
|
|
2127
|
-
* @type {string}
|
|
2128
|
-
* @memberof IOsIosInner
|
|
2129
|
-
*/
|
|
2130
|
-
'io_value_type'?: IOsIosInnerIoValueTypeEnum;
|
|
2131
|
-
/**
|
|
2132
|
-
*
|
|
2133
|
-
* @type {boolean}
|
|
2134
|
-
* @memberof IOsIosInner
|
|
2135
|
-
*/
|
|
2136
|
-
'boolean_value': boolean;
|
|
2137
|
-
/**
|
|
2138
|
-
*
|
|
2139
|
-
* @type {number}
|
|
2140
|
-
* @memberof IOsIosInner
|
|
2141
|
-
*/
|
|
2142
|
-
'float_value': number;
|
|
2143
|
-
}
|
|
2144
|
-
export declare const IOsIosInnerIoValueTypeEnum: {
|
|
2145
|
-
readonly IoFloatValue: "IOFloatValue";
|
|
2146
|
-
};
|
|
2147
|
-
export type IOsIosInnerIoValueTypeEnum = typeof IOsIosInnerIoValueTypeEnum[keyof typeof IOsIosInnerIoValueTypeEnum];
|
|
2148
1997
|
/**
|
|
2149
1998
|
* User provided credentials for creating a secret to pull an image from a registry.
|
|
2150
1999
|
* @export
|
|
@@ -2420,18 +2269,28 @@ export interface InitializeMovementResponseInitResponse {
|
|
|
2420
2269
|
'error_message'?: string;
|
|
2421
2270
|
}
|
|
2422
2271
|
/**
|
|
2423
|
-
*
|
|
2272
|
+
* 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.
|
|
2424
2273
|
* @export
|
|
2425
2274
|
* @interface IntegerValue
|
|
2426
2275
|
*/
|
|
2427
2276
|
export interface IntegerValue {
|
|
2428
2277
|
/**
|
|
2429
|
-
*
|
|
2278
|
+
*
|
|
2430
2279
|
* @type {string}
|
|
2431
2280
|
* @memberof IntegerValue
|
|
2432
2281
|
*/
|
|
2433
2282
|
'integer_value': string;
|
|
2283
|
+
/**
|
|
2284
|
+
*
|
|
2285
|
+
* @type {string}
|
|
2286
|
+
* @memberof IntegerValue
|
|
2287
|
+
*/
|
|
2288
|
+
'value_type'?: IntegerValueValueTypeEnum;
|
|
2434
2289
|
}
|
|
2290
|
+
export declare const IntegerValueValueTypeEnum: {
|
|
2291
|
+
readonly Integer: "integer";
|
|
2292
|
+
};
|
|
2293
|
+
export type IntegerValueValueTypeEnum = typeof IntegerValueValueTypeEnum[keyof typeof IntegerValueValueTypeEnum];
|
|
2435
2294
|
/**
|
|
2436
2295
|
*
|
|
2437
2296
|
* @export
|
|
@@ -3236,7 +3095,7 @@ export interface ModelError {
|
|
|
3236
3095
|
* @type {string}
|
|
3237
3096
|
* @memberof ModelError
|
|
3238
3097
|
*/
|
|
3239
|
-
'code'
|
|
3098
|
+
'code'?: string;
|
|
3240
3099
|
/**
|
|
3241
3100
|
*
|
|
3242
3101
|
* @type {string}
|
|
@@ -3281,7 +3140,7 @@ export type MotionCommandBlending = BlendingAuto | BlendingPosition;
|
|
|
3281
3140
|
*/
|
|
3282
3141
|
export type MotionCommandPath = PathCartesianPTP | PathCircle | PathCubicSpline | PathJointPTP | PathLine;
|
|
3283
3142
|
/**
|
|
3284
|
-
* The data type describes the physically connected motion groups on a robot controller, e.g
|
|
3143
|
+
* The data type describes the physically connected motion groups on a robot controller, e.g., a robot arm.
|
|
3285
3144
|
* @export
|
|
3286
3145
|
* @interface MotionGroup
|
|
3287
3146
|
*/
|
|
@@ -3305,11 +3164,17 @@ export interface MotionGroup {
|
|
|
3305
3164
|
*/
|
|
3306
3165
|
'name_from_controller': string;
|
|
3307
3166
|
/**
|
|
3308
|
-
* The robot controller model if available. Usable for frontend 3D visualization.
|
|
3167
|
+
* The robot controller model, if available. Usable for frontend 3D visualization.
|
|
3309
3168
|
* @type {string}
|
|
3310
3169
|
* @memberof MotionGroup
|
|
3311
3170
|
*/
|
|
3312
3171
|
'model_from_controller': string;
|
|
3172
|
+
/**
|
|
3173
|
+
* 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.
|
|
3174
|
+
* @type {string}
|
|
3175
|
+
* @memberof MotionGroup
|
|
3176
|
+
*/
|
|
3177
|
+
'serial_number'?: string;
|
|
3313
3178
|
}
|
|
3314
3179
|
/**
|
|
3315
3180
|
*
|
|
@@ -3401,12 +3266,30 @@ export interface MotionGroupJoints {
|
|
|
3401
3266
|
export declare const MotionGroupModel: {
|
|
3402
3267
|
readonly Abb1200583: "ABB_120_058_3";
|
|
3403
3268
|
readonly Abb1400816: "ABB_140_081_6";
|
|
3269
|
+
readonly Abb101003715: "ABB_1010_037_15";
|
|
3270
|
+
readonly Abb11000584: "ABB_1100_058_4";
|
|
3271
|
+
readonly Abb110004754: "ABB_1100_0475_4";
|
|
3404
3272
|
readonly Abb1200077: "ABB_1200_07_7";
|
|
3405
3273
|
readonly Abb130011510: "ABB_1300_115_10";
|
|
3274
|
+
readonly Abb13000911: "ABB_1300_09_11";
|
|
3275
|
+
readonly Abb13001412: "ABB_1300_14_12";
|
|
3276
|
+
readonly Abb1300147: "ABB_1300_14_7";
|
|
3406
3277
|
readonly Abb14001445: "ABB_1400_144_5";
|
|
3407
3278
|
readonly Abb1520Id154: "ABB_1520ID_15_4";
|
|
3408
3279
|
readonly Abb1600126: "ABB_1600_12_6";
|
|
3280
|
+
readonly Abb16001210: "ABB_1600_12_10";
|
|
3281
|
+
readonly Abb16001456: "ABB_1600_145_6";
|
|
3282
|
+
readonly Abb160014510: "ABB_1600_145_10";
|
|
3409
3283
|
readonly Abb1660Id1554: "ABB_1660ID_155_4";
|
|
3284
|
+
readonly Abb260016512: "ABB_2600_165_12";
|
|
3285
|
+
readonly Abb260016520: "ABB_2600_165_20";
|
|
3286
|
+
readonly Abb260018512: "ABB_2600_185_12";
|
|
3287
|
+
readonly Abb2600Id18515: "ABB_2600ID_185_15";
|
|
3288
|
+
readonly Abb2600Id2008: "ABB_2600ID_200_8";
|
|
3289
|
+
readonly Abb460025020: "ABB_4600_250_20";
|
|
3290
|
+
readonly Abb460025540: "ABB_4600_255_40";
|
|
3291
|
+
readonly Abb460020545: "ABB_4600_205_45";
|
|
3292
|
+
readonly Abb460020560: "ABB_4600_205_60";
|
|
3410
3293
|
readonly FanucCr4iA: "FANUC_CR4iA";
|
|
3411
3294
|
readonly FanucCr7iA: "FANUC_CR7iA";
|
|
3412
3295
|
readonly FanucCr7iAl: "FANUC_CR7iAL";
|
|
@@ -3429,6 +3312,8 @@ export declare const MotionGroupModel: {
|
|
|
3429
3312
|
readonly FanucM20iD12L: "FANUC_M20iD12L";
|
|
3430
3313
|
readonly FanucM20iD25: "FANUC_M20iD25";
|
|
3431
3314
|
readonly FanucM20iD35: "FANUC_M20iD35";
|
|
3315
|
+
readonly FanucM900iB280L: "FANUC_M900iB280L";
|
|
3316
|
+
readonly FanucM900iB360E: "FANUC_M900iB360E";
|
|
3432
3317
|
readonly FanucArcMate50iD: "FANUC_ARC_Mate_50iD";
|
|
3433
3318
|
readonly FanucArcMate50iD7L: "FANUC_ARC_Mate_50iD7L";
|
|
3434
3319
|
readonly FanucArcMate100iD: "FANUC_ARC_Mate_100iD";
|
|
@@ -3439,6 +3324,8 @@ export declare const MotionGroupModel: {
|
|
|
3439
3324
|
readonly FanucLrMate200iD: "FANUC_LR_Mate_200iD";
|
|
3440
3325
|
readonly FanucLrMate200iD4S: "FANUC_LR_Mate_200iD4S";
|
|
3441
3326
|
readonly FanucLrMate200iD7L: "FANUC_LR_Mate_200iD7L";
|
|
3327
|
+
readonly FanucR2000iC125L: "FANUC_R2000iC125L";
|
|
3328
|
+
readonly FanucR2000iC210F: "FANUC_R2000iC210F";
|
|
3442
3329
|
readonly UniversalRobotsUr3: "UniversalRobots_UR3";
|
|
3443
3330
|
readonly UniversalRobotsUr5: "UniversalRobots_UR5";
|
|
3444
3331
|
readonly UniversalRobotsUr10: "UniversalRobots_UR10";
|
|
@@ -3493,6 +3380,7 @@ export declare const MotionGroupModel: {
|
|
|
3493
3380
|
readonly YaskawaTurn1: "Yaskawa_TURN1";
|
|
3494
3381
|
readonly YaskawaTurn2: "Yaskawa_TURN2";
|
|
3495
3382
|
readonly YaskawaTurn3: "Yaskawa_TURN3";
|
|
3383
|
+
readonly KukaKr1502: "KUKA_KR150_2";
|
|
3496
3384
|
readonly KukaKr4R600: "KUKA_KR4_R600";
|
|
3497
3385
|
readonly KukaKr6R700: "KUKA_KR6_R700";
|
|
3498
3386
|
readonly KukaKr6R7002: "KUKA_KR6_R700_2";
|
|
@@ -3502,6 +3390,7 @@ export declare const MotionGroupModel: {
|
|
|
3502
3390
|
readonly KukaKr10R9002: "KUKA_KR10_R900_2";
|
|
3503
3391
|
readonly KukaKr10R1100: "KUKA_KR10_R1100";
|
|
3504
3392
|
readonly KukaKr10R11002: "KUKA_KR10_R1100_2";
|
|
3393
|
+
readonly KukaKr12R18102: "KUKA_KR12_R1810_2";
|
|
3505
3394
|
readonly KukaKr16R1610: "KUKA_KR16_R1610";
|
|
3506
3395
|
readonly KukaKr16R16102: "KUKA_KR16_R1610_2";
|
|
3507
3396
|
readonly KukaKr16R2010: "KUKA_KR16_R2010";
|
|
@@ -3518,11 +3407,14 @@ export declare const MotionGroupModel: {
|
|
|
3518
3407
|
readonly KukaKr210R31002: "KUKA_KR210_R3100_2";
|
|
3519
3408
|
readonly KukaKr210R3300: "KUKA_KR210_R3300";
|
|
3520
3409
|
readonly KukaKr210R33002: "KUKA_KR210_R3300_2";
|
|
3410
|
+
readonly KukaKr240R2700: "KUKA_KR240_R2700";
|
|
3521
3411
|
readonly KukaKr250R27002: "KUKA_KR250_R2700_2";
|
|
3522
3412
|
readonly KukaKr270R2700: "KUKA_KR270_R2700";
|
|
3523
3413
|
readonly KukaKr270R3100: "KUKA_KR270_R3100";
|
|
3524
3414
|
readonly KukaKr270R31002: "KUKA_KR270_R3100_2";
|
|
3525
3415
|
readonly KukaKr360R2830: "KUKA_KR360_R2830";
|
|
3416
|
+
readonly KukaKr360L2403: "KUKA_KR360_L240_3";
|
|
3417
|
+
readonly KukaLbrIisy11R1300: "KUKA_LBR_IISY_11_R1300";
|
|
3526
3418
|
};
|
|
3527
3419
|
export type MotionGroupModel = typeof MotionGroupModel[keyof typeof MotionGroupModel];
|
|
3528
3420
|
/**
|
|
@@ -3550,11 +3442,17 @@ export interface MotionGroupPhysical {
|
|
|
3550
3442
|
*/
|
|
3551
3443
|
'active': boolean;
|
|
3552
3444
|
/**
|
|
3553
|
-
* The robot controller model if available. Usable for frontend 3D visualization.
|
|
3445
|
+
* The robot controller model, if available. Usable for frontend 3D visualization.
|
|
3554
3446
|
* @type {string}
|
|
3555
3447
|
* @memberof MotionGroupPhysical
|
|
3556
3448
|
*/
|
|
3557
3449
|
'model_from_controller'?: string;
|
|
3450
|
+
/**
|
|
3451
|
+
* 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.
|
|
3452
|
+
* @type {string}
|
|
3453
|
+
* @memberof MotionGroupPhysical
|
|
3454
|
+
*/
|
|
3455
|
+
'serial_number'?: string;
|
|
3558
3456
|
}
|
|
3559
3457
|
/**
|
|
3560
3458
|
* Holding static properties of the motion group.
|
|
@@ -3613,10 +3511,10 @@ export interface MotionGroupState {
|
|
|
3613
3511
|
'joint_torque'?: Joints;
|
|
3614
3512
|
/**
|
|
3615
3513
|
* 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.
|
|
3616
|
-
* @type {
|
|
3514
|
+
* @type {PoseInCoordinateSystem}
|
|
3617
3515
|
* @memberof MotionGroupState
|
|
3618
3516
|
*/
|
|
3619
|
-
'flange_pose'?:
|
|
3517
|
+
'flange_pose'?: PoseInCoordinateSystem;
|
|
3620
3518
|
/**
|
|
3621
3519
|
* 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.
|
|
3622
3520
|
* @type {TcpPose}
|
|
@@ -3713,10 +3611,10 @@ export interface Mounting {
|
|
|
3713
3611
|
'coordinate_system': string;
|
|
3714
3612
|
/**
|
|
3715
3613
|
* The pose offset based on world coordinate system of the mounting.
|
|
3716
|
-
* @type {
|
|
3614
|
+
* @type {PoseInCoordinateSystem}
|
|
3717
3615
|
* @memberof Mounting
|
|
3718
3616
|
*/
|
|
3719
|
-
'pose':
|
|
3617
|
+
'pose': PoseInCoordinateSystem;
|
|
3720
3618
|
}
|
|
3721
3619
|
/**
|
|
3722
3620
|
* @type MoveToTrajectoryViaJointPTPResponse
|
|
@@ -3858,6 +3756,16 @@ export interface OpcuaNodeValueTriggerConfig {
|
|
|
3858
3756
|
*/
|
|
3859
3757
|
export interface OpcuaNodeValueTriggerConfigNodeValue {
|
|
3860
3758
|
}
|
|
3759
|
+
/**
|
|
3760
|
+
* The operating state.
|
|
3761
|
+
* @export
|
|
3762
|
+
* @enum {string}
|
|
3763
|
+
*/
|
|
3764
|
+
export declare const OperatingState: {
|
|
3765
|
+
readonly Active: "ACTIVE";
|
|
3766
|
+
readonly Inactive: "INACTIVE";
|
|
3767
|
+
};
|
|
3768
|
+
export type OperatingState = typeof OperatingState[keyof typeof OperatingState];
|
|
3861
3769
|
/**
|
|
3862
3770
|
* 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.
|
|
3863
3771
|
* @export
|
|
@@ -3980,10 +3888,10 @@ export interface Path {
|
|
|
3980
3888
|
export interface PathCartesianPTP {
|
|
3981
3889
|
/**
|
|
3982
3890
|
*
|
|
3983
|
-
* @type {
|
|
3891
|
+
* @type {Pose}
|
|
3984
3892
|
* @memberof PathCartesianPTP
|
|
3985
3893
|
*/
|
|
3986
|
-
'target_pose':
|
|
3894
|
+
'target_pose': Pose;
|
|
3987
3895
|
/**
|
|
3988
3896
|
*
|
|
3989
3897
|
* @type {string}
|
|
@@ -4003,16 +3911,16 @@ export type PathCartesianPTPPathDefinitionNameEnum = typeof PathCartesianPTPPath
|
|
|
4003
3911
|
export interface PathCircle {
|
|
4004
3912
|
/**
|
|
4005
3913
|
*
|
|
4006
|
-
* @type {
|
|
3914
|
+
* @type {Pose}
|
|
4007
3915
|
* @memberof PathCircle
|
|
4008
3916
|
*/
|
|
4009
|
-
'via_pose':
|
|
3917
|
+
'via_pose': Pose;
|
|
4010
3918
|
/**
|
|
4011
3919
|
*
|
|
4012
|
-
* @type {
|
|
3920
|
+
* @type {Pose}
|
|
4013
3921
|
* @memberof PathCircle
|
|
4014
3922
|
*/
|
|
4015
|
-
'target_pose':
|
|
3923
|
+
'target_pose': Pose;
|
|
4016
3924
|
/**
|
|
4017
3925
|
*
|
|
4018
3926
|
* @type {string}
|
|
@@ -4078,10 +3986,10 @@ export type PathJointPTPPathDefinitionNameEnum = typeof PathJointPTPPathDefiniti
|
|
|
4078
3986
|
export interface PathLine {
|
|
4079
3987
|
/**
|
|
4080
3988
|
*
|
|
4081
|
-
* @type {
|
|
3989
|
+
* @type {Pose}
|
|
4082
3990
|
* @memberof PathLine
|
|
4083
3991
|
*/
|
|
4084
|
-
'target_pose':
|
|
3992
|
+
'target_pose': Pose;
|
|
4085
3993
|
/**
|
|
4086
3994
|
*
|
|
4087
3995
|
* @type {string}
|
|
@@ -4156,12 +4064,12 @@ export interface PauseMovementResponsePauseResponse {
|
|
|
4156
4064
|
export interface PauseOnIO {
|
|
4157
4065
|
/**
|
|
4158
4066
|
*
|
|
4159
|
-
* @type {
|
|
4067
|
+
* @type {SetOutputValuesRequestInner}
|
|
4160
4068
|
* @memberof PauseOnIO
|
|
4161
4069
|
*/
|
|
4162
|
-
'io':
|
|
4070
|
+
'io': SetOutputValuesRequestInner;
|
|
4163
4071
|
/**
|
|
4164
|
-
* Comparator for the comparison of two values.
|
|
4072
|
+
* 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.
|
|
4165
4073
|
* @type {Comparator}
|
|
4166
4074
|
* @memberof PauseOnIO
|
|
4167
4075
|
*/
|
|
@@ -4482,7 +4390,7 @@ export interface PointCloud {
|
|
|
4482
4390
|
'pointcloud': string;
|
|
4483
4391
|
}
|
|
4484
4392
|
/**
|
|
4485
|
-
*
|
|
4393
|
+
* Defines a pose in 3D space. A pose is a combination of a position and an orientation. The position is applied before the orientation.
|
|
4486
4394
|
* @export
|
|
4487
4395
|
* @interface Pose
|
|
4488
4396
|
*/
|
|
@@ -4492,38 +4400,38 @@ export interface Pose {
|
|
|
4492
4400
|
* @type {Array<number>}
|
|
4493
4401
|
* @memberof Pose
|
|
4494
4402
|
*/
|
|
4495
|
-
'position'
|
|
4403
|
+
'position'?: Array<number>;
|
|
4496
4404
|
/**
|
|
4497
|
-
* A three-dimensional
|
|
4405
|
+
* 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.
|
|
4498
4406
|
* @type {Array<number>}
|
|
4499
4407
|
* @memberof Pose
|
|
4500
4408
|
*/
|
|
4501
4409
|
'orientation'?: Array<number>;
|
|
4502
|
-
/**
|
|
4503
|
-
* Unique identifier addressing the reference coordinate system of the pose. Default is the world coordinate system.
|
|
4504
|
-
* @type {string}
|
|
4505
|
-
* @memberof Pose
|
|
4506
|
-
*/
|
|
4507
|
-
'coordinate_system'?: string;
|
|
4508
4410
|
}
|
|
4509
4411
|
/**
|
|
4510
|
-
*
|
|
4412
|
+
* 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).
|
|
4511
4413
|
* @export
|
|
4512
|
-
* @interface
|
|
4414
|
+
* @interface PoseInCoordinateSystem
|
|
4513
4415
|
*/
|
|
4514
|
-
export interface
|
|
4416
|
+
export interface PoseInCoordinateSystem {
|
|
4515
4417
|
/**
|
|
4516
4418
|
* A three-dimensional vector [x, y, z] with double precision.
|
|
4517
4419
|
* @type {Array<number>}
|
|
4518
|
-
* @memberof
|
|
4420
|
+
* @memberof PoseInCoordinateSystem
|
|
4519
4421
|
*/
|
|
4520
|
-
'position'
|
|
4422
|
+
'position': Array<number>;
|
|
4521
4423
|
/**
|
|
4522
4424
|
* 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.
|
|
4523
4425
|
* @type {Array<number>}
|
|
4524
|
-
* @memberof
|
|
4426
|
+
* @memberof PoseInCoordinateSystem
|
|
4525
4427
|
*/
|
|
4526
4428
|
'orientation'?: Array<number>;
|
|
4429
|
+
/**
|
|
4430
|
+
* Unique identifier addressing the reference coordinate system of the pose. Default is the world coordinate system.
|
|
4431
|
+
* @type {string}
|
|
4432
|
+
* @memberof PoseInCoordinateSystem
|
|
4433
|
+
*/
|
|
4434
|
+
'coordinate_system'?: string;
|
|
4527
4435
|
}
|
|
4528
4436
|
/**
|
|
4529
4437
|
* The metadata of a program.
|
|
@@ -5336,6 +5244,25 @@ export declare const ServiceStatusPhase: {
|
|
|
5336
5244
|
readonly Evicted: "Evicted";
|
|
5337
5245
|
};
|
|
5338
5246
|
export type ServiceStatusPhase = typeof ServiceStatusPhase[keyof typeof ServiceStatusPhase];
|
|
5247
|
+
/**
|
|
5248
|
+
* 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.
|
|
5249
|
+
* @export
|
|
5250
|
+
* @interface ServiceStatusResponse
|
|
5251
|
+
*/
|
|
5252
|
+
export interface ServiceStatusResponse {
|
|
5253
|
+
/**
|
|
5254
|
+
*
|
|
5255
|
+
* @type {OperatingState}
|
|
5256
|
+
* @memberof ServiceStatusResponse
|
|
5257
|
+
*/
|
|
5258
|
+
'operating_state': OperatingState;
|
|
5259
|
+
/**
|
|
5260
|
+
*
|
|
5261
|
+
* @type {Array<ServiceStatus>}
|
|
5262
|
+
* @memberof ServiceStatusResponse
|
|
5263
|
+
*/
|
|
5264
|
+
'service_status': Array<ServiceStatus>;
|
|
5265
|
+
}
|
|
5339
5266
|
/**
|
|
5340
5267
|
*
|
|
5341
5268
|
* @export
|
|
@@ -5372,35 +5299,22 @@ export interface ServiceStatusStatus {
|
|
|
5372
5299
|
*/
|
|
5373
5300
|
'reason'?: string;
|
|
5374
5301
|
}
|
|
5375
|
-
/**
|
|
5376
|
-
* Defines an input/output that should be set upon reaching a certain location on the trajectory.
|
|
5377
|
-
* @export
|
|
5378
|
-
* @interface SetIO
|
|
5379
|
-
*/
|
|
5380
|
-
export interface SetIO {
|
|
5381
|
-
/**
|
|
5382
|
-
*
|
|
5383
|
-
* @type {IOValue}
|
|
5384
|
-
* @memberof SetIO
|
|
5385
|
-
*/
|
|
5386
|
-
'io': IOValue;
|
|
5387
|
-
/**
|
|
5388
|
-
* The location on the trajectory where the input/output should be set.
|
|
5389
|
-
* @type {number}
|
|
5390
|
-
* @memberof SetIO
|
|
5391
|
-
*/
|
|
5392
|
-
'location': number;
|
|
5393
|
-
}
|
|
5394
5302
|
/**
|
|
5395
5303
|
* @type SetIOValuesRequestInner
|
|
5396
5304
|
* @export
|
|
5397
5305
|
*/
|
|
5398
|
-
export type SetIOValuesRequestInner =
|
|
5306
|
+
export type SetIOValuesRequestInner = IOBooleanValue | IOFloatValue | IOIntegerValue;
|
|
5399
5307
|
/**
|
|
5400
5308
|
* @type SetOutputValuesRequestInner
|
|
5401
5309
|
* @export
|
|
5402
5310
|
*/
|
|
5403
|
-
export type SetOutputValuesRequestInner =
|
|
5311
|
+
export type SetOutputValuesRequestInner = {
|
|
5312
|
+
value_type: 'boolean';
|
|
5313
|
+
} & IOBooleanValue | {
|
|
5314
|
+
value_type: 'float';
|
|
5315
|
+
} & IOFloatValue | {
|
|
5316
|
+
value_type: 'integer';
|
|
5317
|
+
} & IOIntegerValue;
|
|
5404
5318
|
/**
|
|
5405
5319
|
*
|
|
5406
5320
|
* @export
|
|
@@ -5547,10 +5461,10 @@ export interface StartMovementRequest {
|
|
|
5547
5461
|
'direction': Direction;
|
|
5548
5462
|
/**
|
|
5549
5463
|
* 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.
|
|
5550
|
-
* @type {Array<
|
|
5464
|
+
* @type {Array<SetOutputValuesRequestInner>}
|
|
5551
5465
|
* @memberof StartMovementRequest
|
|
5552
5466
|
*/
|
|
5553
|
-
'set_ios'?: Array<
|
|
5467
|
+
'set_ios'?: Array<SetOutputValuesRequestInner>;
|
|
5554
5468
|
/**
|
|
5555
5469
|
* Defines an input/output that is listened to before the movement. Execution starts if the defined comparator evaluates to `true`.
|
|
5556
5470
|
* @type {StartOnIO}
|
|
@@ -5576,12 +5490,12 @@ export type StartMovementRequestMessageTypeEnum = typeof StartMovementRequestMes
|
|
|
5576
5490
|
export interface StartOnIO {
|
|
5577
5491
|
/**
|
|
5578
5492
|
*
|
|
5579
|
-
* @type {
|
|
5493
|
+
* @type {SetOutputValuesRequestInner}
|
|
5580
5494
|
* @memberof StartOnIO
|
|
5581
5495
|
*/
|
|
5582
|
-
'io':
|
|
5496
|
+
'io': SetOutputValuesRequestInner;
|
|
5583
5497
|
/**
|
|
5584
|
-
* Comparator for the comparison of two values.
|
|
5498
|
+
* 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.
|
|
5585
5499
|
* @type {Comparator}
|
|
5586
5500
|
* @memberof StartOnIO
|
|
5587
5501
|
*/
|
|
@@ -6162,9 +6076,26 @@ export declare const VirtualControllerTypes: {
|
|
|
6162
6076
|
readonly AbbIrb110004754: "abb-irb1100_0475_4";
|
|
6163
6077
|
readonly AbbIrb11000584: "abb-irb1100_058_4";
|
|
6164
6078
|
readonly AbbIrb12007: "abb-irb1200_7";
|
|
6079
|
+
readonly AbbIrb13000911: "abb-irb1300_09_11";
|
|
6165
6080
|
readonly AbbIrb130011510: "abb-irb1300_115_10";
|
|
6081
|
+
readonly AbbIrb13001412: "abb-irb1300_14_12";
|
|
6082
|
+
readonly AbbIrb1300147: "abb-irb1300_14_7";
|
|
6083
|
+
readonly AbbIrb16001210: "abb-irb1600_12_10";
|
|
6084
|
+
readonly AbbIrb1600126: "abb-irb1600_12_6";
|
|
6085
|
+
readonly AbbIrb160014510: "abb-irb1600_145_10";
|
|
6086
|
+
readonly AbbIrb16001456: "abb-irb1600_145_6";
|
|
6087
|
+
readonly AbbIrb2600Id18515: "abb-irb2600ID_185_15";
|
|
6088
|
+
readonly AbbIrb2600Id2008: "abb-irb2600ID_200_8";
|
|
6089
|
+
readonly AbbIrb260016512: "abb-irb2600_165_12";
|
|
6090
|
+
readonly AbbIrb260016520: "abb-irb2600_165_20";
|
|
6091
|
+
readonly AbbIrb260018512: "abb-irb2600_185_12";
|
|
6092
|
+
readonly AbbIrb460020545: "abb-irb4600_205_45";
|
|
6093
|
+
readonly AbbIrb460020560: "abb-irb4600_205_60";
|
|
6094
|
+
readonly AbbIrb460025020: "abb-irb4600_250_20";
|
|
6095
|
+
readonly AbbIrb460025540: "abb-irb4600_255_40";
|
|
6166
6096
|
readonly FanucArcMate100iD: "fanuc-arc_mate_100iD";
|
|
6167
6097
|
readonly FanucArcMate120iD: "fanuc-arc_mate_120iD";
|
|
6098
|
+
readonly FanucArcMate120iD12L: "fanuc-arc_mate_120iD12L";
|
|
6168
6099
|
readonly FanucArcMate120iD35: "fanuc-arc_mate_120iD35";
|
|
6169
6100
|
readonly FanucCr35ib: "fanuc-cr35ib";
|
|
6170
6101
|
readonly FanucCr7ia: "fanuc-cr7ia";
|
|
@@ -6182,13 +6113,14 @@ export declare const VirtualControllerTypes: {
|
|
|
6182
6113
|
readonly FanucM20iD35: "fanuc-m20iD35";
|
|
6183
6114
|
readonly FanucM900iB280L: "fanuc-m900iB280L";
|
|
6184
6115
|
readonly FanucM900iB360E: "fanuc-m900iB360E";
|
|
6185
|
-
readonly FanucR2000ic210f: "fanuc-r2000ic210f";
|
|
6186
6116
|
readonly FanucR2000ic125l: "fanuc-r2000ic125l";
|
|
6117
|
+
readonly FanucR2000ic210f: "fanuc-r2000ic210f";
|
|
6187
6118
|
readonly KukaKr10R1100: "kuka-kr10_r1100";
|
|
6188
6119
|
readonly KukaKr10R11002: "kuka-kr10_r1100_2";
|
|
6189
6120
|
readonly KukaKr10R900: "kuka-kr10_r900";
|
|
6190
6121
|
readonly KukaKr10R9002: "kuka-kr10_r900_2";
|
|
6191
6122
|
readonly KukaKr120R27002: "kuka-kr120_r2700_2";
|
|
6123
|
+
readonly KukaKr12R18102: "kuka-kr12_r1810_2";
|
|
6192
6124
|
readonly KukaKr1502: "kuka-kr150_2";
|
|
6193
6125
|
readonly KukaKr16R16102: "kuka-kr16_r1610_2";
|
|
6194
6126
|
readonly KukaKr16R20102: "kuka-kr16_r2010_2";
|
|
@@ -6252,6 +6184,25 @@ export interface VirtualRobotConfiguration {
|
|
|
6252
6184
|
*/
|
|
6253
6185
|
'content': string;
|
|
6254
6186
|
}
|
|
6187
|
+
/**
|
|
6188
|
+
* The value to compare with the current value of the input/output.
|
|
6189
|
+
* @export
|
|
6190
|
+
* @interface WaitForIOEventRequest
|
|
6191
|
+
*/
|
|
6192
|
+
export interface WaitForIOEventRequest {
|
|
6193
|
+
/**
|
|
6194
|
+
*
|
|
6195
|
+
* @type {SetOutputValuesRequestInner}
|
|
6196
|
+
* @memberof WaitForIOEventRequest
|
|
6197
|
+
*/
|
|
6198
|
+
'io': SetOutputValuesRequestInner;
|
|
6199
|
+
/**
|
|
6200
|
+
* 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.
|
|
6201
|
+
* @type {Comparator}
|
|
6202
|
+
* @memberof WaitForIOEventRequest
|
|
6203
|
+
*/
|
|
6204
|
+
'comparator': Comparator;
|
|
6205
|
+
}
|
|
6255
6206
|
/**
|
|
6256
6207
|
* The configuration of a physical Yaskawa robot controller has to contain IP address of the controller.
|
|
6257
6208
|
* @export
|
|
@@ -6582,7 +6533,16 @@ export declare const CellApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
6582
6533
|
*/
|
|
6583
6534
|
listCells: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6584
6535
|
/**
|
|
6585
|
-
*
|
|
6536
|
+
* Deactivate or activate the services of a cell.
|
|
6537
|
+
* @summary Operating State
|
|
6538
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6539
|
+
* @param {OperatingState} operatingState Set state of the cell. Active or inactive.
|
|
6540
|
+
* @param {*} [options] Override http request option.
|
|
6541
|
+
* @throws {RequiredError}
|
|
6542
|
+
*/
|
|
6543
|
+
setCellStatus: (cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6544
|
+
/**
|
|
6545
|
+
* Update the definition of the entire Cell.
|
|
6586
6546
|
* @summary Update Configuration
|
|
6587
6547
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6588
6548
|
* @param {Cell} cell2
|
|
@@ -6630,7 +6590,7 @@ export declare const CellApiFp: (configuration?: Configuration) => {
|
|
|
6630
6590
|
* @param {*} [options] Override http request option.
|
|
6631
6591
|
* @throws {RequiredError}
|
|
6632
6592
|
*/
|
|
6633
|
-
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
6593
|
+
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceStatusResponse>>;
|
|
6634
6594
|
/**
|
|
6635
6595
|
* List all deployed cell names. If no cells are deployed, an empty list is returned.
|
|
6636
6596
|
* @summary List Cells
|
|
@@ -6638,6 +6598,15 @@ export declare const CellApiFp: (configuration?: Configuration) => {
|
|
|
6638
6598
|
* @throws {RequiredError}
|
|
6639
6599
|
*/
|
|
6640
6600
|
listCells(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<string>>>;
|
|
6601
|
+
/**
|
|
6602
|
+
* Deactivate or activate the services of a cell.
|
|
6603
|
+
* @summary Operating State
|
|
6604
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6605
|
+
* @param {OperatingState} operatingState Set state of the cell. Active or inactive.
|
|
6606
|
+
* @param {*} [options] Override http request option.
|
|
6607
|
+
* @throws {RequiredError}
|
|
6608
|
+
*/
|
|
6609
|
+
setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6641
6610
|
/**
|
|
6642
6611
|
* Update the definition of the entire Cell.
|
|
6643
6612
|
* @summary Update Configuration
|
|
@@ -6687,7 +6656,7 @@ export declare const CellApiFactory: (configuration?: Configuration, basePath?:
|
|
|
6687
6656
|
* @param {*} [options] Override http request option.
|
|
6688
6657
|
* @throws {RequiredError}
|
|
6689
6658
|
*/
|
|
6690
|
-
getCellStatus(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
6659
|
+
getCellStatus(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<ServiceStatusResponse>;
|
|
6691
6660
|
/**
|
|
6692
6661
|
* List all deployed cell names. If no cells are deployed, an empty list is returned.
|
|
6693
6662
|
* @summary List Cells
|
|
@@ -6695,6 +6664,15 @@ export declare const CellApiFactory: (configuration?: Configuration, basePath?:
|
|
|
6695
6664
|
* @throws {RequiredError}
|
|
6696
6665
|
*/
|
|
6697
6666
|
listCells(options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
6667
|
+
/**
|
|
6668
|
+
* Deactivate or activate the services of a cell.
|
|
6669
|
+
* @summary Operating State
|
|
6670
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6671
|
+
* @param {OperatingState} operatingState Set state of the cell. Active or inactive.
|
|
6672
|
+
* @param {*} [options] Override http request option.
|
|
6673
|
+
* @throws {RequiredError}
|
|
6674
|
+
*/
|
|
6675
|
+
setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6698
6676
|
/**
|
|
6699
6677
|
* Update the definition of the entire Cell.
|
|
6700
6678
|
* @summary Update Configuration
|
|
@@ -6750,7 +6728,7 @@ export declare class CellApi extends BaseAPI {
|
|
|
6750
6728
|
* @throws {RequiredError}
|
|
6751
6729
|
* @memberof CellApi
|
|
6752
6730
|
*/
|
|
6753
|
-
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
6731
|
+
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceStatusResponse, any>>;
|
|
6754
6732
|
/**
|
|
6755
6733
|
* List all deployed cell names. If no cells are deployed, an empty list is returned.
|
|
6756
6734
|
* @summary List Cells
|
|
@@ -6759,6 +6737,16 @@ export declare class CellApi extends BaseAPI {
|
|
|
6759
6737
|
* @memberof CellApi
|
|
6760
6738
|
*/
|
|
6761
6739
|
listCells(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any>>;
|
|
6740
|
+
/**
|
|
6741
|
+
* Deactivate or activate the services of a cell.
|
|
6742
|
+
* @summary Operating State
|
|
6743
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6744
|
+
* @param {OperatingState} operatingState Set state of the cell. Active or inactive.
|
|
6745
|
+
* @param {*} [options] Override http request option.
|
|
6746
|
+
* @throws {RequiredError}
|
|
6747
|
+
* @memberof CellApi
|
|
6748
|
+
*/
|
|
6749
|
+
setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
6762
6750
|
/**
|
|
6763
6751
|
* Update the definition of the entire Cell.
|
|
6764
6752
|
* @summary Update Configuration
|
|
@@ -6771,143 +6759,6 @@ export declare class CellApi extends BaseAPI {
|
|
|
6771
6759
|
*/
|
|
6772
6760
|
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
6773
6761
|
}
|
|
6774
|
-
/**
|
|
6775
|
-
* ConfigurationApi - axios parameter creator
|
|
6776
|
-
* @export
|
|
6777
|
-
*/
|
|
6778
|
-
export declare const ConfigurationApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
6779
|
-
/**
|
|
6780
|
-
* Retrieves a configuration backup based on provided resource identifiers.
|
|
6781
|
-
* @summary Retrieve Configuration Backup
|
|
6782
|
-
* @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
|
|
6783
|
-
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
6784
|
-
* @param {*} [options] Override http request option.
|
|
6785
|
-
* @throws {RequiredError}
|
|
6786
|
-
*/
|
|
6787
|
-
backupConfiguration: (resources: Array<string>, metadata?: {
|
|
6788
|
-
[key: string]: string;
|
|
6789
|
-
}, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6790
|
-
/**
|
|
6791
|
-
* Retrieves a list of all available configuration resources for backup purposes.
|
|
6792
|
-
* @summary List Configuration Resources
|
|
6793
|
-
* @param {*} [options] Override http request option.
|
|
6794
|
-
* @throws {RequiredError}
|
|
6795
|
-
*/
|
|
6796
|
-
listConfigurationResources: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6797
|
-
/**
|
|
6798
|
-
* Restores a previously backed up configuration.
|
|
6799
|
-
* @summary Restore Configuration Backup
|
|
6800
|
-
* @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
|
|
6801
|
-
* @param {File} body Backup file stream containing the configuration to restore.
|
|
6802
|
-
* @param {*} [options] Override http request option.
|
|
6803
|
-
* @throws {RequiredError}
|
|
6804
|
-
*/
|
|
6805
|
-
restoreConfiguration: (resources: Array<string>, body: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6806
|
-
};
|
|
6807
|
-
/**
|
|
6808
|
-
* ConfigurationApi - functional programming interface
|
|
6809
|
-
* @export
|
|
6810
|
-
*/
|
|
6811
|
-
export declare const ConfigurationApiFp: (configuration?: Configuration) => {
|
|
6812
|
-
/**
|
|
6813
|
-
* Retrieves a configuration backup based on provided resource identifiers.
|
|
6814
|
-
* @summary Retrieve Configuration Backup
|
|
6815
|
-
* @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
|
|
6816
|
-
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
6817
|
-
* @param {*} [options] Override http request option.
|
|
6818
|
-
* @throws {RequiredError}
|
|
6819
|
-
*/
|
|
6820
|
-
backupConfiguration(resources: Array<string>, metadata?: {
|
|
6821
|
-
[key: string]: string;
|
|
6822
|
-
}, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
6823
|
-
/**
|
|
6824
|
-
* Retrieves a list of all available configuration resources for backup purposes.
|
|
6825
|
-
* @summary List Configuration Resources
|
|
6826
|
-
* @param {*} [options] Override http request option.
|
|
6827
|
-
* @throws {RequiredError}
|
|
6828
|
-
*/
|
|
6829
|
-
listConfigurationResources(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ConfigurationResource>>>;
|
|
6830
|
-
/**
|
|
6831
|
-
* Restores a previously backed up configuration.
|
|
6832
|
-
* @summary Restore Configuration Backup
|
|
6833
|
-
* @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
|
|
6834
|
-
* @param {File} body Backup file stream containing the configuration to restore.
|
|
6835
|
-
* @param {*} [options] Override http request option.
|
|
6836
|
-
* @throws {RequiredError}
|
|
6837
|
-
*/
|
|
6838
|
-
restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
6839
|
-
};
|
|
6840
|
-
/**
|
|
6841
|
-
* ConfigurationApi - factory interface
|
|
6842
|
-
* @export
|
|
6843
|
-
*/
|
|
6844
|
-
export declare const ConfigurationApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
6845
|
-
/**
|
|
6846
|
-
* Retrieves a configuration backup based on provided resource identifiers.
|
|
6847
|
-
* @summary Retrieve Configuration Backup
|
|
6848
|
-
* @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
|
|
6849
|
-
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
6850
|
-
* @param {*} [options] Override http request option.
|
|
6851
|
-
* @throws {RequiredError}
|
|
6852
|
-
*/
|
|
6853
|
-
backupConfiguration(resources: Array<string>, metadata?: {
|
|
6854
|
-
[key: string]: string;
|
|
6855
|
-
}, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
6856
|
-
/**
|
|
6857
|
-
* Retrieves a list of all available configuration resources for backup purposes.
|
|
6858
|
-
* @summary List Configuration Resources
|
|
6859
|
-
* @param {*} [options] Override http request option.
|
|
6860
|
-
* @throws {RequiredError}
|
|
6861
|
-
*/
|
|
6862
|
-
listConfigurationResources(options?: RawAxiosRequestConfig): AxiosPromise<Array<ConfigurationResource>>;
|
|
6863
|
-
/**
|
|
6864
|
-
* Restores a previously backed up configuration.
|
|
6865
|
-
* @summary Restore Configuration Backup
|
|
6866
|
-
* @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
|
|
6867
|
-
* @param {File} body Backup file stream containing the configuration to restore.
|
|
6868
|
-
* @param {*} [options] Override http request option.
|
|
6869
|
-
* @throws {RequiredError}
|
|
6870
|
-
*/
|
|
6871
|
-
restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
6872
|
-
};
|
|
6873
|
-
/**
|
|
6874
|
-
* ConfigurationApi - object-oriented interface
|
|
6875
|
-
* @export
|
|
6876
|
-
* @class ConfigurationApi
|
|
6877
|
-
* @extends {BaseAPI}
|
|
6878
|
-
*/
|
|
6879
|
-
export declare class ConfigurationApi extends BaseAPI {
|
|
6880
|
-
/**
|
|
6881
|
-
* Retrieves a configuration backup based on provided resource identifiers.
|
|
6882
|
-
* @summary Retrieve Configuration Backup
|
|
6883
|
-
* @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
|
|
6884
|
-
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
6885
|
-
* @param {*} [options] Override http request option.
|
|
6886
|
-
* @throws {RequiredError}
|
|
6887
|
-
* @memberof ConfigurationApi
|
|
6888
|
-
*/
|
|
6889
|
-
backupConfiguration(resources: Array<string>, metadata?: {
|
|
6890
|
-
[key: string]: string;
|
|
6891
|
-
}, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
6892
|
-
/**
|
|
6893
|
-
* Retrieves a list of all available configuration resources for backup purposes.
|
|
6894
|
-
* @summary List Configuration Resources
|
|
6895
|
-
* @param {*} [options] Override http request option.
|
|
6896
|
-
* @throws {RequiredError}
|
|
6897
|
-
* @memberof ConfigurationApi
|
|
6898
|
-
*/
|
|
6899
|
-
listConfigurationResources(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConfigurationResource[], any>>;
|
|
6900
|
-
/**
|
|
6901
|
-
* Restores a previously backed up configuration.
|
|
6902
|
-
* @summary Restore Configuration Backup
|
|
6903
|
-
* @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
|
|
6904
|
-
* @param {File} body Backup file stream containing the configuration to restore.
|
|
6905
|
-
* @param {*} [options] Override http request option.
|
|
6906
|
-
* @throws {RequiredError}
|
|
6907
|
-
* @memberof ConfigurationApi
|
|
6908
|
-
*/
|
|
6909
|
-
restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
6910
|
-
}
|
|
6911
6762
|
/**
|
|
6912
6763
|
* ControllerApi - axios parameter creator
|
|
6913
6764
|
* @export
|
|
@@ -7529,15 +7380,11 @@ export declare const ControllerInputsOutputsApiAxiosParamCreator: (configuration
|
|
|
7529
7380
|
* @summary Wait For
|
|
7530
7381
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7531
7382
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7532
|
-
* @param {
|
|
7533
|
-
* @param {Comparator} comparisonType
|
|
7534
|
-
* @param {boolean} [booleanValue]
|
|
7535
|
-
* @param {string} [integerValue]
|
|
7536
|
-
* @param {number} [floatValue]
|
|
7383
|
+
* @param {WaitForIOEventRequest} waitForIOEventRequest
|
|
7537
7384
|
* @param {*} [options] Override http request option.
|
|
7538
7385
|
* @throws {RequiredError}
|
|
7539
7386
|
*/
|
|
7540
|
-
waitForIOEvent: (cell: string, controller: string,
|
|
7387
|
+
waitForIOEvent: (cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7541
7388
|
};
|
|
7542
7389
|
/**
|
|
7543
7390
|
* ControllerInputsOutputsApi - functional programming interface
|
|
@@ -7592,15 +7439,11 @@ export declare const ControllerInputsOutputsApiFp: (configuration?: Configuratio
|
|
|
7592
7439
|
* @summary Wait For
|
|
7593
7440
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7594
7441
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7595
|
-
* @param {
|
|
7596
|
-
* @param {Comparator} comparisonType
|
|
7597
|
-
* @param {boolean} [booleanValue]
|
|
7598
|
-
* @param {string} [integerValue]
|
|
7599
|
-
* @param {number} [floatValue]
|
|
7442
|
+
* @param {WaitForIOEventRequest} waitForIOEventRequest
|
|
7600
7443
|
* @param {*} [options] Override http request option.
|
|
7601
7444
|
* @throws {RequiredError}
|
|
7602
7445
|
*/
|
|
7603
|
-
waitForIOEvent(cell: string, controller: string,
|
|
7446
|
+
waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
7604
7447
|
};
|
|
7605
7448
|
/**
|
|
7606
7449
|
* ControllerInputsOutputsApi - factory interface
|
|
@@ -7655,15 +7498,11 @@ export declare const ControllerInputsOutputsApiFactory: (configuration?: Configu
|
|
|
7655
7498
|
* @summary Wait For
|
|
7656
7499
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7657
7500
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7658
|
-
* @param {
|
|
7659
|
-
* @param {Comparator} comparisonType
|
|
7660
|
-
* @param {boolean} [booleanValue]
|
|
7661
|
-
* @param {string} [integerValue]
|
|
7662
|
-
* @param {number} [floatValue]
|
|
7501
|
+
* @param {WaitForIOEventRequest} waitForIOEventRequest
|
|
7663
7502
|
* @param {*} [options] Override http request option.
|
|
7664
7503
|
* @throws {RequiredError}
|
|
7665
7504
|
*/
|
|
7666
|
-
waitForIOEvent(cell: string, controller: string,
|
|
7505
|
+
waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): AxiosPromise<boolean>;
|
|
7667
7506
|
};
|
|
7668
7507
|
/**
|
|
7669
7508
|
* ControllerInputsOutputsApi - object-oriented interface
|
|
@@ -7724,16 +7563,12 @@ export declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
7724
7563
|
* @summary Wait For
|
|
7725
7564
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7726
7565
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
7727
|
-
* @param {
|
|
7728
|
-
* @param {Comparator} comparisonType
|
|
7729
|
-
* @param {boolean} [booleanValue]
|
|
7730
|
-
* @param {string} [integerValue]
|
|
7731
|
-
* @param {number} [floatValue]
|
|
7566
|
+
* @param {WaitForIOEventRequest} waitForIOEventRequest
|
|
7732
7567
|
* @param {*} [options] Override http request option.
|
|
7733
7568
|
* @throws {RequiredError}
|
|
7734
7569
|
* @memberof ControllerInputsOutputsApi
|
|
7735
7570
|
*/
|
|
7736
|
-
waitForIOEvent(cell: string, controller: string,
|
|
7571
|
+
waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
7737
7572
|
}
|
|
7738
7573
|
/**
|
|
7739
7574
|
* CoordinateSystemsApi - axios parameter creator
|
|
@@ -7764,11 +7599,11 @@ export declare const CoordinateSystemsApiAxiosParamCreator: (configuration?: Con
|
|
|
7764
7599
|
* @summary Transform
|
|
7765
7600
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7766
7601
|
* @param {string} coordinateSystem Unique identifier addressing a coordinate system.
|
|
7767
|
-
* @param {
|
|
7602
|
+
* @param {PoseInCoordinateSystem} poseInCoordinateSystem
|
|
7768
7603
|
* @param {*} [options] Override http request option.
|
|
7769
7604
|
* @throws {RequiredError}
|
|
7770
7605
|
*/
|
|
7771
|
-
transformInCoordinateSystem: (cell: string, coordinateSystem: string,
|
|
7606
|
+
transformInCoordinateSystem: (cell: string, coordinateSystem: string, poseInCoordinateSystem: PoseInCoordinateSystem, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7772
7607
|
};
|
|
7773
7608
|
/**
|
|
7774
7609
|
* CoordinateSystemsApi - functional programming interface
|
|
@@ -7799,11 +7634,11 @@ export declare const CoordinateSystemsApiFp: (configuration?: Configuration) =>
|
|
|
7799
7634
|
* @summary Transform
|
|
7800
7635
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7801
7636
|
* @param {string} coordinateSystem Unique identifier addressing a coordinate system.
|
|
7802
|
-
* @param {
|
|
7637
|
+
* @param {PoseInCoordinateSystem} poseInCoordinateSystem
|
|
7803
7638
|
* @param {*} [options] Override http request option.
|
|
7804
7639
|
* @throws {RequiredError}
|
|
7805
7640
|
*/
|
|
7806
|
-
transformInCoordinateSystem(cell: string, coordinateSystem: string,
|
|
7641
|
+
transformInCoordinateSystem(cell: string, coordinateSystem: string, poseInCoordinateSystem: PoseInCoordinateSystem, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoseInCoordinateSystem>>;
|
|
7807
7642
|
};
|
|
7808
7643
|
/**
|
|
7809
7644
|
* CoordinateSystemsApi - factory interface
|
|
@@ -7834,11 +7669,11 @@ export declare const CoordinateSystemsApiFactory: (configuration?: Configuration
|
|
|
7834
7669
|
* @summary Transform
|
|
7835
7670
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7836
7671
|
* @param {string} coordinateSystem Unique identifier addressing a coordinate system.
|
|
7837
|
-
* @param {
|
|
7672
|
+
* @param {PoseInCoordinateSystem} poseInCoordinateSystem
|
|
7838
7673
|
* @param {*} [options] Override http request option.
|
|
7839
7674
|
* @throws {RequiredError}
|
|
7840
7675
|
*/
|
|
7841
|
-
transformInCoordinateSystem(cell: string, coordinateSystem: string,
|
|
7676
|
+
transformInCoordinateSystem(cell: string, coordinateSystem: string, poseInCoordinateSystem: PoseInCoordinateSystem, options?: RawAxiosRequestConfig): AxiosPromise<PoseInCoordinateSystem>;
|
|
7842
7677
|
};
|
|
7843
7678
|
/**
|
|
7844
7679
|
* CoordinateSystemsApi - object-oriented interface
|
|
@@ -7873,12 +7708,12 @@ export declare class CoordinateSystemsApi extends BaseAPI {
|
|
|
7873
7708
|
* @summary Transform
|
|
7874
7709
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7875
7710
|
* @param {string} coordinateSystem Unique identifier addressing a coordinate system.
|
|
7876
|
-
* @param {
|
|
7711
|
+
* @param {PoseInCoordinateSystem} poseInCoordinateSystem
|
|
7877
7712
|
* @param {*} [options] Override http request option.
|
|
7878
7713
|
* @throws {RequiredError}
|
|
7879
7714
|
* @memberof CoordinateSystemsApi
|
|
7880
7715
|
*/
|
|
7881
|
-
transformInCoordinateSystem(cell: string, coordinateSystem: string,
|
|
7716
|
+
transformInCoordinateSystem(cell: string, coordinateSystem: string, poseInCoordinateSystem: PoseInCoordinateSystem, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PoseInCoordinateSystem, any>>;
|
|
7882
7717
|
}
|
|
7883
7718
|
/**
|
|
7884
7719
|
* JoggingApi - axios parameter creator
|
|
@@ -8830,7 +8665,7 @@ export declare const MotionGroupKinematicsApiFp: (configuration?: Configuration)
|
|
|
8830
8665
|
* @param {*} [options] Override http request option.
|
|
8831
8666
|
* @throws {RequiredError}
|
|
8832
8667
|
*/
|
|
8833
|
-
calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
8668
|
+
calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoseInCoordinateSystem>>;
|
|
8834
8669
|
/**
|
|
8835
8670
|
* Calculate the joint positions the motion-group needs to apply for its TCP to be in a specified pose (Inverse Kinematic Solution). If multiple solutions are found, the one nearest to the given specified joint position is picked. * For all supported robot models, except the Fanuc CRX line, the returned joint position is guaranteed to have the same configuration (often referred to as ELBOW_UP, WRIST_DOWN, SHOULDER_RIGHT, f.e.) as the specified reference joint position. If the position limit of any single joint allows it to be in a range larger than 2 PI, the respective joint value in the result will be as close as possible to its reference value. * For the Fanuc CRX line the solution is selected to have the smallest distance measured by the norm of its difference to the reference joint position. The returned joint position is guaranteed to be within the joint limits and not in a singular position of the robot.
|
|
8836
8671
|
* @summary Nearest Joint Position from TCP Pose
|
|
@@ -8875,7 +8710,7 @@ export declare const MotionGroupKinematicsApiFactory: (configuration?: Configura
|
|
|
8875
8710
|
* @param {*} [options] Override http request option.
|
|
8876
8711
|
* @throws {RequiredError}
|
|
8877
8712
|
*/
|
|
8878
|
-
calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
8713
|
+
calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): AxiosPromise<PoseInCoordinateSystem>;
|
|
8879
8714
|
/**
|
|
8880
8715
|
* Calculate the joint positions the motion-group needs to apply for its TCP to be in a specified pose (Inverse Kinematic Solution). If multiple solutions are found, the one nearest to the given specified joint position is picked. * For all supported robot models, except the Fanuc CRX line, the returned joint position is guaranteed to have the same configuration (often referred to as ELBOW_UP, WRIST_DOWN, SHOULDER_RIGHT, f.e.) as the specified reference joint position. If the position limit of any single joint allows it to be in a range larger than 2 PI, the respective joint value in the result will be as close as possible to its reference value. * For the Fanuc CRX line the solution is selected to have the smallest distance measured by the norm of its difference to the reference joint position. The returned joint position is guaranteed to be within the joint limits and not in a singular position of the robot.
|
|
8881
8716
|
* @summary Nearest Joint Position from TCP Pose
|
|
@@ -8924,7 +8759,7 @@ export declare class MotionGroupKinematicsApi extends BaseAPI {
|
|
|
8924
8759
|
* @throws {RequiredError}
|
|
8925
8760
|
* @memberof MotionGroupKinematicsApi
|
|
8926
8761
|
*/
|
|
8927
|
-
calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
8762
|
+
calculateForwardKinematic(cell: string, motionGroup: string, tcpPoseRequest: TcpPoseRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PoseInCoordinateSystem, any>>;
|
|
8928
8763
|
/**
|
|
8929
8764
|
* Calculate the joint positions the motion-group needs to apply for its TCP to be in a specified pose (Inverse Kinematic Solution). If multiple solutions are found, the one nearest to the given specified joint position is picked. * For all supported robot models, except the Fanuc CRX line, the returned joint position is guaranteed to have the same configuration (often referred to as ELBOW_UP, WRIST_DOWN, SHOULDER_RIGHT, f.e.) as the specified reference joint position. If the position limit of any single joint allows it to be in a range larger than 2 PI, the respective joint value in the result will be as close as possible to its reference value. * For the Fanuc CRX line the solution is selected to have the smallest distance measured by the norm of its difference to the reference joint position. The returned joint position is guaranteed to be within the joint limits and not in a singular position of the robot.
|
|
8930
8765
|
* @summary Nearest Joint Position from TCP Pose
|
|
@@ -11012,6 +10847,17 @@ export declare class StoreObjectApi extends BaseAPI {
|
|
|
11012
10847
|
* @export
|
|
11013
10848
|
*/
|
|
11014
10849
|
export declare const SystemApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
10850
|
+
/**
|
|
10851
|
+
* Retrieves a configuration backup based on provided resource identifiers.
|
|
10852
|
+
* @summary Retrieve Configuration Backup
|
|
10853
|
+
* @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
|
|
10854
|
+
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
10855
|
+
* @param {*} [options] Override http request option.
|
|
10856
|
+
* @throws {RequiredError}
|
|
10857
|
+
*/
|
|
10858
|
+
backupConfiguration: (resources: Array<string>, metadata?: {
|
|
10859
|
+
[key: string]: string;
|
|
10860
|
+
}, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11015
10861
|
/**
|
|
11016
10862
|
* Check if a more recent Wandelbots NOVA Version is available.
|
|
11017
10863
|
* @summary Check update
|
|
@@ -11041,6 +10887,22 @@ export declare const SystemApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11041
10887
|
* @throws {RequiredError}
|
|
11042
10888
|
*/
|
|
11043
10889
|
getSystemVersion: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10890
|
+
/**
|
|
10891
|
+
* Retrieves a list of all available configuration resources for backup purposes.
|
|
10892
|
+
* @summary List Configuration Resources
|
|
10893
|
+
* @param {*} [options] Override http request option.
|
|
10894
|
+
* @throws {RequiredError}
|
|
10895
|
+
*/
|
|
10896
|
+
listConfigurationResources: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10897
|
+
/**
|
|
10898
|
+
* Restores a previously backed up configuration.
|
|
10899
|
+
* @summary Restore Configuration Backup
|
|
10900
|
+
* @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
|
|
10901
|
+
* @param {File} body Backup file stream containing the configuration to restore.
|
|
10902
|
+
* @param {*} [options] Override http request option.
|
|
10903
|
+
* @throws {RequiredError}
|
|
10904
|
+
*/
|
|
10905
|
+
restoreConfiguration: (resources: Array<string>, body: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11044
10906
|
/**
|
|
11045
10907
|
* 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.
|
|
11046
10908
|
* @summary Update Wandelbots NOVA version
|
|
@@ -11055,6 +10917,17 @@ export declare const SystemApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
11055
10917
|
* @export
|
|
11056
10918
|
*/
|
|
11057
10919
|
export declare const SystemApiFp: (configuration?: Configuration) => {
|
|
10920
|
+
/**
|
|
10921
|
+
* Retrieves a configuration backup based on provided resource identifiers.
|
|
10922
|
+
* @summary Retrieve Configuration Backup
|
|
10923
|
+
* @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
|
|
10924
|
+
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
10925
|
+
* @param {*} [options] Override http request option.
|
|
10926
|
+
* @throws {RequiredError}
|
|
10927
|
+
*/
|
|
10928
|
+
backupConfiguration(resources: Array<string>, metadata?: {
|
|
10929
|
+
[key: string]: string;
|
|
10930
|
+
}, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
11058
10931
|
/**
|
|
11059
10932
|
* Check if a more recent Wandelbots NOVA Version is available.
|
|
11060
10933
|
* @summary Check update
|
|
@@ -11084,6 +10957,22 @@ export declare const SystemApiFp: (configuration?: Configuration) => {
|
|
|
11084
10957
|
* @throws {RequiredError}
|
|
11085
10958
|
*/
|
|
11086
10959
|
getSystemVersion(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
10960
|
+
/**
|
|
10961
|
+
* Retrieves a list of all available configuration resources for backup purposes.
|
|
10962
|
+
* @summary List Configuration Resources
|
|
10963
|
+
* @param {*} [options] Override http request option.
|
|
10964
|
+
* @throws {RequiredError}
|
|
10965
|
+
*/
|
|
10966
|
+
listConfigurationResources(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ConfigurationResource>>>;
|
|
10967
|
+
/**
|
|
10968
|
+
* Restores a previously backed up configuration.
|
|
10969
|
+
* @summary Restore Configuration Backup
|
|
10970
|
+
* @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
|
|
10971
|
+
* @param {File} body Backup file stream containing the configuration to restore.
|
|
10972
|
+
* @param {*} [options] Override http request option.
|
|
10973
|
+
* @throws {RequiredError}
|
|
10974
|
+
*/
|
|
10975
|
+
restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
11087
10976
|
/**
|
|
11088
10977
|
* 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.
|
|
11089
10978
|
* @summary Update Wandelbots NOVA version
|
|
@@ -11098,6 +10987,17 @@ export declare const SystemApiFp: (configuration?: Configuration) => {
|
|
|
11098
10987
|
* @export
|
|
11099
10988
|
*/
|
|
11100
10989
|
export declare const SystemApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
10990
|
+
/**
|
|
10991
|
+
* Retrieves a configuration backup based on provided resource identifiers.
|
|
10992
|
+
* @summary Retrieve Configuration Backup
|
|
10993
|
+
* @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
|
|
10994
|
+
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
10995
|
+
* @param {*} [options] Override http request option.
|
|
10996
|
+
* @throws {RequiredError}
|
|
10997
|
+
*/
|
|
10998
|
+
backupConfiguration(resources: Array<string>, metadata?: {
|
|
10999
|
+
[key: string]: string;
|
|
11000
|
+
}, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
11101
11001
|
/**
|
|
11102
11002
|
* Check if a more recent Wandelbots NOVA Version is available.
|
|
11103
11003
|
* @summary Check update
|
|
@@ -11127,6 +11027,22 @@ export declare const SystemApiFactory: (configuration?: Configuration, basePath?
|
|
|
11127
11027
|
* @throws {RequiredError}
|
|
11128
11028
|
*/
|
|
11129
11029
|
getSystemVersion(options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
11030
|
+
/**
|
|
11031
|
+
* Retrieves a list of all available configuration resources for backup purposes.
|
|
11032
|
+
* @summary List Configuration Resources
|
|
11033
|
+
* @param {*} [options] Override http request option.
|
|
11034
|
+
* @throws {RequiredError}
|
|
11035
|
+
*/
|
|
11036
|
+
listConfigurationResources(options?: RawAxiosRequestConfig): AxiosPromise<Array<ConfigurationResource>>;
|
|
11037
|
+
/**
|
|
11038
|
+
* Restores a previously backed up configuration.
|
|
11039
|
+
* @summary Restore Configuration Backup
|
|
11040
|
+
* @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
|
|
11041
|
+
* @param {File} body Backup file stream containing the configuration to restore.
|
|
11042
|
+
* @param {*} [options] Override http request option.
|
|
11043
|
+
* @throws {RequiredError}
|
|
11044
|
+
*/
|
|
11045
|
+
restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
11130
11046
|
/**
|
|
11131
11047
|
* 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.
|
|
11132
11048
|
* @summary Update Wandelbots NOVA version
|
|
@@ -11143,6 +11059,18 @@ export declare const SystemApiFactory: (configuration?: Configuration, basePath?
|
|
|
11143
11059
|
* @extends {BaseAPI}
|
|
11144
11060
|
*/
|
|
11145
11061
|
export declare class SystemApi extends BaseAPI {
|
|
11062
|
+
/**
|
|
11063
|
+
* Retrieves a configuration backup based on provided resource identifiers.
|
|
11064
|
+
* @summary Retrieve Configuration Backup
|
|
11065
|
+
* @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
|
|
11066
|
+
* @param {{ [key: string]: string; }} [metadata] Additional metadata to add to the backup
|
|
11067
|
+
* @param {*} [options] Override http request option.
|
|
11068
|
+
* @throws {RequiredError}
|
|
11069
|
+
* @memberof SystemApi
|
|
11070
|
+
*/
|
|
11071
|
+
backupConfiguration(resources: Array<string>, metadata?: {
|
|
11072
|
+
[key: string]: string;
|
|
11073
|
+
}, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
11146
11074
|
/**
|
|
11147
11075
|
* Check if a more recent Wandelbots NOVA Version is available.
|
|
11148
11076
|
* @summary Check update
|
|
@@ -11176,6 +11104,24 @@ export declare class SystemApi extends BaseAPI {
|
|
|
11176
11104
|
* @memberof SystemApi
|
|
11177
11105
|
*/
|
|
11178
11106
|
getSystemVersion(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
11107
|
+
/**
|
|
11108
|
+
* Retrieves a list of all available configuration resources for backup purposes.
|
|
11109
|
+
* @summary List Configuration Resources
|
|
11110
|
+
* @param {*} [options] Override http request option.
|
|
11111
|
+
* @throws {RequiredError}
|
|
11112
|
+
* @memberof SystemApi
|
|
11113
|
+
*/
|
|
11114
|
+
listConfigurationResources(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConfigurationResource[], any>>;
|
|
11115
|
+
/**
|
|
11116
|
+
* Restores a previously backed up configuration.
|
|
11117
|
+
* @summary Restore Configuration Backup
|
|
11118
|
+
* @param {Array<string>} resources List of resource identifiers to included in the backup and restore operations.
|
|
11119
|
+
* @param {File} body Backup file stream containing the configuration to restore.
|
|
11120
|
+
* @param {*} [options] Override http request option.
|
|
11121
|
+
* @throws {RequiredError}
|
|
11122
|
+
* @memberof SystemApi
|
|
11123
|
+
*/
|
|
11124
|
+
restoreConfiguration(resources: Array<string>, body: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
11179
11125
|
/**
|
|
11180
11126
|
* 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.
|
|
11181
11127
|
* @summary Update Wandelbots NOVA version
|
|
@@ -11579,18 +11525,28 @@ export declare const VirtualRobotApiAxiosParamCreator: (configuration?: Configur
|
|
|
11579
11525
|
*/
|
|
11580
11526
|
getMotionGroups: (cell: string, controller: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11581
11527
|
/**
|
|
11582
|
-
*
|
|
11528
|
+
* 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).
|
|
11583
11529
|
* @summary Get Inputs/Outputs
|
|
11584
11530
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11585
11531
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
11532
|
+
* @param {Array<string>} ios
|
|
11533
|
+
* @param {*} [options] Override http request option.
|
|
11534
|
+
* @throws {RequiredError}
|
|
11535
|
+
*/
|
|
11536
|
+
listIOs: (cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11537
|
+
/**
|
|
11538
|
+
* 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.
|
|
11539
|
+
* @summary List Input/Output Descriptions
|
|
11540
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11541
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
11586
11542
|
* @param {Array<string>} [ios]
|
|
11587
11543
|
* @param {IODirection} [direction] Return only inputs/outputs with the specified direction.
|
|
11588
11544
|
* @param {IOValueType} [valueType] Return only inputs/outputs with the specified value type.
|
|
11589
|
-
* @param {string} [
|
|
11545
|
+
* @param {string} [group] Return only inputs/outputs from the specified group.
|
|
11590
11546
|
* @param {*} [options] Override http request option.
|
|
11591
11547
|
* @throws {RequiredError}
|
|
11592
11548
|
*/
|
|
11593
|
-
|
|
11549
|
+
listVirtualRobotIODescriptions: (cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11594
11550
|
/**
|
|
11595
11551
|
* Sets a list of values of a virtual controller inputs/outputs.
|
|
11596
11552
|
* @summary Set Input/Ouput Values
|
|
@@ -11638,18 +11594,28 @@ export declare const VirtualRobotApiFp: (configuration?: Configuration) => {
|
|
|
11638
11594
|
*/
|
|
11639
11595
|
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupInfos>>;
|
|
11640
11596
|
/**
|
|
11641
|
-
*
|
|
11597
|
+
* 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).
|
|
11642
11598
|
* @summary Get Inputs/Outputs
|
|
11643
11599
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11644
11600
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
11601
|
+
* @param {Array<string>} ios
|
|
11602
|
+
* @param {*} [options] Override http request option.
|
|
11603
|
+
* @throws {RequiredError}
|
|
11604
|
+
*/
|
|
11605
|
+
listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListIOValuesResponse>>;
|
|
11606
|
+
/**
|
|
11607
|
+
* 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.
|
|
11608
|
+
* @summary List Input/Output Descriptions
|
|
11609
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11610
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
11645
11611
|
* @param {Array<string>} [ios]
|
|
11646
11612
|
* @param {IODirection} [direction] Return only inputs/outputs with the specified direction.
|
|
11647
11613
|
* @param {IOValueType} [valueType] Return only inputs/outputs with the specified value type.
|
|
11648
|
-
* @param {string} [
|
|
11614
|
+
* @param {string} [group] Return only inputs/outputs from the specified group.
|
|
11649
11615
|
* @param {*} [options] Override http request option.
|
|
11650
11616
|
* @throws {RequiredError}
|
|
11651
11617
|
*/
|
|
11652
|
-
|
|
11618
|
+
listVirtualRobotIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListIODescriptionsResponse>>;
|
|
11653
11619
|
/**
|
|
11654
11620
|
* Sets a list of values of a virtual controller inputs/outputs.
|
|
11655
11621
|
* @summary Set Input/Ouput Values
|
|
@@ -11659,7 +11625,7 @@ export declare const VirtualRobotApiFp: (configuration?: Configuration) => {
|
|
|
11659
11625
|
* @param {*} [options] Override http request option.
|
|
11660
11626
|
* @throws {RequiredError}
|
|
11661
11627
|
*/
|
|
11662
|
-
setIOValues(cell: string, controller: string, setIOValuesRequestInner: Array<SetIOValuesRequestInner>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11628
|
+
setIOValues(cell: string, controller: string, setIOValuesRequestInner: Array<SetIOValuesRequestInner>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
11663
11629
|
/**
|
|
11664
11630
|
* Sets the values for joint position, joint velocity or joint acceleration of a motion group state. The values are immediately applied to the joints of the motion group. We recommend to only use the endpoint when the motion group is in monitor mode. In case the motion group is controlled, currently jogging or planning motions, the values are overridden by the controller or an error may occur.
|
|
11665
11631
|
* @summary Set Motion Group State
|
|
@@ -11670,7 +11636,7 @@ export declare const VirtualRobotApiFp: (configuration?: Configuration) => {
|
|
|
11670
11636
|
* @param {*} [options] Override http request option.
|
|
11671
11637
|
* @throws {RequiredError}
|
|
11672
11638
|
*/
|
|
11673
|
-
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11639
|
+
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
11674
11640
|
};
|
|
11675
11641
|
/**
|
|
11676
11642
|
* VirtualRobotApi - factory interface
|
|
@@ -11697,18 +11663,28 @@ export declare const VirtualRobotApiFactory: (configuration?: Configuration, bas
|
|
|
11697
11663
|
*/
|
|
11698
11664
|
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupInfos>;
|
|
11699
11665
|
/**
|
|
11700
|
-
*
|
|
11666
|
+
* 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).
|
|
11701
11667
|
* @summary Get Inputs/Outputs
|
|
11702
11668
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11703
11669
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
11670
|
+
* @param {Array<string>} ios
|
|
11671
|
+
* @param {*} [options] Override http request option.
|
|
11672
|
+
* @throws {RequiredError}
|
|
11673
|
+
*/
|
|
11674
|
+
listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): AxiosPromise<ListIOValuesResponse>;
|
|
11675
|
+
/**
|
|
11676
|
+
* 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.
|
|
11677
|
+
* @summary List Input/Output Descriptions
|
|
11678
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11679
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
11704
11680
|
* @param {Array<string>} [ios]
|
|
11705
11681
|
* @param {IODirection} [direction] Return only inputs/outputs with the specified direction.
|
|
11706
11682
|
* @param {IOValueType} [valueType] Return only inputs/outputs with the specified value type.
|
|
11707
|
-
* @param {string} [
|
|
11683
|
+
* @param {string} [group] Return only inputs/outputs from the specified group.
|
|
11708
11684
|
* @param {*} [options] Override http request option.
|
|
11709
11685
|
* @throws {RequiredError}
|
|
11710
11686
|
*/
|
|
11711
|
-
|
|
11687
|
+
listVirtualRobotIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListIODescriptionsResponse>;
|
|
11712
11688
|
/**
|
|
11713
11689
|
* Sets a list of values of a virtual controller inputs/outputs.
|
|
11714
11690
|
* @summary Set Input/Ouput Values
|
|
@@ -11718,7 +11694,7 @@ export declare const VirtualRobotApiFactory: (configuration?: Configuration, bas
|
|
|
11718
11694
|
* @param {*} [options] Override http request option.
|
|
11719
11695
|
* @throws {RequiredError}
|
|
11720
11696
|
*/
|
|
11721
|
-
setIOValues(cell: string, controller: string, setIOValuesRequestInner: Array<SetIOValuesRequestInner>, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
11697
|
+
setIOValues(cell: string, controller: string, setIOValuesRequestInner: Array<SetIOValuesRequestInner>, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
11722
11698
|
/**
|
|
11723
11699
|
* Sets the values for joint position, joint velocity or joint acceleration of a motion group state. The values are immediately applied to the joints of the motion group. We recommend to only use the endpoint when the motion group is in monitor mode. In case the motion group is controlled, currently jogging or planning motions, the values are overridden by the controller or an error may occur.
|
|
11724
11700
|
* @summary Set Motion Group State
|
|
@@ -11729,7 +11705,7 @@ export declare const VirtualRobotApiFactory: (configuration?: Configuration, bas
|
|
|
11729
11705
|
* @param {*} [options] Override http request option.
|
|
11730
11706
|
* @throws {RequiredError}
|
|
11731
11707
|
*/
|
|
11732
|
-
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
11708
|
+
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
11733
11709
|
};
|
|
11734
11710
|
/**
|
|
11735
11711
|
* VirtualRobotApi - object-oriented interface
|
|
@@ -11760,19 +11736,30 @@ export declare class VirtualRobotApi extends BaseAPI {
|
|
|
11760
11736
|
*/
|
|
11761
11737
|
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MotionGroupInfos, any>>;
|
|
11762
11738
|
/**
|
|
11763
|
-
*
|
|
11739
|
+
* 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).
|
|
11764
11740
|
* @summary Get Inputs/Outputs
|
|
11765
11741
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11766
11742
|
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
11743
|
+
* @param {Array<string>} ios
|
|
11744
|
+
* @param {*} [options] Override http request option.
|
|
11745
|
+
* @throws {RequiredError}
|
|
11746
|
+
* @memberof VirtualRobotApi
|
|
11747
|
+
*/
|
|
11748
|
+
listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListIOValuesResponse, any>>;
|
|
11749
|
+
/**
|
|
11750
|
+
* 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.
|
|
11751
|
+
* @summary List Input/Output Descriptions
|
|
11752
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
11753
|
+
* @param {string} controller Unique identifier to address a controller in the cell.
|
|
11767
11754
|
* @param {Array<string>} [ios]
|
|
11768
11755
|
* @param {IODirection} [direction] Return only inputs/outputs with the specified direction.
|
|
11769
11756
|
* @param {IOValueType} [valueType] Return only inputs/outputs with the specified value type.
|
|
11770
|
-
* @param {string} [
|
|
11757
|
+
* @param {string} [group] Return only inputs/outputs from the specified group.
|
|
11771
11758
|
* @param {*} [options] Override http request option.
|
|
11772
11759
|
* @throws {RequiredError}
|
|
11773
11760
|
* @memberof VirtualRobotApi
|
|
11774
11761
|
*/
|
|
11775
|
-
|
|
11762
|
+
listVirtualRobotIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListIODescriptionsResponse, any>>;
|
|
11776
11763
|
/**
|
|
11777
11764
|
* Sets a list of values of a virtual controller inputs/outputs.
|
|
11778
11765
|
* @summary Set Input/Ouput Values
|
|
@@ -11783,7 +11770,7 @@ export declare class VirtualRobotApi extends BaseAPI {
|
|
|
11783
11770
|
* @throws {RequiredError}
|
|
11784
11771
|
* @memberof VirtualRobotApi
|
|
11785
11772
|
*/
|
|
11786
|
-
setIOValues(cell: string, controller: string, setIOValuesRequestInner: Array<SetIOValuesRequestInner>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
11773
|
+
setIOValues(cell: string, controller: string, setIOValuesRequestInner: Array<SetIOValuesRequestInner>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
11787
11774
|
/**
|
|
11788
11775
|
* Sets the values for joint position, joint velocity or joint acceleration of a motion group state. The values are immediately applied to the joints of the motion group. We recommend to only use the endpoint when the motion group is in monitor mode. In case the motion group is controlled, currently jogging or planning motions, the values are overridden by the controller or an error may occur.
|
|
11789
11776
|
* @summary Set Motion Group State
|
|
@@ -11795,7 +11782,7 @@ export declare class VirtualRobotApi extends BaseAPI {
|
|
|
11795
11782
|
* @throws {RequiredError}
|
|
11796
11783
|
* @memberof VirtualRobotApi
|
|
11797
11784
|
*/
|
|
11798
|
-
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
11785
|
+
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
11799
11786
|
}
|
|
11800
11787
|
/**
|
|
11801
11788
|
* VirtualRobotBehaviorApi - axios parameter creator
|
|
@@ -11869,7 +11856,7 @@ export declare const VirtualRobotBehaviorApiFp: (configuration?: Configuration)
|
|
|
11869
11856
|
* @param {*} [options] Override http request option.
|
|
11870
11857
|
* @throws {RequiredError}
|
|
11871
11858
|
*/
|
|
11872
|
-
setMotionGroupBehavior(cell: string, controller: string, motionGroup: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11859
|
+
setMotionGroupBehavior(cell: string, controller: string, motionGroup: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
11873
11860
|
};
|
|
11874
11861
|
/**
|
|
11875
11862
|
* VirtualRobotBehaviorApi - factory interface
|
|
@@ -11906,7 +11893,7 @@ export declare const VirtualRobotBehaviorApiFactory: (configuration?: Configurat
|
|
|
11906
11893
|
* @param {*} [options] Override http request option.
|
|
11907
11894
|
* @throws {RequiredError}
|
|
11908
11895
|
*/
|
|
11909
|
-
setMotionGroupBehavior(cell: string, controller: string, motionGroup: string, behavior?: Behavior, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
11896
|
+
setMotionGroupBehavior(cell: string, controller: string, motionGroup: string, behavior?: Behavior, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
11910
11897
|
};
|
|
11911
11898
|
/**
|
|
11912
11899
|
* VirtualRobotBehaviorApi - object-oriented interface
|
|
@@ -11948,7 +11935,7 @@ export declare class VirtualRobotBehaviorApi extends BaseAPI {
|
|
|
11948
11935
|
* @throws {RequiredError}
|
|
11949
11936
|
* @memberof VirtualRobotBehaviorApi
|
|
11950
11937
|
*/
|
|
11951
|
-
setMotionGroupBehavior(cell: string, controller: string, motionGroup: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
11938
|
+
setMotionGroupBehavior(cell: string, controller: string, motionGroup: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
11952
11939
|
}
|
|
11953
11940
|
/**
|
|
11954
11941
|
* VirtualRobotModeApi - axios parameter creator
|
|
@@ -12044,7 +12031,7 @@ export declare const VirtualRobotModeApiFp: (configuration?: Configuration) => {
|
|
|
12044
12031
|
* @param {*} [options] Override http request option.
|
|
12045
12032
|
* @throws {RequiredError}
|
|
12046
12033
|
*/
|
|
12047
|
-
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
12034
|
+
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12048
12035
|
/**
|
|
12049
12036
|
* Changes the Operation Mode of the virtual robot controller to the specified value. To get the Operation Mode regardless of the controller type use [getCurrentMotionGroupState](getCurrentMotionGroupState). > **NOTE** > > The Operating Mode can only change be changed via API when using virtual robot controllers.
|
|
12050
12037
|
* @summary Set Operation Mode
|
|
@@ -12054,7 +12041,7 @@ export declare const VirtualRobotModeApiFp: (configuration?: Configuration) => {
|
|
|
12054
12041
|
* @param {*} [options] Override http request option.
|
|
12055
12042
|
* @throws {RequiredError}
|
|
12056
12043
|
*/
|
|
12057
|
-
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
12044
|
+
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12058
12045
|
};
|
|
12059
12046
|
/**
|
|
12060
12047
|
* VirtualRobotModeApi - factory interface
|
|
@@ -12097,7 +12084,7 @@ export declare const VirtualRobotModeApiFactory: (configuration?: Configuration,
|
|
|
12097
12084
|
* @param {*} [options] Override http request option.
|
|
12098
12085
|
* @throws {RequiredError}
|
|
12099
12086
|
*/
|
|
12100
|
-
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12087
|
+
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12101
12088
|
/**
|
|
12102
12089
|
* Changes the Operation Mode of the virtual robot controller to the specified value. To get the Operation Mode regardless of the controller type use [getCurrentMotionGroupState](getCurrentMotionGroupState). > **NOTE** > > The Operating Mode can only change be changed via API when using virtual robot controllers.
|
|
12103
12090
|
* @summary Set Operation Mode
|
|
@@ -12107,7 +12094,7 @@ export declare const VirtualRobotModeApiFactory: (configuration?: Configuration,
|
|
|
12107
12094
|
* @param {*} [options] Override http request option.
|
|
12108
12095
|
* @throws {RequiredError}
|
|
12109
12096
|
*/
|
|
12110
|
-
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12097
|
+
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12111
12098
|
};
|
|
12112
12099
|
/**
|
|
12113
12100
|
* VirtualRobotModeApi - object-oriented interface
|
|
@@ -12156,7 +12143,7 @@ export declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
12156
12143
|
* @throws {RequiredError}
|
|
12157
12144
|
* @memberof VirtualRobotModeApi
|
|
12158
12145
|
*/
|
|
12159
|
-
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12146
|
+
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
12160
12147
|
/**
|
|
12161
12148
|
* Changes the Operation Mode of the virtual robot controller to the specified value. To get the Operation Mode regardless of the controller type use [getCurrentMotionGroupState](getCurrentMotionGroupState). > **NOTE** > > The Operating Mode can only change be changed via API when using virtual robot controllers.
|
|
12162
12149
|
* @summary Set Operation Mode
|
|
@@ -12167,7 +12154,7 @@ export declare class VirtualRobotModeApi extends BaseAPI {
|
|
|
12167
12154
|
* @throws {RequiredError}
|
|
12168
12155
|
* @memberof VirtualRobotModeApi
|
|
12169
12156
|
*/
|
|
12170
|
-
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12157
|
+
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
12171
12158
|
}
|
|
12172
12159
|
/**
|
|
12173
12160
|
* VirtualRobotSetupApi - axios parameter creator
|
|
@@ -12272,7 +12259,7 @@ export declare const VirtualRobotSetupApiFp: (configuration?: Configuration) =>
|
|
|
12272
12259
|
* @param {*} [options] Override http request option.
|
|
12273
12260
|
* @throws {RequiredError}
|
|
12274
12261
|
*/
|
|
12275
|
-
addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
12262
|
+
addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12276
12263
|
/**
|
|
12277
12264
|
* Adds a new TCP or updates an existing TCP in the motion group. The position and rotation values in the request body are defined within the flange’s coordinate system. > **NOTE** > > Ensure the TCP\'s position is within the robot\'s reach. Refer to the robot’s documentation or data sheet for details like joint limits or reach.
|
|
12278
12265
|
* @summary Add TCP
|
|
@@ -12283,7 +12270,7 @@ export declare const VirtualRobotSetupApiFp: (configuration?: Configuration) =>
|
|
|
12283
12270
|
* @param {*} [options] Override http request option.
|
|
12284
12271
|
* @throws {RequiredError}
|
|
12285
12272
|
*/
|
|
12286
|
-
addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
12273
|
+
addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12287
12274
|
/**
|
|
12288
12275
|
* Deletes a coordinate system from the virtual controller. This will remove the coordinate system from the list of coordinate systems and remove all dependent coordinate systems which use the deleted coordinate system as reference.
|
|
12289
12276
|
* @summary Remove Coordinate System
|
|
@@ -12294,7 +12281,7 @@ export declare const VirtualRobotSetupApiFp: (configuration?: Configuration) =>
|
|
|
12294
12281
|
* @param {*} [options] Override http request option.
|
|
12295
12282
|
* @throws {RequiredError}
|
|
12296
12283
|
*/
|
|
12297
|
-
deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
12284
|
+
deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12298
12285
|
/**
|
|
12299
12286
|
* Removes the TCP from the motion group. An unknown TCP is a valid input.
|
|
12300
12287
|
* @summary Remove TCP
|
|
@@ -12305,7 +12292,7 @@ export declare const VirtualRobotSetupApiFp: (configuration?: Configuration) =>
|
|
|
12305
12292
|
* @param {*} [options] Override http request option.
|
|
12306
12293
|
* @throws {RequiredError}
|
|
12307
12294
|
*/
|
|
12308
|
-
deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
12295
|
+
deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12309
12296
|
/**
|
|
12310
12297
|
* Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
|
|
12311
12298
|
* @summary Get Mounting
|
|
@@ -12361,7 +12348,7 @@ export declare const VirtualRobotSetupApiFactory: (configuration?: Configuration
|
|
|
12361
12348
|
* @param {*} [options] Override http request option.
|
|
12362
12349
|
* @throws {RequiredError}
|
|
12363
12350
|
*/
|
|
12364
|
-
addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12351
|
+
addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12365
12352
|
/**
|
|
12366
12353
|
* Adds a new TCP or updates an existing TCP in the motion group. The position and rotation values in the request body are defined within the flange’s coordinate system. > **NOTE** > > Ensure the TCP\'s position is within the robot\'s reach. Refer to the robot’s documentation or data sheet for details like joint limits or reach.
|
|
12367
12354
|
* @summary Add TCP
|
|
@@ -12372,7 +12359,7 @@ export declare const VirtualRobotSetupApiFactory: (configuration?: Configuration
|
|
|
12372
12359
|
* @param {*} [options] Override http request option.
|
|
12373
12360
|
* @throws {RequiredError}
|
|
12374
12361
|
*/
|
|
12375
|
-
addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12362
|
+
addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12376
12363
|
/**
|
|
12377
12364
|
* Deletes a coordinate system from the virtual controller. This will remove the coordinate system from the list of coordinate systems and remove all dependent coordinate systems which use the deleted coordinate system as reference.
|
|
12378
12365
|
* @summary Remove Coordinate System
|
|
@@ -12383,7 +12370,7 @@ export declare const VirtualRobotSetupApiFactory: (configuration?: Configuration
|
|
|
12383
12370
|
* @param {*} [options] Override http request option.
|
|
12384
12371
|
* @throws {RequiredError}
|
|
12385
12372
|
*/
|
|
12386
|
-
deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12373
|
+
deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12387
12374
|
/**
|
|
12388
12375
|
* Removes the TCP from the motion group. An unknown TCP is a valid input.
|
|
12389
12376
|
* @summary Remove TCP
|
|
@@ -12394,7 +12381,7 @@ export declare const VirtualRobotSetupApiFactory: (configuration?: Configuration
|
|
|
12394
12381
|
* @param {*} [options] Override http request option.
|
|
12395
12382
|
* @throws {RequiredError}
|
|
12396
12383
|
*/
|
|
12397
|
-
deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12384
|
+
deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12398
12385
|
/**
|
|
12399
12386
|
* Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
|
|
12400
12387
|
* @summary Get Mounting
|
|
@@ -12453,7 +12440,7 @@ export declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
12453
12440
|
* @throws {RequiredError}
|
|
12454
12441
|
* @memberof VirtualRobotSetupApi
|
|
12455
12442
|
*/
|
|
12456
|
-
addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12443
|
+
addVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
12457
12444
|
/**
|
|
12458
12445
|
* Adds a new TCP or updates an existing TCP in the motion group. The position and rotation values in the request body are defined within the flange’s coordinate system. > **NOTE** > > Ensure the TCP\'s position is within the robot\'s reach. Refer to the robot’s documentation or data sheet for details like joint limits or reach.
|
|
12459
12446
|
* @summary Add TCP
|
|
@@ -12465,7 +12452,7 @@ export declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
12465
12452
|
* @throws {RequiredError}
|
|
12466
12453
|
* @memberof VirtualRobotSetupApi
|
|
12467
12454
|
*/
|
|
12468
|
-
addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12455
|
+
addVirtualRobotTcp(cell: string, controller: string, motionGroup: string, robotTcp: RobotTcp, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
12469
12456
|
/**
|
|
12470
12457
|
* Deletes a coordinate system from the virtual controller. This will remove the coordinate system from the list of coordinate systems and remove all dependent coordinate systems which use the deleted coordinate system as reference.
|
|
12471
12458
|
* @summary Remove Coordinate System
|
|
@@ -12477,7 +12464,7 @@ export declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
12477
12464
|
* @throws {RequiredError}
|
|
12478
12465
|
* @memberof VirtualRobotSetupApi
|
|
12479
12466
|
*/
|
|
12480
|
-
deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12467
|
+
deleteVirtualRobotCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
12481
12468
|
/**
|
|
12482
12469
|
* Removes the TCP from the motion group. An unknown TCP is a valid input.
|
|
12483
12470
|
* @summary Remove TCP
|
|
@@ -12489,7 +12476,7 @@ export declare class VirtualRobotSetupApi extends BaseAPI {
|
|
|
12489
12476
|
* @throws {RequiredError}
|
|
12490
12477
|
* @memberof VirtualRobotSetupApi
|
|
12491
12478
|
*/
|
|
12492
|
-
deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12479
|
+
deleteVirtualRobotTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
12493
12480
|
/**
|
|
12494
12481
|
* Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
|
|
12495
12482
|
* @summary Get Mounting
|