@wandelbots/nova-api 25.9.0-dev.39 → 25.9.0-dev.40
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/dist/v2/index.d.cts +164 -158
- package/dist/v2/index.d.ts +164 -158
- package/package.json +1 -1
package/dist/v2/index.d.cts
CHANGED
|
@@ -161,7 +161,7 @@ interface AbbController {
|
|
|
161
161
|
* @type {string}
|
|
162
162
|
* @memberof AbbController
|
|
163
163
|
*/
|
|
164
|
-
'kind'
|
|
164
|
+
'kind': AbbControllerKindEnum;
|
|
165
165
|
/**
|
|
166
166
|
*
|
|
167
167
|
* @type {string}
|
|
@@ -246,7 +246,7 @@ interface AddTrajectoryError {
|
|
|
246
246
|
* @type AddTrajectoryErrorData
|
|
247
247
|
* @export
|
|
248
248
|
*/
|
|
249
|
-
type AddTrajectoryErrorData = CollisionError |
|
|
249
|
+
type AddTrajectoryErrorData = CollisionError | InconsistentTrajectorySizeError | InvalidDofError | JointLimitExceededError | NanValueError | TcpRequiredError | TorqueExceededError;
|
|
250
250
|
/**
|
|
251
251
|
*
|
|
252
252
|
* @export
|
|
@@ -426,7 +426,7 @@ interface BooleanValue {
|
|
|
426
426
|
* @type {string}
|
|
427
427
|
* @memberof BooleanValue
|
|
428
428
|
*/
|
|
429
|
-
'value_type'
|
|
429
|
+
'value_type': BooleanValueValueTypeEnum;
|
|
430
430
|
}
|
|
431
431
|
declare const BooleanValueValueTypeEnum: {
|
|
432
432
|
readonly Boolean: "boolean";
|
|
@@ -478,6 +478,55 @@ declare const BoxBoxTypeEnum: {
|
|
|
478
478
|
readonly Full: "FULL";
|
|
479
479
|
};
|
|
480
480
|
type BoxBoxTypeEnum = typeof BoxBoxTypeEnum[keyof typeof BoxBoxTypeEnum];
|
|
481
|
+
/**
|
|
482
|
+
*
|
|
483
|
+
* @export
|
|
484
|
+
* @interface BusIODescription
|
|
485
|
+
*/
|
|
486
|
+
interface BusIODescription {
|
|
487
|
+
/**
|
|
488
|
+
* Unique identifier of the input/output.
|
|
489
|
+
* @type {string}
|
|
490
|
+
* @memberof BusIODescription
|
|
491
|
+
*/
|
|
492
|
+
'io': string;
|
|
493
|
+
/**
|
|
494
|
+
* Name of the input/output. Customize it using the respective BUS service, e.g., [addProfinetIO](addProfinetIO) for PROFINET service.
|
|
495
|
+
* @type {string}
|
|
496
|
+
* @memberof BusIODescription
|
|
497
|
+
*/
|
|
498
|
+
'name': string;
|
|
499
|
+
/**
|
|
500
|
+
*
|
|
501
|
+
* @type {IODirection}
|
|
502
|
+
* @memberof BusIODescription
|
|
503
|
+
*/
|
|
504
|
+
'direction': IODirection;
|
|
505
|
+
/**
|
|
506
|
+
*
|
|
507
|
+
* @type {IOValueType}
|
|
508
|
+
* @memberof BusIODescription
|
|
509
|
+
*/
|
|
510
|
+
'value_type': IOValueType;
|
|
511
|
+
/**
|
|
512
|
+
*
|
|
513
|
+
* @type {UnitType}
|
|
514
|
+
* @memberof BusIODescription
|
|
515
|
+
*/
|
|
516
|
+
'unit'?: UnitType;
|
|
517
|
+
/**
|
|
518
|
+
*
|
|
519
|
+
* @type {IOBoundary}
|
|
520
|
+
* @memberof BusIODescription
|
|
521
|
+
*/
|
|
522
|
+
'min'?: IOBoundary;
|
|
523
|
+
/**
|
|
524
|
+
*
|
|
525
|
+
* @type {IOBoundary}
|
|
526
|
+
* @memberof BusIODescription
|
|
527
|
+
*/
|
|
528
|
+
'max'?: IOBoundary;
|
|
529
|
+
}
|
|
481
530
|
/**
|
|
482
531
|
* MODBUS client inputs/outputs service configuration.
|
|
483
532
|
* @export
|
|
@@ -489,7 +538,7 @@ interface BusIOModbusClient {
|
|
|
489
538
|
* @type {string}
|
|
490
539
|
* @memberof BusIOModbusClient
|
|
491
540
|
*/
|
|
492
|
-
'bus_type'
|
|
541
|
+
'bus_type': BusIOModbusClientBusTypeEnum;
|
|
493
542
|
/**
|
|
494
543
|
*
|
|
495
544
|
* @type {BusIOModbusTCPClient}
|
|
@@ -512,7 +561,7 @@ interface BusIOModbusServer {
|
|
|
512
561
|
* @type {string}
|
|
513
562
|
* @memberof BusIOModbusServer
|
|
514
563
|
*/
|
|
515
|
-
'bus_type'
|
|
564
|
+
'bus_type': BusIOModbusServerBusTypeEnum;
|
|
516
565
|
/**
|
|
517
566
|
*
|
|
518
567
|
* @type {BusIOModbusTCPServer}
|
|
@@ -617,7 +666,7 @@ interface BusIOModbusVirtual {
|
|
|
617
666
|
* @type {string}
|
|
618
667
|
* @memberof BusIOModbusVirtual
|
|
619
668
|
*/
|
|
620
|
-
'bus_type'
|
|
669
|
+
'bus_type': BusIOModbusVirtualBusTypeEnum;
|
|
621
670
|
}
|
|
622
671
|
declare const BusIOModbusVirtualBusTypeEnum: {
|
|
623
672
|
readonly ModbusVirtual: "modbus_virtual";
|
|
@@ -634,7 +683,7 @@ interface BusIOProfinet {
|
|
|
634
683
|
* @type {string}
|
|
635
684
|
* @memberof BusIOProfinet
|
|
636
685
|
*/
|
|
637
|
-
'bus_type'
|
|
686
|
+
'bus_type': BusIOProfinetBusTypeEnum;
|
|
638
687
|
/**
|
|
639
688
|
* Used to enable IP communication through the same physical ethernet interface while PROFINET driver is active.
|
|
640
689
|
* @type {BusIOProfinetNetwork}
|
|
@@ -745,7 +794,7 @@ interface BusIOProfinetVirtual {
|
|
|
745
794
|
* @type {string}
|
|
746
795
|
* @memberof BusIOProfinetVirtual
|
|
747
796
|
*/
|
|
748
|
-
'bus_type'
|
|
797
|
+
'bus_type': BusIOProfinetVirtualBusTypeEnum;
|
|
749
798
|
}
|
|
750
799
|
declare const BusIOProfinetVirtualBusTypeEnum: {
|
|
751
800
|
readonly ProfinetVirtual: "profinet_virtual";
|
|
@@ -1650,7 +1699,17 @@ type ExecuteJoggingRequest = InitializeJoggingRequest | JointVelocityRequest | P
|
|
|
1650
1699
|
* @type ExecuteJoggingResponse
|
|
1651
1700
|
* @export
|
|
1652
1701
|
*/
|
|
1653
|
-
type ExecuteJoggingResponse =
|
|
1702
|
+
type ExecuteJoggingResponse = {
|
|
1703
|
+
kind: 'INITIALIZE_RECEIVED';
|
|
1704
|
+
} & InitializeJoggingResponse | {
|
|
1705
|
+
kind: 'JOINT_VELOCITY_RECEIVED';
|
|
1706
|
+
} & JointVelocityResponse | {
|
|
1707
|
+
kind: 'MOTION_ERROR';
|
|
1708
|
+
} & MovementErrorResponse | {
|
|
1709
|
+
kind: 'PAUSE_RECEIVED';
|
|
1710
|
+
} & PauseJoggingResponse | {
|
|
1711
|
+
kind: 'TCP_VELOCITY_RECEIVED';
|
|
1712
|
+
} & TcpVelocityResponse;
|
|
1654
1713
|
/**
|
|
1655
1714
|
* @type ExecuteTrajectoryRequest
|
|
1656
1715
|
* @export
|
|
@@ -1660,7 +1719,17 @@ type ExecuteTrajectoryRequest = InitializeMovementRequest | PauseMovementRequest
|
|
|
1660
1719
|
* @type ExecuteTrajectoryResponse
|
|
1661
1720
|
* @export
|
|
1662
1721
|
*/
|
|
1663
|
-
type ExecuteTrajectoryResponse =
|
|
1722
|
+
type ExecuteTrajectoryResponse = {
|
|
1723
|
+
kind: 'INITIALIZE_RECEIVED';
|
|
1724
|
+
} & InitializeMovementResponse | {
|
|
1725
|
+
kind: 'MOTION_ERROR';
|
|
1726
|
+
} & MovementErrorResponse | {
|
|
1727
|
+
kind: 'PAUSE_RECEIVED';
|
|
1728
|
+
} & PauseMovementResponse | {
|
|
1729
|
+
kind: 'PLAYBACK_SPEED_RECEIVED';
|
|
1730
|
+
} & PlaybackSpeedResponse | {
|
|
1731
|
+
kind: 'START_RECEIVED';
|
|
1732
|
+
} & StartMovementResponse;
|
|
1664
1733
|
/**
|
|
1665
1734
|
* A datapoint inside external joint stream.
|
|
1666
1735
|
* @export
|
|
@@ -1704,7 +1773,7 @@ interface FanucController {
|
|
|
1704
1773
|
* @type {string}
|
|
1705
1774
|
* @memberof FanucController
|
|
1706
1775
|
*/
|
|
1707
|
-
'kind'
|
|
1776
|
+
'kind': FanucControllerKindEnum;
|
|
1708
1777
|
/**
|
|
1709
1778
|
*
|
|
1710
1779
|
* @type {string}
|
|
@@ -1862,7 +1931,7 @@ interface FloatValue {
|
|
|
1862
1931
|
* @type {string}
|
|
1863
1932
|
* @memberof FloatValue
|
|
1864
1933
|
*/
|
|
1865
|
-
'value_type'
|
|
1934
|
+
'value_type': FloatValueValueTypeEnum;
|
|
1866
1935
|
}
|
|
1867
1936
|
declare const FloatValueValueTypeEnum: {
|
|
1868
1937
|
readonly Float: "float";
|
|
@@ -2025,12 +2094,23 @@ interface IOBooleanValue {
|
|
|
2025
2094
|
* @type {string}
|
|
2026
2095
|
* @memberof IOBooleanValue
|
|
2027
2096
|
*/
|
|
2028
|
-
'value_type'
|
|
2097
|
+
'value_type': IOBooleanValueValueTypeEnum;
|
|
2029
2098
|
}
|
|
2030
2099
|
declare const IOBooleanValueValueTypeEnum: {
|
|
2031
2100
|
readonly Boolean: "boolean";
|
|
2032
2101
|
};
|
|
2033
2102
|
type IOBooleanValueValueTypeEnum = typeof IOBooleanValueValueTypeEnum[keyof typeof IOBooleanValueValueTypeEnum];
|
|
2103
|
+
/**
|
|
2104
|
+
* @type IOBoundary
|
|
2105
|
+
* @export
|
|
2106
|
+
*/
|
|
2107
|
+
type IOBoundary = {
|
|
2108
|
+
value_type: 'boolean';
|
|
2109
|
+
} & BooleanValue | {
|
|
2110
|
+
value_type: 'float';
|
|
2111
|
+
} & FloatValue | {
|
|
2112
|
+
value_type: 'integer';
|
|
2113
|
+
} & IntegerValue;
|
|
2034
2114
|
/**
|
|
2035
2115
|
*
|
|
2036
2116
|
* @export
|
|
@@ -2075,77 +2155,17 @@ interface IODescription {
|
|
|
2075
2155
|
'unit'?: UnitType;
|
|
2076
2156
|
/**
|
|
2077
2157
|
*
|
|
2078
|
-
* @type {
|
|
2158
|
+
* @type {IOBoundary}
|
|
2079
2159
|
* @memberof IODescription
|
|
2080
2160
|
*/
|
|
2081
|
-
'min'?:
|
|
2161
|
+
'min'?: IOBoundary;
|
|
2082
2162
|
/**
|
|
2083
2163
|
*
|
|
2084
|
-
* @type {
|
|
2164
|
+
* @type {IOBoundary}
|
|
2085
2165
|
* @memberof IODescription
|
|
2086
2166
|
*/
|
|
2087
|
-
'max'?:
|
|
2167
|
+
'max'?: IOBoundary;
|
|
2088
2168
|
}
|
|
2089
|
-
/**
|
|
2090
|
-
*
|
|
2091
|
-
* @export
|
|
2092
|
-
* @interface IODescription2
|
|
2093
|
-
*/
|
|
2094
|
-
interface IODescription2 {
|
|
2095
|
-
/**
|
|
2096
|
-
* Unique identifier of the input/output.
|
|
2097
|
-
* @type {string}
|
|
2098
|
-
* @memberof IODescription2
|
|
2099
|
-
*/
|
|
2100
|
-
'io': string;
|
|
2101
|
-
/**
|
|
2102
|
-
* Name of the input/output. Customize it using the respective BUS service, e.g., [addProfinetIO](addProfinetIO) for PROFINET service.
|
|
2103
|
-
* @type {string}
|
|
2104
|
-
* @memberof IODescription2
|
|
2105
|
-
*/
|
|
2106
|
-
'name': string;
|
|
2107
|
-
/**
|
|
2108
|
-
*
|
|
2109
|
-
* @type {IODirection}
|
|
2110
|
-
* @memberof IODescription2
|
|
2111
|
-
*/
|
|
2112
|
-
'direction': IODirection;
|
|
2113
|
-
/**
|
|
2114
|
-
*
|
|
2115
|
-
* @type {IOValueType}
|
|
2116
|
-
* @memberof IODescription2
|
|
2117
|
-
*/
|
|
2118
|
-
'value_type': IOValueType;
|
|
2119
|
-
/**
|
|
2120
|
-
*
|
|
2121
|
-
* @type {UnitType}
|
|
2122
|
-
* @memberof IODescription2
|
|
2123
|
-
*/
|
|
2124
|
-
'unit'?: UnitType;
|
|
2125
|
-
/**
|
|
2126
|
-
*
|
|
2127
|
-
* @type {IODescriptionMin}
|
|
2128
|
-
* @memberof IODescription2
|
|
2129
|
-
*/
|
|
2130
|
-
'min'?: IODescriptionMin;
|
|
2131
|
-
/**
|
|
2132
|
-
*
|
|
2133
|
-
* @type {IODescriptionMin}
|
|
2134
|
-
* @memberof IODescription2
|
|
2135
|
-
*/
|
|
2136
|
-
'max'?: IODescriptionMin;
|
|
2137
|
-
}
|
|
2138
|
-
/**
|
|
2139
|
-
* @type IODescriptionMin
|
|
2140
|
-
* @export
|
|
2141
|
-
*/
|
|
2142
|
-
type IODescriptionMin = {
|
|
2143
|
-
value_type: 'boolean';
|
|
2144
|
-
} & BooleanValue | {
|
|
2145
|
-
value_type: 'float';
|
|
2146
|
-
} & FloatValue | {
|
|
2147
|
-
value_type: 'integer';
|
|
2148
|
-
} & IntegerValue;
|
|
2149
2169
|
/**
|
|
2150
2170
|
* Identifies the input/output type.
|
|
2151
2171
|
* @export
|
|
@@ -2179,7 +2199,7 @@ interface IOFloatValue {
|
|
|
2179
2199
|
* @type {string}
|
|
2180
2200
|
* @memberof IOFloatValue
|
|
2181
2201
|
*/
|
|
2182
|
-
'value_type'
|
|
2202
|
+
'value_type': IOFloatValueValueTypeEnum;
|
|
2183
2203
|
}
|
|
2184
2204
|
declare const IOFloatValueValueTypeEnum: {
|
|
2185
2205
|
readonly Float: "float";
|
|
@@ -2208,7 +2228,7 @@ interface IOIntegerValue {
|
|
|
2208
2228
|
* @type {string}
|
|
2209
2229
|
* @memberof IOIntegerValue
|
|
2210
2230
|
*/
|
|
2211
|
-
'value_type'
|
|
2231
|
+
'value_type': IOIntegerValueValueTypeEnum;
|
|
2212
2232
|
}
|
|
2213
2233
|
declare const IOIntegerValueValueTypeEnum: {
|
|
2214
2234
|
readonly Integer: "integer";
|
|
@@ -2272,40 +2292,40 @@ interface ImageCredentials {
|
|
|
2272
2292
|
'password': string;
|
|
2273
2293
|
}
|
|
2274
2294
|
/**
|
|
2275
|
-
*
|
|
2295
|
+
* Indicates that the trajectory contains an inconsistent number of joint positions, times, or locations.
|
|
2276
2296
|
* @export
|
|
2277
|
-
* @interface
|
|
2297
|
+
* @interface InconsistentTrajectorySizeError
|
|
2278
2298
|
*/
|
|
2279
|
-
interface
|
|
2299
|
+
interface InconsistentTrajectorySizeError {
|
|
2280
2300
|
/**
|
|
2281
2301
|
*
|
|
2282
|
-
* @type {
|
|
2283
|
-
* @memberof
|
|
2302
|
+
* @type {InconsistentTrajectorySizeErrorInconsistentTrajectorySize}
|
|
2303
|
+
* @memberof InconsistentTrajectorySizeError
|
|
2284
2304
|
*/
|
|
2285
|
-
'inconsistent_trajectory_size'?:
|
|
2305
|
+
'inconsistent_trajectory_size'?: InconsistentTrajectorySizeErrorInconsistentTrajectorySize;
|
|
2286
2306
|
}
|
|
2287
2307
|
/**
|
|
2288
2308
|
*
|
|
2289
2309
|
* @export
|
|
2290
|
-
* @interface
|
|
2310
|
+
* @interface InconsistentTrajectorySizeErrorInconsistentTrajectorySize
|
|
2291
2311
|
*/
|
|
2292
|
-
interface
|
|
2312
|
+
interface InconsistentTrajectorySizeErrorInconsistentTrajectorySize {
|
|
2293
2313
|
/**
|
|
2294
2314
|
*
|
|
2295
2315
|
* @type {number}
|
|
2296
|
-
* @memberof
|
|
2316
|
+
* @memberof InconsistentTrajectorySizeErrorInconsistentTrajectorySize
|
|
2297
2317
|
*/
|
|
2298
2318
|
'joint_position_size'?: number;
|
|
2299
2319
|
/**
|
|
2300
2320
|
*
|
|
2301
2321
|
* @type {number}
|
|
2302
|
-
* @memberof
|
|
2322
|
+
* @memberof InconsistentTrajectorySizeErrorInconsistentTrajectorySize
|
|
2303
2323
|
*/
|
|
2304
2324
|
'times_size'?: number;
|
|
2305
2325
|
/**
|
|
2306
2326
|
*
|
|
2307
2327
|
* @type {number}
|
|
2308
|
-
* @memberof
|
|
2328
|
+
* @memberof InconsistentTrajectorySizeErrorInconsistentTrajectorySize
|
|
2309
2329
|
*/
|
|
2310
2330
|
'locations_size'?: number;
|
|
2311
2331
|
}
|
|
@@ -2320,7 +2340,7 @@ interface InitializeJoggingRequest {
|
|
|
2320
2340
|
* @type {string}
|
|
2321
2341
|
* @memberof InitializeJoggingRequest
|
|
2322
2342
|
*/
|
|
2323
|
-
'message_type'
|
|
2343
|
+
'message_type': InitializeJoggingRequestMessageTypeEnum;
|
|
2324
2344
|
/**
|
|
2325
2345
|
* Identifier of the motion group.
|
|
2326
2346
|
* @type {string}
|
|
@@ -2378,7 +2398,7 @@ interface InitializeMovementRequest {
|
|
|
2378
2398
|
* @type {string}
|
|
2379
2399
|
* @memberof InitializeMovementRequest
|
|
2380
2400
|
*/
|
|
2381
|
-
'message_type'
|
|
2401
|
+
'message_type': InitializeMovementRequestMessageTypeEnum;
|
|
2382
2402
|
/**
|
|
2383
2403
|
*
|
|
2384
2404
|
* @type {InitializeMovementRequestTrajectory}
|
|
@@ -2407,11 +2427,7 @@ type InitializeMovementRequestMessageTypeEnum = typeof InitializeMovementRequest
|
|
|
2407
2427
|
* The trajectory which should be executed and locked to the connection.
|
|
2408
2428
|
* @export
|
|
2409
2429
|
*/
|
|
2410
|
-
type InitializeMovementRequestTrajectory =
|
|
2411
|
-
message_type: 'TrajectoryData';
|
|
2412
|
-
} & TrajectoryData | {
|
|
2413
|
-
message_type: 'TrajectoryId';
|
|
2414
|
-
} & TrajectoryId;
|
|
2430
|
+
type InitializeMovementRequestTrajectory = TrajectoryData | TrajectoryId;
|
|
2415
2431
|
/**
|
|
2416
2432
|
* Response for InitializeMovementRequest message.
|
|
2417
2433
|
* @export
|
|
@@ -2458,7 +2474,7 @@ interface IntegerValue {
|
|
|
2458
2474
|
* @type {string}
|
|
2459
2475
|
* @memberof IntegerValue
|
|
2460
2476
|
*/
|
|
2461
|
-
'value_type'
|
|
2477
|
+
'value_type': IntegerValueValueTypeEnum;
|
|
2462
2478
|
}
|
|
2463
2479
|
declare const IntegerValueValueTypeEnum: {
|
|
2464
2480
|
readonly Integer: "integer";
|
|
@@ -2467,32 +2483,32 @@ type IntegerValueValueTypeEnum = typeof IntegerValueValueTypeEnum[keyof typeof I
|
|
|
2467
2483
|
/**
|
|
2468
2484
|
*
|
|
2469
2485
|
* @export
|
|
2470
|
-
* @interface
|
|
2486
|
+
* @interface InvalidDofError
|
|
2471
2487
|
*/
|
|
2472
|
-
interface
|
|
2488
|
+
interface InvalidDofError {
|
|
2473
2489
|
/**
|
|
2474
2490
|
*
|
|
2475
|
-
* @type {
|
|
2476
|
-
* @memberof
|
|
2491
|
+
* @type {InvalidDofErrorInvalidDof}
|
|
2492
|
+
* @memberof InvalidDofError
|
|
2477
2493
|
*/
|
|
2478
|
-
'invalid_dof'?:
|
|
2494
|
+
'invalid_dof'?: InvalidDofErrorInvalidDof;
|
|
2479
2495
|
}
|
|
2480
2496
|
/**
|
|
2481
2497
|
*
|
|
2482
2498
|
* @export
|
|
2483
|
-
* @interface
|
|
2499
|
+
* @interface InvalidDofErrorInvalidDof
|
|
2484
2500
|
*/
|
|
2485
|
-
interface
|
|
2501
|
+
interface InvalidDofErrorInvalidDof {
|
|
2486
2502
|
/**
|
|
2487
2503
|
* The valid degrees of freedom for the motion group.
|
|
2488
2504
|
* @type {number}
|
|
2489
|
-
* @memberof
|
|
2505
|
+
* @memberof InvalidDofErrorInvalidDof
|
|
2490
2506
|
*/
|
|
2491
2507
|
'valid_dof'?: number;
|
|
2492
2508
|
/**
|
|
2493
2509
|
* The joint position that is out of its limits.
|
|
2494
2510
|
* @type {Array<number>}
|
|
2495
|
-
* @memberof
|
|
2511
|
+
* @memberof InvalidDofErrorInvalidDof
|
|
2496
2512
|
*/
|
|
2497
2513
|
'joint_position'?: Array<number>;
|
|
2498
2514
|
}
|
|
@@ -2611,11 +2627,7 @@ interface InverseKinematicsValidationError {
|
|
|
2611
2627
|
* Optional data further specifying the validation error.
|
|
2612
2628
|
* @export
|
|
2613
2629
|
*/
|
|
2614
|
-
type InverseKinematicsValidationErrorAllOfData =
|
|
2615
|
-
error_feedback_name: 'ErrorInvalidJointCount';
|
|
2616
|
-
} & ErrorInvalidJointCount | {
|
|
2617
|
-
error_feedback_name: 'ErrorJointLimitExceeded';
|
|
2618
|
-
} & ErrorJointLimitExceeded;
|
|
2630
|
+
type InverseKinematicsValidationErrorAllOfData = ErrorInvalidJointCount | ErrorJointLimitExceeded;
|
|
2619
2631
|
/**
|
|
2620
2632
|
* State of jogging execution. This state is sent during jogging movement, response-rate closest to the nearest multiple of controller step-rate but not exceeding the configured rate. The jogging state can be one of the following: - RUNNING: Jogging is active. - PAUSED_BY_USER: User has paused jogging. - PAUSED_NEAR_JOINT_LIMIT: Jogging was paused because a joint is is near its limit. - PAUSED_NEAR_COLLISION: Jogging was paused because the motion group neared a collision. - PAUSED_ON_IO: Jogging was paused because of an I/O event.
|
|
2621
2633
|
* @export
|
|
@@ -2754,13 +2766,13 @@ type JoggingRunningKindEnum = typeof JoggingRunningKindEnum[keyof typeof Jogging
|
|
|
2754
2766
|
/**
|
|
2755
2767
|
*
|
|
2756
2768
|
* @export
|
|
2757
|
-
* @interface
|
|
2769
|
+
* @interface JointLimitExceededError
|
|
2758
2770
|
*/
|
|
2759
|
-
interface
|
|
2771
|
+
interface JointLimitExceededError {
|
|
2760
2772
|
/**
|
|
2761
2773
|
*
|
|
2762
2774
|
* @type {FeedbackJointLimitExceeded}
|
|
2763
|
-
* @memberof
|
|
2775
|
+
* @memberof JointLimitExceededError
|
|
2764
2776
|
*/
|
|
2765
2777
|
'joint_limit_exceeded'?: FeedbackJointLimitExceeded;
|
|
2766
2778
|
}
|
|
@@ -2831,7 +2843,7 @@ interface JointVelocityRequest {
|
|
|
2831
2843
|
* @type {string}
|
|
2832
2844
|
* @memberof JointVelocityRequest
|
|
2833
2845
|
*/
|
|
2834
|
-
'message_type'
|
|
2846
|
+
'message_type': JointVelocityRequestMessageTypeEnum;
|
|
2835
2847
|
/**
|
|
2836
2848
|
* This structure describes a set of joint values, e.g., positions, currents, torques, of a motion group. Float precision is the default.
|
|
2837
2849
|
* @type {Array<number>}
|
|
@@ -2877,7 +2889,7 @@ interface KukaController {
|
|
|
2877
2889
|
* @type {string}
|
|
2878
2890
|
* @memberof KukaController
|
|
2879
2891
|
*/
|
|
2880
|
-
'kind'
|
|
2892
|
+
'kind': KukaControllerKindEnum;
|
|
2881
2893
|
/**
|
|
2882
2894
|
*
|
|
2883
2895
|
* @type {string}
|
|
@@ -3159,7 +3171,7 @@ type Manufacturer = typeof Manufacturer[keyof typeof Manufacturer];
|
|
|
3159
3171
|
*/
|
|
3160
3172
|
interface MidpointInsertionAlgorithm {
|
|
3161
3173
|
/**
|
|
3162
|
-
* Algorithm discriminator. Midpoint insertion algorithm configuration for collision-free path planning. This algorithm adds a single midpoint between the start and target joint position to find collision-free paths.
|
|
3174
|
+
* Algorithm discriminator. Midpoint insertion algorithm configuration for collision-free path planning. This algorithm adds a single midpoint between the start and target joint position to find collision-free paths.
|
|
3163
3175
|
* @type {string}
|
|
3164
3176
|
* @memberof MidpointInsertionAlgorithm
|
|
3165
3177
|
*/
|
|
@@ -3670,26 +3682,26 @@ type MovementErrorResponseKindEnum = typeof MovementErrorResponseKindEnum[keyof
|
|
|
3670
3682
|
/**
|
|
3671
3683
|
*
|
|
3672
3684
|
* @export
|
|
3673
|
-
* @interface
|
|
3685
|
+
* @interface NanValueError
|
|
3674
3686
|
*/
|
|
3675
|
-
interface
|
|
3687
|
+
interface NanValueError {
|
|
3676
3688
|
/**
|
|
3677
3689
|
*
|
|
3678
|
-
* @type {
|
|
3679
|
-
* @memberof
|
|
3690
|
+
* @type {NanValueErrorNanValue}
|
|
3691
|
+
* @memberof NanValueError
|
|
3680
3692
|
*/
|
|
3681
|
-
'nan_value'?:
|
|
3693
|
+
'nan_value'?: NanValueErrorNanValue;
|
|
3682
3694
|
}
|
|
3683
3695
|
/**
|
|
3684
3696
|
* Requested joint position contains NaN values.
|
|
3685
3697
|
* @export
|
|
3686
|
-
* @interface
|
|
3698
|
+
* @interface NanValueErrorNanValue
|
|
3687
3699
|
*/
|
|
3688
|
-
interface
|
|
3700
|
+
interface NanValueErrorNanValue {
|
|
3689
3701
|
/**
|
|
3690
3702
|
* The joint position that is out of its limits.
|
|
3691
3703
|
* @type {Array<number>}
|
|
3692
|
-
* @memberof
|
|
3704
|
+
* @memberof NanValueErrorNanValue
|
|
3693
3705
|
*/
|
|
3694
3706
|
'joint_position'?: Array<number>;
|
|
3695
3707
|
}
|
|
@@ -3931,7 +3943,7 @@ interface PauseJoggingRequest {
|
|
|
3931
3943
|
* @type {string}
|
|
3932
3944
|
* @memberof PauseJoggingRequest
|
|
3933
3945
|
*/
|
|
3934
|
-
'message_type'
|
|
3946
|
+
'message_type': PauseJoggingRequestMessageTypeEnum;
|
|
3935
3947
|
}
|
|
3936
3948
|
declare const PauseJoggingRequestMessageTypeEnum: {
|
|
3937
3949
|
readonly PauseJoggingRequest: "PauseJoggingRequest";
|
|
@@ -3971,7 +3983,7 @@ interface PauseMovementRequest {
|
|
|
3971
3983
|
* @type {string}
|
|
3972
3984
|
* @memberof PauseMovementRequest
|
|
3973
3985
|
*/
|
|
3974
|
-
'message_type'
|
|
3986
|
+
'message_type': PauseMovementRequestMessageTypeEnum;
|
|
3975
3987
|
}
|
|
3976
3988
|
declare const PauseMovementRequestMessageTypeEnum: {
|
|
3977
3989
|
readonly PauseMovementRequest: "PauseMovementRequest";
|
|
@@ -4248,13 +4260,7 @@ interface PlanValidationError {
|
|
|
4248
4260
|
* Optional data further specifying the validation error.
|
|
4249
4261
|
* @export
|
|
4250
4262
|
*/
|
|
4251
|
-
type PlanValidationErrorAllOfData =
|
|
4252
|
-
error_feedback_name: 'ErrorInvalidJointCount';
|
|
4253
|
-
} & ErrorInvalidJointCount | {
|
|
4254
|
-
error_feedback_name: 'ErrorJointLimitExceeded';
|
|
4255
|
-
} & ErrorJointLimitExceeded | {
|
|
4256
|
-
error_feedback_name: 'ErrorJointPositionCollision';
|
|
4257
|
-
} & ErrorJointPositionCollision;
|
|
4263
|
+
type PlanValidationErrorAllOfData = ErrorInvalidJointCount | ErrorJointLimitExceeded | ErrorJointPositionCollision;
|
|
4258
4264
|
/**
|
|
4259
4265
|
* Defines an x/y-plane with infinite size.
|
|
4260
4266
|
* @export
|
|
@@ -4283,7 +4289,7 @@ interface PlaybackSpeedRequest {
|
|
|
4283
4289
|
* @type {string}
|
|
4284
4290
|
* @memberof PlaybackSpeedRequest
|
|
4285
4291
|
*/
|
|
4286
|
-
'message_type'
|
|
4292
|
+
'message_type': PlaybackSpeedRequestMessageTypeEnum;
|
|
4287
4293
|
/**
|
|
4288
4294
|
* Sets velocity for executed movements of the trajectory, in percent. 100% means that the motion group moves as fast as possible without violating any planning and motion group limits. Setting this value does not affect the overall shape of the velocity profile. The velocity profile of the trajectory is scaled down by the same factor. Therefore, this should only be used for teaching and trajectory evaluation purposes. To maintain a specific velocity, set the respective limits when planning the trajectory.
|
|
4289
4295
|
* @type {number}
|
|
@@ -4713,7 +4719,7 @@ interface ProgramStartRequest {
|
|
|
4713
4719
|
*/
|
|
4714
4720
|
interface RRTConnectAlgorithm {
|
|
4715
4721
|
/**
|
|
4716
|
-
* Algorithm discriminator. RRT Connect algorithm configuration for collision-free path planning. Rapidly-exploring Random Trees (RRT) builds trees of valid configurations by randomly sampling the joint space and connecting feasible points with JointPTP motions. RRT Connect grows two trees simultaneously from start and target positions until they meet. This is a custom implementation optimized for manipulator kinematics and collision checking in industrial contexts.
|
|
4722
|
+
* Algorithm discriminator. RRT Connect algorithm configuration for collision-free path planning. Rapidly-exploring Random Trees (RRT) builds trees of valid configurations by randomly sampling the joint space and connecting feasible points with JointPTP motions. RRT Connect grows two trees simultaneously from start and target positions until they meet. This is a custom implementation optimized for manipulator kinematics and collision checking in industrial contexts.
|
|
4717
4723
|
* @type {string}
|
|
4718
4724
|
* @memberof RRTConnectAlgorithm
|
|
4719
4725
|
*/
|
|
@@ -5211,7 +5217,7 @@ interface StartMovementRequest {
|
|
|
5211
5217
|
* @type {string}
|
|
5212
5218
|
* @memberof StartMovementRequest
|
|
5213
5219
|
*/
|
|
5214
|
-
'message_type'
|
|
5220
|
+
'message_type': StartMovementRequestMessageTypeEnum;
|
|
5215
5221
|
/**
|
|
5216
5222
|
*
|
|
5217
5223
|
* @type {Direction}
|
|
@@ -5342,13 +5348,13 @@ interface TcpOffset {
|
|
|
5342
5348
|
/**
|
|
5343
5349
|
* Requested motion group requires TCP to be defined.
|
|
5344
5350
|
* @export
|
|
5345
|
-
* @interface
|
|
5351
|
+
* @interface TcpRequiredError
|
|
5346
5352
|
*/
|
|
5347
|
-
interface
|
|
5353
|
+
interface TcpRequiredError {
|
|
5348
5354
|
/**
|
|
5349
5355
|
*
|
|
5350
5356
|
* @type {any}
|
|
5351
|
-
* @memberof
|
|
5357
|
+
* @memberof TcpRequiredError
|
|
5352
5358
|
*/
|
|
5353
5359
|
'tcp_missing'?: any;
|
|
5354
5360
|
}
|
|
@@ -5363,7 +5369,7 @@ interface TcpVelocityRequest {
|
|
|
5363
5369
|
* @type {string}
|
|
5364
5370
|
* @memberof TcpVelocityRequest
|
|
5365
5371
|
*/
|
|
5366
|
-
'message_type'
|
|
5372
|
+
'message_type': TcpVelocityRequestMessageTypeEnum;
|
|
5367
5373
|
/**
|
|
5368
5374
|
* A three-dimensional vector [x, y, z] with double precision.
|
|
5369
5375
|
* @type {Array<number>}
|
|
@@ -5413,32 +5419,32 @@ type TcpVelocityResponseKindEnum = typeof TcpVelocityResponseKindEnum[keyof type
|
|
|
5413
5419
|
/**
|
|
5414
5420
|
*
|
|
5415
5421
|
* @export
|
|
5416
|
-
* @interface
|
|
5422
|
+
* @interface TorqueExceededError
|
|
5417
5423
|
*/
|
|
5418
|
-
interface
|
|
5424
|
+
interface TorqueExceededError {
|
|
5419
5425
|
/**
|
|
5420
5426
|
*
|
|
5421
|
-
* @type {
|
|
5422
|
-
* @memberof
|
|
5427
|
+
* @type {TorqueExceededErrorTorqueExceeded}
|
|
5428
|
+
* @memberof TorqueExceededError
|
|
5423
5429
|
*/
|
|
5424
|
-
'torque_exceeded'?:
|
|
5430
|
+
'torque_exceeded'?: TorqueExceededErrorTorqueExceeded;
|
|
5425
5431
|
}
|
|
5426
5432
|
/**
|
|
5427
5433
|
*
|
|
5428
5434
|
* @export
|
|
5429
|
-
* @interface
|
|
5435
|
+
* @interface TorqueExceededErrorTorqueExceeded
|
|
5430
5436
|
*/
|
|
5431
|
-
interface
|
|
5437
|
+
interface TorqueExceededErrorTorqueExceeded {
|
|
5432
5438
|
/**
|
|
5433
5439
|
* The torque value that was exceeded.
|
|
5434
5440
|
* @type {number}
|
|
5435
|
-
* @memberof
|
|
5441
|
+
* @memberof TorqueExceededErrorTorqueExceeded
|
|
5436
5442
|
*/
|
|
5437
5443
|
'torque_value'?: number;
|
|
5438
5444
|
/**
|
|
5439
5445
|
* The value of the torque limit that was exceeded.
|
|
5440
5446
|
* @type {number}
|
|
5441
|
-
* @memberof
|
|
5447
|
+
* @memberof TorqueExceededErrorTorqueExceeded
|
|
5442
5448
|
*/
|
|
5443
5449
|
'torque_limit'?: number;
|
|
5444
5450
|
}
|
|
@@ -5670,7 +5676,7 @@ interface UniversalrobotsController {
|
|
|
5670
5676
|
* @type {string}
|
|
5671
5677
|
* @memberof UniversalrobotsController
|
|
5672
5678
|
*/
|
|
5673
|
-
'kind'
|
|
5679
|
+
'kind': UniversalrobotsControllerKindEnum;
|
|
5674
5680
|
/**
|
|
5675
5681
|
*
|
|
5676
5682
|
* @type {string}
|
|
@@ -5769,7 +5775,7 @@ interface VirtualController {
|
|
|
5769
5775
|
* @type {string}
|
|
5770
5776
|
* @memberof VirtualController
|
|
5771
5777
|
*/
|
|
5772
|
-
'kind'
|
|
5778
|
+
'kind': VirtualControllerKindEnum;
|
|
5773
5779
|
/**
|
|
5774
5780
|
*
|
|
5775
5781
|
* @type {Manufacturer}
|
|
@@ -5969,7 +5975,7 @@ interface YaskawaController {
|
|
|
5969
5975
|
* @type {string}
|
|
5970
5976
|
* @memberof YaskawaController
|
|
5971
5977
|
*/
|
|
5972
|
-
'kind'
|
|
5978
|
+
'kind': YaskawaControllerKindEnum;
|
|
5973
5979
|
/**
|
|
5974
5980
|
*
|
|
5975
5981
|
* @type {string}
|
|
@@ -6501,7 +6507,7 @@ declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
|
|
|
6501
6507
|
* @param {*} [options] Override http request option.
|
|
6502
6508
|
* @throws {RequiredError}
|
|
6503
6509
|
*/
|
|
6504
|
-
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
6510
|
+
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BusIODescription>>>;
|
|
6505
6511
|
/**
|
|
6506
6512
|
* List descriptions for all configured input/output variables of the MODBUS service. The input/output descriptions contain information like name, type and address. The input/output direction is given in perspective of the active MODBUS type (service or client). - The byte and bit addresses are the locations in the MODBUS input/output process image the variable points to. - The MODBUS controller as well as NOVA\'s MODBUS service use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA MODBUS service\'s configuration is modified via [addModbusIO](addModbusIO).
|
|
6507
6513
|
* @summary List MODBUS Input/Output Configuration
|
|
@@ -6649,7 +6655,7 @@ declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePa
|
|
|
6649
6655
|
* @param {*} [options] Override http request option.
|
|
6650
6656
|
* @throws {RequiredError}
|
|
6651
6657
|
*/
|
|
6652
|
-
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
6658
|
+
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<BusIODescription>>;
|
|
6653
6659
|
/**
|
|
6654
6660
|
* List descriptions for all configured input/output variables of the MODBUS service. The input/output descriptions contain information like name, type and address. The input/output direction is given in perspective of the active MODBUS type (service or client). - The byte and bit addresses are the locations in the MODBUS input/output process image the variable points to. - The MODBUS controller as well as NOVA\'s MODBUS service use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA MODBUS service\'s configuration is modified via [addModbusIO](addModbusIO).
|
|
6655
6661
|
* @summary List MODBUS Input/Output Configuration
|
|
@@ -6811,7 +6817,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
6811
6817
|
* @throws {RequiredError}
|
|
6812
6818
|
* @memberof BUSInputsOutputsApi
|
|
6813
6819
|
*/
|
|
6814
|
-
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<
|
|
6820
|
+
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIODescription[], any>>;
|
|
6815
6821
|
/**
|
|
6816
6822
|
* List descriptions for all configured input/output variables of the MODBUS service. The input/output descriptions contain information like name, type and address. The input/output direction is given in perspective of the active MODBUS type (service or client). - The byte and bit addresses are the locations in the MODBUS input/output process image the variable points to. - The MODBUS controller as well as NOVA\'s MODBUS service use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA MODBUS service\'s configuration is modified via [addModbusIO](addModbusIO).
|
|
6817
6823
|
* @summary List MODBUS Input/Output Configuration
|
|
@@ -11511,4 +11517,4 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
11511
11517
|
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
11512
11518
|
}
|
|
11513
11519
|
//#endregion
|
|
11514
|
-
export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BooleanValue, BooleanValueValueTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, Capsule, CapsuleShapeTypeEnum, CartesianLimits, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, Collider, ColliderShape, Collision, CollisionContact, CollisionError, CollisionFreeAlgorithm, CollisionSetup, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, Flag, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum,
|
|
11520
|
+
export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BooleanValue, BooleanValueValueTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIODescription, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, Capsule, CapsuleShapeTypeEnum, CartesianLimits, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, Collider, ColliderShape, Collision, CollisionContact, CollisionError, CollisionFreeAlgorithm, CollisionSetup, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, Flag, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetTrajectoryResponse, HTTPValidationError, IOBooleanValue, IOBooleanValueValueTypeEnum, IOBoundary, IODescription, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsistentTrajectorySizeError, InconsistentTrajectorySizeErrorInconsistentTrajectorySize, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimits, JointTrajectory, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, ListTrajectoriesResponse, Manufacturer, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupDescription, MotionGroupInfo, MotionGroupJoints, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, NanValueError, NanValueErrorNanValue, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotController, RobotControllerConfiguration, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyStateType, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SetIO, SettableRobotSystemMode, SingularityTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequiredError, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, TorqueExceededError, TorqueExceededErrorTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateNovaVersionRequest, ValidationError, ValidationError2, ValidationErrorLocInner, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualControllerTypes, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, operationServerMap };
|