@wandelbots/nova-api 26.2.0-dev.60 → 26.2.0-dev.62
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/v1/index.d.cts +178 -178
- package/dist/v1/index.d.ts +178 -178
- package/dist/v2/index.cjs +49 -0
- package/dist/v2/index.d.cts +251 -145
- package/dist/v2/index.d.ts +251 -145
- package/dist/v2/index.js +49 -0
- package/package.json +1 -1
package/dist/v2/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as axios0 from "axios";
|
|
2
2
|
import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
3
3
|
|
|
4
4
|
//#region v2/configuration.d.ts
|
|
@@ -1776,6 +1776,72 @@ declare const Manufacturer: {
|
|
|
1776
1776
|
readonly Yaskawa: "yaskawa";
|
|
1777
1777
|
};
|
|
1778
1778
|
type Manufacturer = typeof Manufacturer[keyof typeof Manufacturer];
|
|
1779
|
+
interface MergeTrajectories422Response {
|
|
1780
|
+
'detail'?: Array<MergeTrajectoriesValidationError>;
|
|
1781
|
+
}
|
|
1782
|
+
interface MergeTrajectoriesError {
|
|
1783
|
+
'error_feedback': PlanTrajectoryFailedResponseErrorFeedback;
|
|
1784
|
+
/**
|
|
1785
|
+
* - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
|
|
1786
|
+
*/
|
|
1787
|
+
'error_location_on_trajectory': number;
|
|
1788
|
+
}
|
|
1789
|
+
interface MergeTrajectoriesRequest {
|
|
1790
|
+
/**
|
|
1791
|
+
* The motion group setup required for collision checking and timescaling.
|
|
1792
|
+
*/
|
|
1793
|
+
'motion_group_setup': MotionGroupSetup;
|
|
1794
|
+
/**
|
|
1795
|
+
* List of trajectory segments to merge together. Each segment contains a trajectory with its own limits override, blending configuration and collision setup.
|
|
1796
|
+
*/
|
|
1797
|
+
'trajectory_segments': Array<MergeTrajectoriesSegment>;
|
|
1798
|
+
}
|
|
1799
|
+
interface MergeTrajectoriesResponse {
|
|
1800
|
+
/**
|
|
1801
|
+
* The merged joint trajectory. If a blending was requested on a segment but could not be applied, the trajectory is merged without blending. The feedback will contain further information on why blending could not be applied.
|
|
1802
|
+
*/
|
|
1803
|
+
'joint_trajectory'?: JointTrajectory;
|
|
1804
|
+
/**
|
|
1805
|
+
* For each blending, feedback will either contain the section in which the trajectory deviates from the original path, or an error message stating why blending could not be applied. The response will include `trajectory_segments` - 1 elements. If no blending was requested at the corresponding segment, the feedback will be a null section where `start_location == end_location`.
|
|
1806
|
+
*/
|
|
1807
|
+
'feedback'?: Array<MergeTrajectoriesResponseFeedbackInner>;
|
|
1808
|
+
}
|
|
1809
|
+
/**
|
|
1810
|
+
* @type MergeTrajectoriesResponseFeedbackInner
|
|
1811
|
+
*/
|
|
1812
|
+
type MergeTrajectoriesResponseFeedbackInner = MergeTrajectoriesError | TrajectorySection;
|
|
1813
|
+
interface MergeTrajectoriesSegment {
|
|
1814
|
+
/**
|
|
1815
|
+
* The trajectory segment to merge. Both the time and location arrays must start at 0 and be strictly increasing.
|
|
1816
|
+
*/
|
|
1817
|
+
'trajectory': JointTrajectory;
|
|
1818
|
+
/**
|
|
1819
|
+
* Limits override is used to override the global limits of the motion group for the blending at the end of this segment.
|
|
1820
|
+
*/
|
|
1821
|
+
'limits_override'?: LimitsOverride;
|
|
1822
|
+
/**
|
|
1823
|
+
* Blending configuration for merging this trajectory segment with the next one. Specifies how the end of this trajectory should be blended with the start of the next trajectory. Ignored for the last segment.
|
|
1824
|
+
*/
|
|
1825
|
+
'blending'?: BlendingPosition;
|
|
1826
|
+
/**
|
|
1827
|
+
* Collision layers to be respected by the motion planner when planning for a single motion group. Each setup represents one layer, e.g., the safety zones and shapes or a fine grained tool and workpiece model. Layers are checked individually along the trajectory and independently of other layers. To respect the safety zones of the controller and check for collision: 1. Fetch the safety zones, link and tool shapes from the controller. 2. Add the fetched zones, links and tools to a layer. 3. Create other layers from your own 3D data as needed. 4. Plan trajectory. 5. The response highlights the layer in which a collision was detected by key.
|
|
1828
|
+
*/
|
|
1829
|
+
'collision_setups'?: {
|
|
1830
|
+
[key: string]: CollisionSetup;
|
|
1831
|
+
};
|
|
1832
|
+
}
|
|
1833
|
+
interface MergeTrajectoriesValidationError {
|
|
1834
|
+
'loc': Array<ValidationErrorLocInner>;
|
|
1835
|
+
'msg': string;
|
|
1836
|
+
'type': string;
|
|
1837
|
+
'input': {
|
|
1838
|
+
[key: string]: any;
|
|
1839
|
+
};
|
|
1840
|
+
/**
|
|
1841
|
+
* Optional data further specifying the merge validation error.
|
|
1842
|
+
*/
|
|
1843
|
+
'data'?: ErrorInvalidJointCount;
|
|
1844
|
+
}
|
|
1779
1845
|
interface MidpointInsertionAlgorithm {
|
|
1780
1846
|
/**
|
|
1781
1847
|
* 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.
|
|
@@ -3295,6 +3361,10 @@ declare const TrajectoryRunningKindEnum: {
|
|
|
3295
3361
|
readonly Running: "RUNNING";
|
|
3296
3362
|
};
|
|
3297
3363
|
type TrajectoryRunningKindEnum = typeof TrajectoryRunningKindEnum[keyof typeof TrajectoryRunningKindEnum];
|
|
3364
|
+
interface TrajectorySection {
|
|
3365
|
+
'start_location': number;
|
|
3366
|
+
'end_location': number;
|
|
3367
|
+
}
|
|
3298
3368
|
/**
|
|
3299
3369
|
* Waiting for an I/O event to start execution.
|
|
3300
3370
|
*/
|
|
@@ -3621,7 +3691,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
3621
3691
|
* @param {*} [options] Override http request option.
|
|
3622
3692
|
* @throws {RequiredError}
|
|
3623
3693
|
*/
|
|
3624
|
-
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
3694
|
+
addApp(cell: string, app: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
3625
3695
|
/**
|
|
3626
3696
|
* Delete all GUI applications from the cell.
|
|
3627
3697
|
* @summary Clear Applications
|
|
@@ -3630,7 +3700,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
3630
3700
|
* @param {*} [options] Override http request option.
|
|
3631
3701
|
* @throws {RequiredError}
|
|
3632
3702
|
*/
|
|
3633
|
-
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
3703
|
+
clearApps(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
3634
3704
|
/**
|
|
3635
3705
|
* Delete a GUI application from the cell.
|
|
3636
3706
|
* @summary Delete Application
|
|
@@ -3640,7 +3710,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
3640
3710
|
* @param {*} [options] Override http request option.
|
|
3641
3711
|
* @throws {RequiredError}
|
|
3642
3712
|
*/
|
|
3643
|
-
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
3713
|
+
deleteApp(cell: string, app: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
3644
3714
|
/**
|
|
3645
3715
|
* Get the configuration for an active GUI application in the cell. To update the configuration of a GUI application in the cell, use this configuration with [updateApp](#/operations/updateApp).
|
|
3646
3716
|
* @summary Configuration
|
|
@@ -3649,7 +3719,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
3649
3719
|
* @param {*} [options] Override http request option.
|
|
3650
3720
|
* @throws {RequiredError}
|
|
3651
3721
|
*/
|
|
3652
|
-
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<
|
|
3722
|
+
getApp(cell: string, app: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<App, any>>;
|
|
3653
3723
|
/**
|
|
3654
3724
|
* List all GUI applications that have been added to a cell with [addApp](#/operations/addApp). If the cell does not contain GUI applications, the list is returned empty.
|
|
3655
3725
|
* @summary List Applications
|
|
@@ -3657,7 +3727,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
3657
3727
|
* @param {*} [options] Override http request option.
|
|
3658
3728
|
* @throws {RequiredError}
|
|
3659
3729
|
*/
|
|
3660
|
-
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
3730
|
+
listApps(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
3661
3731
|
/**
|
|
3662
3732
|
* Update the configuration of a GUI application in the cell.
|
|
3663
3733
|
* @summary Update Configuration
|
|
@@ -3668,7 +3738,7 @@ declare class ApplicationApi extends BaseAPI {
|
|
|
3668
3738
|
* @param {*} [options] Override http request option.
|
|
3669
3739
|
* @throws {RequiredError}
|
|
3670
3740
|
*/
|
|
3671
|
-
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
3741
|
+
updateApp(cell: string, app: string, app2: App, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
3672
3742
|
}
|
|
3673
3743
|
/**
|
|
3674
3744
|
* BUSInputsOutputsApi - axios parameter creator
|
|
@@ -4172,7 +4242,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4172
4242
|
* @param {*} [options] Override http request option.
|
|
4173
4243
|
* @throws {RequiredError}
|
|
4174
4244
|
*/
|
|
4175
|
-
addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4245
|
+
addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4176
4246
|
/**
|
|
4177
4247
|
* Adds an input/output variable to or updates an input/output variable on the MODBUS device, e.g., NOVA\'s MODBUS service. The inputs/outputs map variables to specific memory addresses in the process image. The NOVA\'s MODBUS service\'s configuration can be viewed via [listModbusIOs](#/operations/listModbusIOs).
|
|
4178
4248
|
* @summary Add MODBUS Input/Output
|
|
@@ -4182,7 +4252,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4182
4252
|
* @param {*} [options] Override http request option.
|
|
4183
4253
|
* @throws {RequiredError}
|
|
4184
4254
|
*/
|
|
4185
|
-
addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<
|
|
4255
|
+
addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4186
4256
|
/**
|
|
4187
4257
|
* Adds an input/output variable to or updates an input/output variable on the PROFINET device, e.g., NOVA\'s PROFINET service. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. - The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](#/operations/addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. - The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](#/operations/listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal).
|
|
4188
4258
|
* @summary Add PROFINET Input/Output
|
|
@@ -4192,7 +4262,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4192
4262
|
* @param {*} [options] Override http request option.
|
|
4193
4263
|
* @throws {RequiredError}
|
|
4194
4264
|
*/
|
|
4195
|
-
addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<
|
|
4265
|
+
addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4196
4266
|
/**
|
|
4197
4267
|
* Remove the BUS inputs/outputs service from the cell.
|
|
4198
4268
|
* @summary Clear Service
|
|
@@ -4201,7 +4271,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4201
4271
|
* @param {*} [options] Override http request option.
|
|
4202
4272
|
* @throws {RequiredError}
|
|
4203
4273
|
*/
|
|
4204
|
-
clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4274
|
+
clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4205
4275
|
/**
|
|
4206
4276
|
* Removes all input/output variable configurations from the MODBUS device, e.g., NOVA\'s MODBUS service.
|
|
4207
4277
|
* @summary Remove all MODBUS Input/Outputs
|
|
@@ -4209,7 +4279,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4209
4279
|
* @param {*} [options] Override http request option.
|
|
4210
4280
|
* @throws {RequiredError}
|
|
4211
4281
|
*/
|
|
4212
|
-
deleteAllModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4282
|
+
deleteAllModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4213
4283
|
/**
|
|
4214
4284
|
* Removes all input/output variable configurations from the PROFINET device, e.g., NOVA\'s PROFINET service.
|
|
4215
4285
|
* @summary Remove all PROFINET Input/Outputs
|
|
@@ -4217,7 +4287,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4217
4287
|
* @param {*} [options] Override http request option.
|
|
4218
4288
|
* @throws {RequiredError}
|
|
4219
4289
|
*/
|
|
4220
|
-
deleteAllProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4290
|
+
deleteAllProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4221
4291
|
/**
|
|
4222
4292
|
* Removes an input/output variable configuration from the MODBUS device, e.g., NOVA\'s MODBUS service.
|
|
4223
4293
|
* @summary Remove MODBUS Input/Output
|
|
@@ -4226,7 +4296,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4226
4296
|
* @param {*} [options] Override http request option.
|
|
4227
4297
|
* @throws {RequiredError}
|
|
4228
4298
|
*/
|
|
4229
|
-
deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<
|
|
4299
|
+
deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4230
4300
|
/**
|
|
4231
4301
|
* Removes an input/output variable configuration from the PROFINET device, e.g., NOVA\'s PROFINET service.
|
|
4232
4302
|
* @summary Remove PROFINET Input/Ouptut
|
|
@@ -4235,7 +4305,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4235
4305
|
* @param {*} [options] Override http request option.
|
|
4236
4306
|
* @throws {RequiredError}
|
|
4237
4307
|
*/
|
|
4238
|
-
deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<
|
|
4308
|
+
deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4239
4309
|
/**
|
|
4240
4310
|
* Get deployed BUS inputs/outputs service.
|
|
4241
4311
|
* @summary Get Service
|
|
@@ -4243,7 +4313,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4243
4313
|
* @param {*} [options] Override http request option.
|
|
4244
4314
|
* @throws {RequiredError}
|
|
4245
4315
|
*/
|
|
4246
|
-
getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4316
|
+
getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOType, any>>;
|
|
4247
4317
|
/**
|
|
4248
4318
|
* Get the current state of the BUS Inputs/Outputs service.
|
|
4249
4319
|
* @summary State
|
|
@@ -4251,7 +4321,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4251
4321
|
* @param {*} [options] Override http request option.
|
|
4252
4322
|
* @throws {RequiredError}
|
|
4253
4323
|
*/
|
|
4254
|
-
getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4324
|
+
getBusIOState(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIOsState, any>>;
|
|
4255
4325
|
/**
|
|
4256
4326
|
* Retrieves the current values of inputs/outputs. The identifiers of the inputs/outputs must be provided in the request. Request all available input/output identifiers via [listBusIODescriptions](#/operations/listBusIODescriptions).
|
|
4257
4327
|
* @summary Get Input/Output Values
|
|
@@ -4260,7 +4330,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4260
4330
|
* @param {*} [options] Override http request option.
|
|
4261
4331
|
* @throws {RequiredError}
|
|
4262
4332
|
*/
|
|
4263
|
-
getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
4333
|
+
getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
|
|
4264
4334
|
/**
|
|
4265
4335
|
* Get description of NOVA as a PROFINET device.
|
|
4266
4336
|
* @summary Get PROFINET Description
|
|
@@ -4268,7 +4338,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4268
4338
|
* @param {*} [options] Override http request option.
|
|
4269
4339
|
* @throws {RequiredError}
|
|
4270
4340
|
*/
|
|
4271
|
-
getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4341
|
+
getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetDescription, any>>;
|
|
4272
4342
|
/**
|
|
4273
4343
|
* Get input/output variable configuration of the PROFINET device, e.g., NOVA\'s PROFINET service as file. You can specify byte offsets for the input and output variable addresses to get an XML tagmap that is ready to paste to the third party software, e.g., TIA portal.
|
|
4274
4344
|
* @summary PROFINET Inputs/Outputs to File
|
|
@@ -4278,7 +4348,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4278
4348
|
* @param {*} [options] Override http request option.
|
|
4279
4349
|
* @throws {RequiredError}
|
|
4280
4350
|
*/
|
|
4281
|
-
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4351
|
+
getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
|
|
4282
4352
|
/**
|
|
4283
4353
|
* List all input/output descriptions for configured BUS services. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the BUS service.
|
|
4284
4354
|
* @summary List Descriptions
|
|
@@ -4286,7 +4356,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4286
4356
|
* @param {*} [options] Override http request option.
|
|
4287
4357
|
* @throws {RequiredError}
|
|
4288
4358
|
*/
|
|
4289
|
-
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4359
|
+
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<BusIODescription[], any>>;
|
|
4290
4360
|
/**
|
|
4291
4361
|
* 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](#/operations/addModbusIO).
|
|
4292
4362
|
* @summary List MODBUS Input/Output Configuration
|
|
@@ -4294,7 +4364,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4294
4364
|
* @param {*} [options] Override http request option.
|
|
4295
4365
|
* @throws {RequiredError}
|
|
4296
4366
|
*/
|
|
4297
|
-
listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4367
|
+
listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ModbusIO[], any>>;
|
|
4298
4368
|
/**
|
|
4299
4369
|
* List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information like name, type, and unit. The input/output direction is given in perspective of the PROFINET device, e.g., the configured PROFINET service. - The byte and bit addresses are the locations in the PROFINET input/output process image the variable points to. - The PROFINET controller, as well as NOVA\'s PROFINET service, use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA PROFINET service\'s configuration is modified via [addProfinetIO](#/operations/addProfinetIO) and [setProfinetIOsFromFile](#/operations/setProfinetIOsFromFile). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal.
|
|
4300
4370
|
* @summary List PROFINET Input/Output Configuration
|
|
@@ -4302,7 +4372,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4302
4372
|
* @param {*} [options] Override http request option.
|
|
4303
4373
|
* @throws {RequiredError}
|
|
4304
4374
|
*/
|
|
4305
|
-
listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4375
|
+
listProfinetIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProfinetIO[], any>>;
|
|
4306
4376
|
/**
|
|
4307
4377
|
* Set values of outputs. In case of virtual Bus Input/Outputs, also inputs can be set. All available output identifiers can be requested via [listBusIODescriptions](#/operations/listBusIODescriptions). The call will return once the values have been set and accepted by the service.
|
|
4308
4378
|
* @summary Set Output Values
|
|
@@ -4311,7 +4381,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4311
4381
|
* @param {*} [options] Override http request option.
|
|
4312
4382
|
* @throws {RequiredError}
|
|
4313
4383
|
*/
|
|
4314
|
-
setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
4384
|
+
setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4315
4385
|
/**
|
|
4316
4386
|
* Sets input/output variable configuration on the PROFINET device (i.e. NOVA\'s PROFINET service) from XML file. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. - The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](#/operations/addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller, as well as NOVA\'s PROFINET service, use an input/output variable configuration to interpret the bits of the input/output process image. - The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](#/operations/listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding engineering system, e.g., TIA portal. #### Export variables You can export the variable configuration of the PROFINET controller as an XML file from your engineering system, e.g., TIA portal. - The endpoint is built so that the perspective of input and output (PROFINET Device\'s input is PROFINET Controller\'s output) is internally handled (PROFINET device input is PROFINET controller output), meaning that you can paste the exported XML file here without modifying.
|
|
4317
4387
|
* @summary Set PROFINET Inputs/Outputs from File
|
|
@@ -4320,7 +4390,7 @@ declare class BUSInputsOutputsApi extends BaseAPI {
|
|
|
4320
4390
|
* @param {*} [options] Override http request option.
|
|
4321
4391
|
* @throws {RequiredError}
|
|
4322
4392
|
*/
|
|
4323
|
-
setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<
|
|
4393
|
+
setProfinetIOsFromFile(cell: string, profinetInputOutputConfig: ProfinetInputOutputConfig, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4324
4394
|
}
|
|
4325
4395
|
/**
|
|
4326
4396
|
* CellApi - axios parameter creator
|
|
@@ -4583,7 +4653,7 @@ declare class CellApi extends BaseAPI {
|
|
|
4583
4653
|
* @param {*} [options] Override http request option.
|
|
4584
4654
|
* @throws {RequiredError}
|
|
4585
4655
|
*/
|
|
4586
|
-
checkCellVersionUpdate(cell: string, channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<
|
|
4656
|
+
checkCellVersionUpdate(cell: string, channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
|
|
4587
4657
|
/**
|
|
4588
4658
|
* Delete an entire cell.
|
|
4589
4659
|
* @summary Delete Cell
|
|
@@ -4592,7 +4662,7 @@ declare class CellApi extends BaseAPI {
|
|
|
4592
4662
|
* @param {*} [options] Override http request option.
|
|
4593
4663
|
* @throws {RequiredError}
|
|
4594
4664
|
*/
|
|
4595
|
-
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4665
|
+
deleteCell(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4596
4666
|
/**
|
|
4597
4667
|
* Deploy an entire cell with all its resources. A cell can be used to deploy a robot controller, one or more robots, as well as custom applications. Refer to the [Wandelbots NOVA documentation](https://docs.wandelbots.io/latest/setup-cell) for more information.
|
|
4598
4668
|
* @summary Add Cell
|
|
@@ -4601,7 +4671,7 @@ declare class CellApi extends BaseAPI {
|
|
|
4601
4671
|
* @param {*} [options] Override http request option.
|
|
4602
4672
|
* @throws {RequiredError}
|
|
4603
4673
|
*/
|
|
4604
|
-
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4674
|
+
deployCell(cell: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4605
4675
|
/**
|
|
4606
4676
|
* List all cell resources.
|
|
4607
4677
|
* @summary Configuration
|
|
@@ -4609,7 +4679,7 @@ declare class CellApi extends BaseAPI {
|
|
|
4609
4679
|
* @param {*} [options] Override http request option.
|
|
4610
4680
|
* @throws {RequiredError}
|
|
4611
4681
|
*/
|
|
4612
|
-
getCell(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4682
|
+
getCell(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Cell, any>>;
|
|
4613
4683
|
/**
|
|
4614
4684
|
* List the status of all cell resources.
|
|
4615
4685
|
* @summary Service Status
|
|
@@ -4617,14 +4687,14 @@ declare class CellApi extends BaseAPI {
|
|
|
4617
4687
|
* @param {*} [options] Override http request option.
|
|
4618
4688
|
* @throws {RequiredError}
|
|
4619
4689
|
*/
|
|
4620
|
-
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
4690
|
+
getCellStatus(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatusResponse, any>>;
|
|
4621
4691
|
/**
|
|
4622
4692
|
* List all deployed cell names. If no cells are deployed, an empty list is returned.
|
|
4623
4693
|
* @summary List Cells
|
|
4624
4694
|
* @param {*} [options] Override http request option.
|
|
4625
4695
|
* @throws {RequiredError}
|
|
4626
4696
|
*/
|
|
4627
|
-
listCells(options?: RawAxiosRequestConfig): Promise<
|
|
4697
|
+
listCells(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
4628
4698
|
/**
|
|
4629
4699
|
* Deactivate or activate the services of a cell.
|
|
4630
4700
|
* @summary Operating State
|
|
@@ -4633,7 +4703,7 @@ declare class CellApi extends BaseAPI {
|
|
|
4633
4703
|
* @param {*} [options] Override http request option.
|
|
4634
4704
|
* @throws {RequiredError}
|
|
4635
4705
|
*/
|
|
4636
|
-
setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<
|
|
4706
|
+
setCellStatus(cell: string, operatingState: OperatingState, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4637
4707
|
/**
|
|
4638
4708
|
* Update the definition of the entire Cell.
|
|
4639
4709
|
* @summary Update Configuration
|
|
@@ -4643,7 +4713,7 @@ declare class CellApi extends BaseAPI {
|
|
|
4643
4713
|
* @param {*} [options] Override http request option.
|
|
4644
4714
|
* @throws {RequiredError}
|
|
4645
4715
|
*/
|
|
4646
|
-
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
4716
|
+
updateCell(cell: string, cell2: Cell, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4647
4717
|
/**
|
|
4648
4718
|
* Update the Foundation chart version for a single cell based on a release channel. The resulting version is capped at the current system version.
|
|
4649
4719
|
* @summary Update Cell Version
|
|
@@ -4652,7 +4722,7 @@ declare class CellApi extends BaseAPI {
|
|
|
4652
4722
|
* @param {*} [options] Override http request option.
|
|
4653
4723
|
* @throws {RequiredError}
|
|
4654
4724
|
*/
|
|
4655
|
-
updateCellVersion(cell: string, updateCellVersionRequest: UpdateCellVersionRequest, options?: RawAxiosRequestConfig): Promise<
|
|
4725
|
+
updateCellVersion(cell: string, updateCellVersionRequest: UpdateCellVersionRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
4656
4726
|
}
|
|
4657
4727
|
/**
|
|
4658
4728
|
* ControllerApi - axios parameter creator
|
|
@@ -5090,7 +5160,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
5090
5160
|
* @param {*} [options] Override http request option.
|
|
5091
5161
|
* @throws {RequiredError}
|
|
5092
5162
|
*/
|
|
5093
|
-
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
5163
|
+
addRobotController(cell: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
5094
5164
|
/**
|
|
5095
5165
|
* Delete all robot controllers from the cell. To replace all robot controllers in a cell, use this endpoint in combination with [addRobotController](#/operations/addRobotController).
|
|
5096
5166
|
* @summary Clear Robot Controllers
|
|
@@ -5099,7 +5169,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
5099
5169
|
* @param {*} [options] Override http request option.
|
|
5100
5170
|
* @throws {RequiredError}
|
|
5101
5171
|
*/
|
|
5102
|
-
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
5172
|
+
clearRobotControllers(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
5103
5173
|
/**
|
|
5104
5174
|
* Delete a robot controller from the cell.
|
|
5105
5175
|
* @summary Delete Robot Controller
|
|
@@ -5109,7 +5179,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
5109
5179
|
* @param {*} [options] Override http request option.
|
|
5110
5180
|
* @throws {RequiredError}
|
|
5111
5181
|
*/
|
|
5112
|
-
deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
5182
|
+
deleteRobotController(cell: string, controller: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
5113
5183
|
/**
|
|
5114
5184
|
* Get description of a configured robot controller including a list of connected motion group identifiers. Use [getMotionGroupDescription](#/operations/getMotionGroupDescription) to get more information about the motion group.
|
|
5115
5185
|
* @summary Description
|
|
@@ -5118,7 +5188,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
5118
5188
|
* @param {*} [options] Override http request option.
|
|
5119
5189
|
* @throws {RequiredError}
|
|
5120
5190
|
*/
|
|
5121
|
-
getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
5191
|
+
getControllerDescription(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ControllerDescription, any>>;
|
|
5122
5192
|
/**
|
|
5123
5193
|
* Request a coordinate system specification for a given identifier. Use parameter `orientation_type` to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter `orientation_type` is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with `On` + the unique identifier of the robot controller.
|
|
5124
5194
|
* @summary Coordinate System
|
|
@@ -5129,7 +5199,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
5129
5199
|
* @param {*} [options] Override http request option.
|
|
5130
5200
|
* @throws {RequiredError}
|
|
5131
5201
|
*/
|
|
5132
|
-
getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<
|
|
5202
|
+
getCoordinateSystem(cell: string, controller: string, coordinateSystem: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
|
|
5133
5203
|
/**
|
|
5134
5204
|
* Get the current state of a robot controller.
|
|
5135
5205
|
* @summary State
|
|
@@ -5138,7 +5208,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
5138
5208
|
* @param {*} [options] Override http request option.
|
|
5139
5209
|
* @throws {RequiredError}
|
|
5140
5210
|
*/
|
|
5141
|
-
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
5211
|
+
getCurrentRobotControllerState(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
|
|
5142
5212
|
/**
|
|
5143
5213
|
* Get the configuration for a robot controller.
|
|
5144
5214
|
* @summary Robot Controller
|
|
@@ -5147,7 +5217,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
5147
5217
|
* @param {*} [options] Override http request option.
|
|
5148
5218
|
* @throws {RequiredError}
|
|
5149
5219
|
*/
|
|
5150
|
-
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
5220
|
+
getRobotController(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotController, any>>;
|
|
5151
5221
|
/**
|
|
5152
5222
|
* Receive data to configure a virtual robot controller based on another controller. This can be used to create a virtual clone of a specific physical robot. When adding a virtual controller, use the Virtual configuration variant of [addRobotController](#/operations/addRobotController) and pass the content string from this endpoint as the `json` field. Omit the `type` field that selects a preset configuration, which is not required when providing a complete configuration.
|
|
5153
5223
|
* @summary Virtual Controller Configuration
|
|
@@ -5156,7 +5226,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
5156
5226
|
* @param {*} [options] Override http request option.
|
|
5157
5227
|
* @throws {RequiredError}
|
|
5158
5228
|
*/
|
|
5159
|
-
getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
5229
|
+
getVirtualControllerConfiguration(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<VirtualRobotConfiguration, any>>;
|
|
5160
5230
|
/**
|
|
5161
5231
|
* Lists all specifications of coordinate systems from robot controllers. Use parameter `orientation_type` to get the orientation part of the transformation offset of the coordinate system returned in the requested orientation notation. If parameter `orientation_type` is not set, the orientation part of the transformation offset of the coordinate system is returned in rotation vector notation. The coordinate systems from the robot controller are loaded when the motion group associated with the coordinate system is activated. With deactivation of the motion group, the associated coordinate systems are removed from NOVA. The unique identifier of the coordinate systems from the robot controllers are suffixed with `On` + the unique identifier of the robot controller.
|
|
5162
5232
|
* @summary List Coordinate Systems
|
|
@@ -5166,7 +5236,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
5166
5236
|
* @param {*} [options] Override http request option.
|
|
5167
5237
|
* @throws {RequiredError}
|
|
5168
5238
|
*/
|
|
5169
|
-
listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<
|
|
5239
|
+
listCoordinateSystems(cell: string, controller: string, orientationType?: OrientationType, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
|
|
5170
5240
|
/**
|
|
5171
5241
|
* List the names of all deployed robot controllers.
|
|
5172
5242
|
* @summary List Robot Controllers
|
|
@@ -5174,7 +5244,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
5174
5244
|
* @param {*} [options] Override http request option.
|
|
5175
5245
|
* @throws {RequiredError}
|
|
5176
5246
|
*/
|
|
5177
|
-
listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
5247
|
+
listRobotControllers(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
5178
5248
|
/**
|
|
5179
5249
|
* Switch between monitor and control usage as default for a robot controller. Monitoring mode is used to read information from the robot controller and control mode is used to command the robot system. As long as the robot controller is connected via network, monitoring mode is always possible. To switch to control mode the robot controller must be in `automatic` or `manual` operating mode and safety state `normal` or `reduced`. If the robot controller is in `manual` operating mode, you have to manually confirm the control usage activation on the robot control panel. This manual confirmation can\'t be replaced with this API. Without manual confirmation the robot controller will stay in monitor mode. The robot system will try to activate the required operation mode for the requested usage unless no active call requires a different mode. > **NOTE** > > `setDefaultMode` enables the robot controller to stay in control mode to keep the motors activated. > This allows for faster execution of sequential movements as no mode switches are required. > **NOTE** > > Some robot controllers prevent the external activation of automatic operating mode. In this case, changing the operating mode manually at the robot controller is mandatory. > **NOTE** > > The current operation mode and safety state can be requested via [getCurrentRobotControllerState](#/operations/getCurrentRobotControllerState). If a mode change is not possible, the response lists reasons for the failed change.
|
|
5180
5250
|
* @summary Set Default Mode
|
|
@@ -5184,7 +5254,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
5184
5254
|
* @param {*} [options] Override http request option.
|
|
5185
5255
|
* @throws {RequiredError}
|
|
5186
5256
|
*/
|
|
5187
|
-
setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<
|
|
5257
|
+
setDefaultMode(cell: string, controller: string, mode: SettableRobotSystemMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
5188
5258
|
/**
|
|
5189
5259
|
* <!-- theme: success --> > Websocket endpoint Sets the robot controller into freedrive mode and stays in freedrive until the websocket connection is closed by the client. In freedrive mode, it is possible to move the attached motion groups by hand. This is a blocking call. As long as the websocket connection is open, no other endpoint can control or move the robot. <!-- theme: danger --> > **DANGER** > > Danger caused by robot. Improper assessment by the integrator of the application-specific hazards can result in people being > crushed, drawn in or caught due to the robot\'s complex movement sequences. Before opening the websocket, ensure that > > - The robot is in a safe state, > - The right payload is set, > - No humans or object are within the robot\'s reach or within the cell. As long as the websocket connection is open you will get the current state of the robot system in the response in the specified `response_rate`. If the activation failed, the returned status will return possible reasons for the failure. Free drive mode is only available for robot controllers that support it, in particular cobots. Use [listRobotControllers](#/operations/listRobotControllers) to check if the robot controller supports free drive mode.
|
|
5190
5260
|
* @summary Stream Free Drive
|
|
@@ -5194,7 +5264,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
5194
5264
|
* @param {*} [options] Override http request option.
|
|
5195
5265
|
* @throws {RequiredError}
|
|
5196
5266
|
*/
|
|
5197
|
-
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<
|
|
5267
|
+
streamFreeDrive(cell: string, controller: string, responseRate?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
|
|
5198
5268
|
/**
|
|
5199
5269
|
* <!-- theme: success --> > Websocket endpoint Receive updates of the state of a robot controller. The stream can be opened before the controller is registered. To register a controller, call [addRobotController](#/operations/addRobotController). While connecting, the stream sends initialization updates. Once the controller reaches `MODE_MONITOR`, it sends controller state updates.
|
|
5200
5270
|
* @summary Stream State
|
|
@@ -5205,7 +5275,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
5205
5275
|
* @param {*} [options] Override http request option.
|
|
5206
5276
|
* @throws {RequiredError}
|
|
5207
5277
|
*/
|
|
5208
|
-
streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
5278
|
+
streamRobotControllerState(cell: string, controller: string, responseRate?: number, addControllerTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotControllerState, any>>;
|
|
5209
5279
|
/**
|
|
5210
5280
|
* Update the configuration of a robot controller. Reconfigure certain options of a robot controller, or deploy a specific container image of a robot controller. To update a virtual controller, the previous controller will be deleted and a new one created. Changes to the configuration, e.g., TCPs, coordinate systems, mounting, are **not** transferred to the new robot. <!-- theme: info --> > **NOTE** > > An update is not a reset. To do a reset: > 1. Get the current configuration via [getRobotController](#/operations/getRobotController). > 2. Delete the existing virtual robot controller via [deleteRobotController](#/operations/deleteRobotController). > 3. Add a virtual robot controller with [addRobotController](#/operations/addRobotController).
|
|
5211
5281
|
* @summary Update Robot Controller
|
|
@@ -5216,7 +5286,7 @@ declare class ControllerApi extends BaseAPI {
|
|
|
5216
5286
|
* @param {*} [options] Override http request option.
|
|
5217
5287
|
* @throws {RequiredError}
|
|
5218
5288
|
*/
|
|
5219
|
-
updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
5289
|
+
updateRobotController(cell: string, controller: string, robotController: RobotController, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
5220
5290
|
}
|
|
5221
5291
|
/**
|
|
5222
5292
|
* ControllerInputsOutputsApi - axios parameter creator
|
|
@@ -5408,7 +5478,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
5408
5478
|
* @param {*} [options] Override http request option.
|
|
5409
5479
|
* @throws {RequiredError}
|
|
5410
5480
|
*/
|
|
5411
|
-
listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<
|
|
5481
|
+
listIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
|
|
5412
5482
|
/**
|
|
5413
5483
|
* Retrieves the current values of inputs/outputs. The identifiers of the inputs/outputs must be provided in the request. Request all available input/output identifiers via [listIODescriptions](#/operations/listIODescriptions).
|
|
5414
5484
|
* @summary Get Input/Output Values
|
|
@@ -5418,7 +5488,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
5418
5488
|
* @param {*} [options] Override http request option.
|
|
5419
5489
|
* @throws {RequiredError}
|
|
5420
5490
|
*/
|
|
5421
|
-
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
5491
|
+
listIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
|
|
5422
5492
|
/**
|
|
5423
5493
|
* Set the values of outputs. All available output identifiers and possible value ranges can be requested via [listIODescriptions](#/operations/listIODescriptions). The call will return once the values have been set on and accepted by the robot. This can take up to 200 milliseconds. > **NOTE** > > Do not call this endpoint while another request is still in progress. The second call will fail.
|
|
5424
5494
|
* @summary Set Output Values
|
|
@@ -5428,7 +5498,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
5428
5498
|
* @param {*} [options] Override http request option.
|
|
5429
5499
|
* @throws {RequiredError}
|
|
5430
5500
|
*/
|
|
5431
|
-
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
5501
|
+
setOutputValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
5432
5502
|
/**
|
|
5433
5503
|
* <!-- theme: success --> > Websocket endpoint Continuously receive updates of input/output values via websocket. Updates are sent in the update rate of the controller. > **NOTE** > > If you request many values simultaneously, the request is likely to fail. The amount of values that can be streamed simultaneously depends on the specific robot controller. > **NOTE** > > The inputs and outputs are sent in the update rate of the controller to prevent losing any values. This can lead to a high amount of data transmitted.
|
|
5434
5504
|
* @summary Stream Input/Output Values
|
|
@@ -5438,7 +5508,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
5438
5508
|
* @param {*} [options] Override http request option.
|
|
5439
5509
|
* @throws {RequiredError}
|
|
5440
5510
|
*/
|
|
5441
|
-
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
5511
|
+
streamIOValues(cell: string, controller: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<StreamIOValuesResponse, any>>;
|
|
5442
5512
|
/**
|
|
5443
5513
|
* Wait until an input/output reaches a certain value. This call returns as soon as the condition is met or the request fails. The `comparison_type` value is used to define how the current value of the input/output is compared with given value. Only set the value that corresponds to the `value_type` of the input/output. See [listIODescriptions](#/operations/listIODescriptions) for more information. **Examples** 1. Wait until analog input `AI_1` < 10: ``` io: \"AI_1\" comparison_type: \"COMPARISON_LESS\" value: 10 ``` 2. Wait until analog input `AI_2` > 5.0: ``` io: \"AI_2\" comparison_type: \"COMPARISON_GREATER\" value: 5.0 ``` 3. Wait until digital input `DI_3` is true: ``` io: \"DI_3\" comparison_type: \"COMPARISON_EQUAL\" value: true ```
|
|
5444
5514
|
* @summary Wait For
|
|
@@ -5448,7 +5518,7 @@ declare class ControllerInputsOutputsApi extends BaseAPI {
|
|
|
5448
5518
|
* @param {*} [options] Override http request option.
|
|
5449
5519
|
* @throws {RequiredError}
|
|
5450
5520
|
*/
|
|
5451
|
-
waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<
|
|
5521
|
+
waitForIOEvent(cell: string, controller: string, waitForIOEventRequest: WaitForIOEventRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<boolean, any>>;
|
|
5452
5522
|
}
|
|
5453
5523
|
/**
|
|
5454
5524
|
* JoggingApi - axios parameter creator
|
|
@@ -5508,7 +5578,7 @@ declare class JoggingApi extends BaseAPI {
|
|
|
5508
5578
|
* @param {*} [options] Override http request option.
|
|
5509
5579
|
* @throws {RequiredError}
|
|
5510
5580
|
*/
|
|
5511
|
-
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<
|
|
5581
|
+
executeJogging(cell: string, controller: string, executeJoggingRequest: ExecuteJoggingRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteJoggingResponse, any>>;
|
|
5512
5582
|
}
|
|
5513
5583
|
/**
|
|
5514
5584
|
* KinematicsApi - axios parameter creator
|
|
@@ -5591,7 +5661,7 @@ declare class KinematicsApi extends BaseAPI {
|
|
|
5591
5661
|
* @param {*} [options] Override http request option.
|
|
5592
5662
|
* @throws {RequiredError}
|
|
5593
5663
|
*/
|
|
5594
|
-
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<
|
|
5664
|
+
forwardKinematics(cell: string, forwardKinematicsRequest: ForwardKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ForwardKinematicsResponse, any>>;
|
|
5595
5665
|
/**
|
|
5596
5666
|
* Returns the reachable joint positions for a list of given poses.
|
|
5597
5667
|
* @summary Inverse kinematics
|
|
@@ -5600,7 +5670,7 @@ declare class KinematicsApi extends BaseAPI {
|
|
|
5600
5670
|
* @param {*} [options] Override http request option.
|
|
5601
5671
|
* @throws {RequiredError}
|
|
5602
5672
|
*/
|
|
5603
|
-
inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<
|
|
5673
|
+
inverseKinematics(cell: string, inverseKinematicsRequest: InverseKinematicsRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<InverseKinematicsResponse, any>>;
|
|
5604
5674
|
}
|
|
5605
5675
|
/**
|
|
5606
5676
|
* LicenseApi - axios parameter creator
|
|
@@ -5715,28 +5785,28 @@ declare class LicenseApi extends BaseAPI {
|
|
|
5715
5785
|
* @param {*} [options] Override http request option.
|
|
5716
5786
|
* @throws {RequiredError}
|
|
5717
5787
|
*/
|
|
5718
|
-
activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<
|
|
5788
|
+
activateLicense(activateLicenseRequest: ActivateLicenseRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
|
|
5719
5789
|
/**
|
|
5720
5790
|
* Deactivates active license.
|
|
5721
5791
|
* @summary Deactivate license
|
|
5722
5792
|
* @param {*} [options] Override http request option.
|
|
5723
5793
|
* @throws {RequiredError}
|
|
5724
5794
|
*/
|
|
5725
|
-
deactivateLicense(options?: RawAxiosRequestConfig): Promise<
|
|
5795
|
+
deactivateLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
5726
5796
|
/**
|
|
5727
5797
|
* Get information on the license used with the Wandelbots NOVA instance, e.g., licensed product, expiration date, license status.
|
|
5728
5798
|
* @summary Get license
|
|
5729
5799
|
* @param {*} [options] Override http request option.
|
|
5730
5800
|
* @throws {RequiredError}
|
|
5731
5801
|
*/
|
|
5732
|
-
getLicense(options?: RawAxiosRequestConfig): Promise<
|
|
5802
|
+
getLicense(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<License, any>>;
|
|
5733
5803
|
/**
|
|
5734
5804
|
* Get the license status. - If `valid`, Wandelbots NOVA can be used. - If `expired`, the license has to be renewed in order to use Wandelbots NOVA.
|
|
5735
5805
|
* @summary Get license status
|
|
5736
5806
|
* @param {*} [options] Override http request option.
|
|
5737
5807
|
* @throws {RequiredError}
|
|
5738
5808
|
*/
|
|
5739
|
-
getLicenseStatus(options?: RawAxiosRequestConfig): Promise<
|
|
5809
|
+
getLicenseStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<LicenseStatus, any>>;
|
|
5740
5810
|
}
|
|
5741
5811
|
/**
|
|
5742
5812
|
* MotionGroupApi - axios parameter creator
|
|
@@ -5866,7 +5936,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
5866
5936
|
* @param {*} [options] Override http request option.
|
|
5867
5937
|
* @throws {RequiredError}
|
|
5868
5938
|
*/
|
|
5869
|
-
getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
5939
|
+
getCurrentMotionGroupState(cell: string, controller: string, motionGroup: string, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
|
|
5870
5940
|
/**
|
|
5871
5941
|
* Get the set of parameters that describe the motion group and its configuration including safety zones, limits, etc. This data can change upon connection to the robot.
|
|
5872
5942
|
* @summary Description
|
|
@@ -5876,7 +5946,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
5876
5946
|
* @param {*} [options] Override http request option.
|
|
5877
5947
|
* @throws {RequiredError}
|
|
5878
5948
|
*/
|
|
5879
|
-
getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
5949
|
+
getMotionGroupDescription(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupDescription, any>>;
|
|
5880
5950
|
/**
|
|
5881
5951
|
* <!-- theme: success --> > Websocket endpoint Receive updates of the motion group state. The stream will be closed from the server if the controller is disconnected.
|
|
5882
5952
|
* @summary Stream State
|
|
@@ -5888,7 +5958,7 @@ declare class MotionGroupApi extends BaseAPI {
|
|
|
5888
5958
|
* @param {*} [options] Override http request option.
|
|
5889
5959
|
* @throws {RequiredError}
|
|
5890
5960
|
*/
|
|
5891
|
-
streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<
|
|
5961
|
+
streamMotionGroupState(cell: string, controller: string, motionGroup: string, responseRate?: number, responseCoordinateSystem?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupState, any>>;
|
|
5892
5962
|
}
|
|
5893
5963
|
/**
|
|
5894
5964
|
* MotionGroupModelsApi - axios parameter creator
|
|
@@ -6037,7 +6107,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
6037
6107
|
* @param {*} [options] Override http request option.
|
|
6038
6108
|
* @throws {RequiredError}
|
|
6039
6109
|
*/
|
|
6040
|
-
getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<
|
|
6110
|
+
getMotionGroupCollisionModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6041
6111
|
[key: string]: Collider;
|
|
6042
6112
|
}[], any>>;
|
|
6043
6113
|
/**
|
|
@@ -6047,7 +6117,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
6047
6117
|
* @param {*} [options] Override http request option.
|
|
6048
6118
|
* @throws {RequiredError}
|
|
6049
6119
|
*/
|
|
6050
|
-
getMotionGroupGlbModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<
|
|
6120
|
+
getMotionGroupGlbModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
|
|
6051
6121
|
/**
|
|
6052
6122
|
* Returns the kinematics model (DH parameters) for the given motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported motion group models.
|
|
6053
6123
|
* @summary Get Kinematics
|
|
@@ -6055,14 +6125,14 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
6055
6125
|
* @param {*} [options] Override http request option.
|
|
6056
6126
|
* @throws {RequiredError}
|
|
6057
6127
|
*/
|
|
6058
|
-
getMotionGroupKinematicModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<
|
|
6128
|
+
getMotionGroupKinematicModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<KinematicModel, any>>;
|
|
6059
6129
|
/**
|
|
6060
6130
|
* Returns the list of supported motion group models.
|
|
6061
6131
|
* @summary Motion Group Models
|
|
6062
6132
|
* @param {*} [options] Override http request option.
|
|
6063
6133
|
* @throws {RequiredError}
|
|
6064
6134
|
*/
|
|
6065
|
-
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<
|
|
6135
|
+
getMotionGroupModels(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
6066
6136
|
/**
|
|
6067
6137
|
* Returns the USD scene model for the specified motion group model. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported identifiers.
|
|
6068
6138
|
* @summary Download USD Model
|
|
@@ -6070,7 +6140,7 @@ declare class MotionGroupModelsApi extends BaseAPI {
|
|
|
6070
6140
|
* @param {*} [options] Override http request option.
|
|
6071
6141
|
* @throws {RequiredError}
|
|
6072
6142
|
*/
|
|
6073
|
-
getMotionGroupUsdModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<
|
|
6143
|
+
getMotionGroupUsdModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
|
|
6074
6144
|
}
|
|
6075
6145
|
/**
|
|
6076
6146
|
* ProgramApi - axios parameter creator
|
|
@@ -6207,7 +6277,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
6207
6277
|
* @param {*} [options] Override http request option.
|
|
6208
6278
|
* @throws {RequiredError}
|
|
6209
6279
|
*/
|
|
6210
|
-
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
6280
|
+
getProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program, any>>;
|
|
6211
6281
|
/**
|
|
6212
6282
|
* <!-- theme: danger --> > **Experimental** List details of all existing programs.
|
|
6213
6283
|
* @summary List programs
|
|
@@ -6215,7 +6285,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
6215
6285
|
* @param {*} [options] Override http request option.
|
|
6216
6286
|
* @throws {RequiredError}
|
|
6217
6287
|
*/
|
|
6218
|
-
listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6288
|
+
listPrograms(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Program[], any>>;
|
|
6219
6289
|
/**
|
|
6220
6290
|
* <!-- theme: danger --> > **Experimental** This endpoint starts a new program execution. The program will be executed asynchronously.
|
|
6221
6291
|
* @summary Start the program
|
|
@@ -6225,7 +6295,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
6225
6295
|
* @param {*} [options] Override http request option.
|
|
6226
6296
|
* @throws {RequiredError}
|
|
6227
6297
|
*/
|
|
6228
|
-
startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<
|
|
6298
|
+
startProgram(cell: string, program: string, programStartRequest: ProgramStartRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ProgramRun, any>>;
|
|
6229
6299
|
/**
|
|
6230
6300
|
* <!-- theme: danger --> > **Experimental** Stop a specific program run.
|
|
6231
6301
|
* @summary Stop program run
|
|
@@ -6234,7 +6304,7 @@ declare class ProgramApi extends BaseAPI {
|
|
|
6234
6304
|
* @param {*} [options] Override http request option.
|
|
6235
6305
|
* @throws {RequiredError}
|
|
6236
6306
|
*/
|
|
6237
|
-
stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<
|
|
6307
|
+
stopProgram(cell: string, program: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6238
6308
|
}
|
|
6239
6309
|
/**
|
|
6240
6310
|
* RobotConfigurationsApi - axios parameter creator
|
|
@@ -6282,7 +6352,7 @@ declare class RobotConfigurationsApi extends BaseAPI {
|
|
|
6282
6352
|
* @param {*} [options] Override http request option.
|
|
6283
6353
|
* @throws {RequiredError}
|
|
6284
6354
|
*/
|
|
6285
|
-
getRobotConfigurations(options?: RawAxiosRequestConfig): Promise<
|
|
6355
|
+
getRobotConfigurations(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
6286
6356
|
}
|
|
6287
6357
|
/**
|
|
6288
6358
|
* StoreCollisionComponentsApi - axios parameter creator
|
|
@@ -6755,7 +6825,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6755
6825
|
* @param {*} [options] Override http request option.
|
|
6756
6826
|
* @throws {RequiredError}
|
|
6757
6827
|
*/
|
|
6758
|
-
deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<
|
|
6828
|
+
deleteStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6759
6829
|
/**
|
|
6760
6830
|
* Deletes the stored link chain. <!-- theme: danger --> > This will delete persistently stored data.
|
|
6761
6831
|
* @summary Delete Link Chain
|
|
@@ -6764,7 +6834,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6764
6834
|
* @param {*} [options] Override http request option.
|
|
6765
6835
|
* @throws {RequiredError}
|
|
6766
6836
|
*/
|
|
6767
|
-
deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<
|
|
6837
|
+
deleteStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6768
6838
|
/**
|
|
6769
6839
|
* Deletes the stored tool. <!-- theme: danger --> > This will delete persistently stored data.
|
|
6770
6840
|
* @summary Delete Tool
|
|
@@ -6773,7 +6843,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6773
6843
|
* @param {*} [options] Override http request option.
|
|
6774
6844
|
* @throws {RequiredError}
|
|
6775
6845
|
*/
|
|
6776
|
-
deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<
|
|
6846
|
+
deleteStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
6777
6847
|
/**
|
|
6778
6848
|
* Returns the collider.
|
|
6779
6849
|
* @summary Get Collider
|
|
@@ -6782,7 +6852,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6782
6852
|
* @param {*} [options] Override http request option.
|
|
6783
6853
|
* @throws {RequiredError}
|
|
6784
6854
|
*/
|
|
6785
|
-
getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<
|
|
6855
|
+
getStoredCollider(cell: string, collider: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
|
|
6786
6856
|
/**
|
|
6787
6857
|
* Returns the collision link chain.
|
|
6788
6858
|
* @summary Get Link Chain
|
|
@@ -6791,7 +6861,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6791
6861
|
* @param {*} [options] Override http request option.
|
|
6792
6862
|
* @throws {RequiredError}
|
|
6793
6863
|
*/
|
|
6794
|
-
getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<
|
|
6864
|
+
getStoredCollisionLinkChain(cell: string, linkChain: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6795
6865
|
[key: string]: Collider;
|
|
6796
6866
|
}[], any>>;
|
|
6797
6867
|
/**
|
|
@@ -6802,7 +6872,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6802
6872
|
* @param {*} [options] Override http request option.
|
|
6803
6873
|
* @throws {RequiredError}
|
|
6804
6874
|
*/
|
|
6805
|
-
getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<
|
|
6875
|
+
getStoredCollisionTool(cell: string, tool: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6806
6876
|
[key: string]: Collider;
|
|
6807
6877
|
}, any>>;
|
|
6808
6878
|
/**
|
|
@@ -6812,7 +6882,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6812
6882
|
* @param {*} [options] Override http request option.
|
|
6813
6883
|
* @throws {RequiredError}
|
|
6814
6884
|
*/
|
|
6815
|
-
listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6885
|
+
listCollisionLinkChains(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6816
6886
|
[key: string]: {
|
|
6817
6887
|
[key: string]: Collider;
|
|
6818
6888
|
}[];
|
|
@@ -6824,7 +6894,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6824
6894
|
* @param {*} [options] Override http request option.
|
|
6825
6895
|
* @throws {RequiredError}
|
|
6826
6896
|
*/
|
|
6827
|
-
listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6897
|
+
listCollisionLinkChainsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
6828
6898
|
/**
|
|
6829
6899
|
* Returns all stored colliders.
|
|
6830
6900
|
* @summary List Colliders
|
|
@@ -6832,7 +6902,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6832
6902
|
* @param {*} [options] Override http request option.
|
|
6833
6903
|
* @throws {RequiredError}
|
|
6834
6904
|
*/
|
|
6835
|
-
listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6905
|
+
listStoredColliders(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6836
6906
|
[key: string]: Collider;
|
|
6837
6907
|
}, any>>;
|
|
6838
6908
|
/**
|
|
@@ -6842,7 +6912,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6842
6912
|
* @param {*} [options] Override http request option.
|
|
6843
6913
|
* @throws {RequiredError}
|
|
6844
6914
|
*/
|
|
6845
|
-
listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6915
|
+
listStoredCollidersKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
6846
6916
|
/**
|
|
6847
6917
|
* Returns the list of stored tools.
|
|
6848
6918
|
* @summary List Tools
|
|
@@ -6850,7 +6920,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6850
6920
|
* @param {*} [options] Override http request option.
|
|
6851
6921
|
* @throws {RequiredError}
|
|
6852
6922
|
*/
|
|
6853
|
-
listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6923
|
+
listStoredCollisionTools(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6854
6924
|
[key: string]: {
|
|
6855
6925
|
[key: string]: Collider;
|
|
6856
6926
|
};
|
|
@@ -6862,7 +6932,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6862
6932
|
* @param {*} [options] Override http request option.
|
|
6863
6933
|
* @throws {RequiredError}
|
|
6864
6934
|
*/
|
|
6865
|
-
listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
6935
|
+
listStoredCollisionToolsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
6866
6936
|
/**
|
|
6867
6937
|
* Stores collider. - If the collider does not exist, it will be created. - If the collider exists, it will be updated.
|
|
6868
6938
|
* @summary Store Collider
|
|
@@ -6872,7 +6942,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6872
6942
|
* @param {*} [options] Override http request option.
|
|
6873
6943
|
* @throws {RequiredError}
|
|
6874
6944
|
*/
|
|
6875
|
-
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<
|
|
6945
|
+
storeCollider(cell: string, collider: string, collider2: Collider, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Collider, any>>;
|
|
6876
6946
|
/**
|
|
6877
6947
|
* Stores link chain. - If the link chain does not exist, it will be created. - If the link chain exists, it will be updated.
|
|
6878
6948
|
* @summary Store Link Chain
|
|
@@ -6884,7 +6954,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6884
6954
|
*/
|
|
6885
6955
|
storeCollisionLinkChain(cell: string, linkChain: string, collider: Array<{
|
|
6886
6956
|
[key: string]: Collider;
|
|
6887
|
-
}>, options?: RawAxiosRequestConfig): Promise<
|
|
6957
|
+
}>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6888
6958
|
[key: string]: Collider;
|
|
6889
6959
|
}[], any>>;
|
|
6890
6960
|
/**
|
|
@@ -6898,7 +6968,7 @@ declare class StoreCollisionComponentsApi extends BaseAPI {
|
|
|
6898
6968
|
*/
|
|
6899
6969
|
storeCollisionTool(cell: string, tool: string, requestBody: {
|
|
6900
6970
|
[key: string]: Collider;
|
|
6901
|
-
}, options?: RawAxiosRequestConfig): Promise<
|
|
6971
|
+
}, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
6902
6972
|
[key: string]: Collider;
|
|
6903
6973
|
}, any>>;
|
|
6904
6974
|
}
|
|
@@ -7065,7 +7135,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
7065
7135
|
* @param {*} [options] Override http request option.
|
|
7066
7136
|
* @throws {RequiredError}
|
|
7067
7137
|
*/
|
|
7068
|
-
deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<
|
|
7138
|
+
deleteStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7069
7139
|
/**
|
|
7070
7140
|
* Returns the stored collision setup.
|
|
7071
7141
|
* @summary Get Collision Setup
|
|
@@ -7074,7 +7144,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
7074
7144
|
* @param {*} [options] Override http request option.
|
|
7075
7145
|
* @throws {RequiredError}
|
|
7076
7146
|
*/
|
|
7077
|
-
getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<
|
|
7147
|
+
getStoredCollisionSetup(cell: string, setup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
|
|
7078
7148
|
/**
|
|
7079
7149
|
* Returns a list of stored collision setups.
|
|
7080
7150
|
* @summary List Collision Setups
|
|
@@ -7082,7 +7152,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
7082
7152
|
* @param {*} [options] Override http request option.
|
|
7083
7153
|
* @throws {RequiredError}
|
|
7084
7154
|
*/
|
|
7085
|
-
listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
7155
|
+
listStoredCollisionSetups(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<{
|
|
7086
7156
|
[key: string]: CollisionSetup;
|
|
7087
7157
|
}, any>>;
|
|
7088
7158
|
/**
|
|
@@ -7092,7 +7162,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
7092
7162
|
* @param {*} [options] Override http request option.
|
|
7093
7163
|
* @throws {RequiredError}
|
|
7094
7164
|
*/
|
|
7095
|
-
listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
7165
|
+
listStoredCollisionSetupsKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
7096
7166
|
/**
|
|
7097
7167
|
* Stores collision setup. - If the collision setup does not exist, it will be created. - If the collision setup exists, it will be updated.
|
|
7098
7168
|
* @summary Store Collision Setup
|
|
@@ -7102,7 +7172,7 @@ declare class StoreCollisionSetupsApi extends BaseAPI {
|
|
|
7102
7172
|
* @param {*} [options] Override http request option.
|
|
7103
7173
|
* @throws {RequiredError}
|
|
7104
7174
|
*/
|
|
7105
|
-
storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<
|
|
7175
|
+
storeCollisionSetup(cell: string, setup: string, collisionSetup: CollisionSetup, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CollisionSetup, any>>;
|
|
7106
7176
|
}
|
|
7107
7177
|
/**
|
|
7108
7178
|
* StoreObjectApi - axios parameter creator
|
|
@@ -7298,7 +7368,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
7298
7368
|
* @param {*} [options] Override http request option.
|
|
7299
7369
|
* @throws {RequiredError}
|
|
7300
7370
|
*/
|
|
7301
|
-
clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
7371
|
+
clearAllObjects(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7302
7372
|
/**
|
|
7303
7373
|
* Delete an object <!-- theme: danger --> > This will delete persistently stored data.
|
|
7304
7374
|
* @summary Delete Object
|
|
@@ -7307,7 +7377,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
7307
7377
|
* @param {*} [options] Override http request option.
|
|
7308
7378
|
* @throws {RequiredError}
|
|
7309
7379
|
*/
|
|
7310
|
-
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
7380
|
+
deleteObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7311
7381
|
/**
|
|
7312
7382
|
* Returns content and metadata of a stored object.
|
|
7313
7383
|
* @summary Get Object
|
|
@@ -7316,7 +7386,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
7316
7386
|
* @param {*} [options] Override http request option.
|
|
7317
7387
|
* @throws {RequiredError}
|
|
7318
7388
|
*/
|
|
7319
|
-
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
7389
|
+
getObject(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
|
|
7320
7390
|
/**
|
|
7321
7391
|
* Returns metadata. Object content is not returned.
|
|
7322
7392
|
* @summary Get Object Metadata
|
|
@@ -7325,7 +7395,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
7325
7395
|
* @param {*} [options] Override http request option.
|
|
7326
7396
|
* @throws {RequiredError}
|
|
7327
7397
|
*/
|
|
7328
|
-
getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<
|
|
7398
|
+
getObjectMetadata(cell: string, key: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7329
7399
|
/**
|
|
7330
7400
|
* List the keys for all objects.
|
|
7331
7401
|
* @summary List all Object Keys
|
|
@@ -7333,7 +7403,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
7333
7403
|
* @param {*} [options] Override http request option.
|
|
7334
7404
|
* @throws {RequiredError}
|
|
7335
7405
|
*/
|
|
7336
|
-
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<
|
|
7406
|
+
listAllObjectKeys(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string[], any>>;
|
|
7337
7407
|
/**
|
|
7338
7408
|
* Store any data as an object. Using a key which already contains an object will override the previously stored object. Use [getObjectMetadata](#/operations/getObjectMetadata) to verify that the key does not contain objects. #### Optional Specify metadata as a dictionary with names and values.
|
|
7339
7409
|
* @summary Store Object
|
|
@@ -7346,7 +7416,7 @@ declare class StoreObjectApi extends BaseAPI {
|
|
|
7346
7416
|
*/
|
|
7347
7417
|
storeObject(cell: string, key: string, xMetadata?: {
|
|
7348
7418
|
[key: string]: string;
|
|
7349
|
-
}, anyValue?: any, options?: RawAxiosRequestConfig): Promise<
|
|
7419
|
+
}, anyValue?: any, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7350
7420
|
}
|
|
7351
7421
|
/**
|
|
7352
7422
|
* SystemApi - axios parameter creator
|
|
@@ -7665,7 +7735,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
7665
7735
|
*/
|
|
7666
7736
|
backupConfiguration(resources?: Array<string>, metadata?: {
|
|
7667
7737
|
[key: string]: string;
|
|
7668
|
-
}, options?: RawAxiosRequestConfig): Promise<
|
|
7738
|
+
}, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
|
|
7669
7739
|
/**
|
|
7670
7740
|
* Check if a more recent Wandelbots NOVA Version is available.
|
|
7671
7741
|
* @summary Check update
|
|
@@ -7673,7 +7743,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
7673
7743
|
* @param {*} [options] Override http request option.
|
|
7674
7744
|
* @throws {RequiredError}
|
|
7675
7745
|
*/
|
|
7676
|
-
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<
|
|
7746
|
+
checkNovaVersionUpdate(channel: ReleaseChannel, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
|
|
7677
7747
|
/**
|
|
7678
7748
|
* <!-- theme: danger --> > **Experimental** Performs an address resolution protocol (ARP) scan on the specified interface/classless inter-domain routing (CIDR) and returns all discovered devices on the network by CIDR notation.
|
|
7679
7749
|
* @summary Get ARP-Scan
|
|
@@ -7683,7 +7753,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
7683
7753
|
* @param {*} [options] Override http request option.
|
|
7684
7754
|
* @throws {RequiredError}
|
|
7685
7755
|
*/
|
|
7686
|
-
getArpScan(_interface?: string, cidr?: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<
|
|
7756
|
+
getArpScan(_interface?: string, cidr?: string, timeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<NetworkDevice[], any>>;
|
|
7687
7757
|
/**
|
|
7688
7758
|
* Retrieves the status of a configuration backup. The status can only be requested for 5 minutes after backup creation. After 5 minutes, 404 is returned.
|
|
7689
7759
|
* @summary Retrieve Backup Status
|
|
@@ -7691,49 +7761,49 @@ declare class SystemApi extends BaseAPI {
|
|
|
7691
7761
|
* @param {*} [options] Override http request option.
|
|
7692
7762
|
* @throws {RequiredError}
|
|
7693
7763
|
*/
|
|
7694
|
-
getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<
|
|
7764
|
+
getConfigurationBackupStatus(operationId: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationArchiveStatus, any>>;
|
|
7695
7765
|
/**
|
|
7696
7766
|
* Collects information on the current status of all NOVA services and exports them as a .zip file. Includes information on all cells on the instance such as the service logs and virtual robot controllers. From each cell the logs of all services are included, as well as the configuration of each connected controller to start virtual robots.
|
|
7697
7767
|
* @summary Download Diagnosis Package
|
|
7698
7768
|
* @param {*} [options] Override http request option.
|
|
7699
7769
|
* @throws {RequiredError}
|
|
7700
7770
|
*/
|
|
7701
|
-
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<
|
|
7771
|
+
getDiagnosePackage(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<File, any>>;
|
|
7702
7772
|
/**
|
|
7703
7773
|
* <!-- theme: danger --> > **Experimental** Get the network interfaces of the system.
|
|
7704
7774
|
* @summary Network Interfaces
|
|
7705
7775
|
* @param {*} [options] Override http request option.
|
|
7706
7776
|
* @throws {RequiredError}
|
|
7707
7777
|
*/
|
|
7708
|
-
getNetworkInterfaces(options?: RawAxiosRequestConfig): Promise<
|
|
7778
|
+
getNetworkInterfaces(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<NetworkInterface[], any>>;
|
|
7709
7779
|
/**
|
|
7710
7780
|
* <!-- theme: danger --> > **Experimental** Get the current state of the network.
|
|
7711
7781
|
* @summary Network State
|
|
7712
7782
|
* @param {*} [options] Override http request option.
|
|
7713
7783
|
* @throws {RequiredError}
|
|
7714
7784
|
*/
|
|
7715
|
-
getNetworkState(options?: RawAxiosRequestConfig): Promise<
|
|
7785
|
+
getNetworkState(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<NetworkState, any>>;
|
|
7716
7786
|
/**
|
|
7717
7787
|
* Get the status of all system services.
|
|
7718
7788
|
* @summary Wandelbots NOVA status
|
|
7719
7789
|
* @param {*} [options] Override http request option.
|
|
7720
7790
|
* @throws {RequiredError}
|
|
7721
7791
|
*/
|
|
7722
|
-
getSystemStatus(options?: RawAxiosRequestConfig): Promise<
|
|
7792
|
+
getSystemStatus(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ServiceStatus[], any>>;
|
|
7723
7793
|
/**
|
|
7724
7794
|
* Get the current Wandelbots NOVA version.
|
|
7725
7795
|
* @summary Wandelbots NOVA Version
|
|
7726
7796
|
* @param {*} [options] Override http request option.
|
|
7727
7797
|
* @throws {RequiredError}
|
|
7728
7798
|
*/
|
|
7729
|
-
getSystemVersion(options?: RawAxiosRequestConfig): Promise<
|
|
7799
|
+
getSystemVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<string, any>>;
|
|
7730
7800
|
/**
|
|
7731
7801
|
* Retrieves a list of all available configuration resources for backup purposes.
|
|
7732
7802
|
* @summary List Configuration Resources
|
|
7733
7803
|
* @param {*} [options] Override http request option.
|
|
7734
7804
|
* @throws {RequiredError}
|
|
7735
7805
|
*/
|
|
7736
|
-
listConfigurationResources(options?: RawAxiosRequestConfig): Promise<
|
|
7806
|
+
listConfigurationResources(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ConfigurationResource[], any>>;
|
|
7737
7807
|
/**
|
|
7738
7808
|
* Restores a previously backed up configuration. If an empty array of resources is provided, all resources from the backup will be restored.
|
|
7739
7809
|
* @summary Restore Configuration Backup
|
|
@@ -7742,7 +7812,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
7742
7812
|
* @param {*} [options] Override http request option.
|
|
7743
7813
|
* @throws {RequiredError}
|
|
7744
7814
|
*/
|
|
7745
|
-
restoreConfiguration(body: File, resources?: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
7815
|
+
restoreConfiguration(body: File, resources?: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7746
7816
|
/**
|
|
7747
7817
|
* 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. System updates only apply to cells without an explicit chart version. Pinned versions are always preserved; setting `update_cells=false` pins unversioned cells to the current system version before updating.
|
|
7748
7818
|
* @summary Update Wandelbots NOVA version
|
|
@@ -7750,7 +7820,7 @@ declare class SystemApi extends BaseAPI {
|
|
|
7750
7820
|
* @param {*} [options] Override http request option.
|
|
7751
7821
|
* @throws {RequiredError}
|
|
7752
7822
|
*/
|
|
7753
|
-
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7823
|
+
updateNovaVersion(updateNovaVersionRequest: UpdateNovaVersionRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7754
7824
|
}
|
|
7755
7825
|
/**
|
|
7756
7826
|
* TrajectoryCachingApi - axios parameter creator
|
|
@@ -7924,7 +7994,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
7924
7994
|
* @param {*} [options] Override http request option.
|
|
7925
7995
|
* @throws {RequiredError}
|
|
7926
7996
|
*/
|
|
7927
|
-
addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
7997
|
+
addTrajectory(cell: string, controller: string, addTrajectoryRequest: AddTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<AddTrajectoryResponse, any>>;
|
|
7928
7998
|
/**
|
|
7929
7999
|
* Clear the trajectory cache.
|
|
7930
8000
|
* @summary Clear Trajectories
|
|
@@ -7933,7 +8003,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
7933
8003
|
* @param {*} [options] Override http request option.
|
|
7934
8004
|
* @throws {RequiredError}
|
|
7935
8005
|
*/
|
|
7936
|
-
clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8006
|
+
clearTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7937
8007
|
/**
|
|
7938
8008
|
* Delete a previously created trajectory from cache. Use [listTrajectories](#/operations/listTrajectories) to list all cached trajectories. Trajectories are removed automatically if the motion group or the corresponding controller is disconnected.
|
|
7939
8009
|
* @summary Delete Trajectory
|
|
@@ -7943,7 +8013,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
7943
8013
|
* @param {*} [options] Override http request option.
|
|
7944
8014
|
* @throws {RequiredError}
|
|
7945
8015
|
*/
|
|
7946
|
-
deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<
|
|
8016
|
+
deleteTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
7947
8017
|
/**
|
|
7948
8018
|
* Get a previously created trajectory from cache. Use [listTrajectories](#/operations/listTrajectories) to list all cached trajectories.
|
|
7949
8019
|
* @summary Get Trajectory
|
|
@@ -7953,7 +8023,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
7953
8023
|
* @param {*} [options] Override http request option.
|
|
7954
8024
|
* @throws {RequiredError}
|
|
7955
8025
|
*/
|
|
7956
|
-
getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<
|
|
8026
|
+
getTrajectory(cell: string, controller: string, trajectory: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<GetTrajectoryResponse, any>>;
|
|
7957
8027
|
/**
|
|
7958
8028
|
* List currently cached trajectories. Use [addTrajectory](#/operations/addTrajectory) to add a new trajectory. Adding trajectories is necessary to execute them. Trajectories are removed if the corresponding motion group or controller disconnects.
|
|
7959
8029
|
* @summary List Trajectories
|
|
@@ -7962,7 +8032,7 @@ declare class TrajectoryCachingApi extends BaseAPI {
|
|
|
7962
8032
|
* @param {*} [options] Override http request option.
|
|
7963
8033
|
* @throws {RequiredError}
|
|
7964
8034
|
*/
|
|
7965
|
-
listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8035
|
+
listTrajectories(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ListTrajectoriesResponse, any>>;
|
|
7966
8036
|
}
|
|
7967
8037
|
/**
|
|
7968
8038
|
* TrajectoryExecutionApi - axios parameter creator
|
|
@@ -8022,12 +8092,21 @@ declare class TrajectoryExecutionApi extends BaseAPI {
|
|
|
8022
8092
|
* @param {*} [options] Override http request option.
|
|
8023
8093
|
* @throws {RequiredError}
|
|
8024
8094
|
*/
|
|
8025
|
-
executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
8095
|
+
executeTrajectory(cell: string, controller: string, executeTrajectoryRequest: ExecuteTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExecuteTrajectoryResponse, any>>;
|
|
8026
8096
|
}
|
|
8027
8097
|
/**
|
|
8028
8098
|
* TrajectoryPlanningApi - axios parameter creator
|
|
8029
8099
|
*/
|
|
8030
8100
|
declare const TrajectoryPlanningApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
8101
|
+
/**
|
|
8102
|
+
* <!-- theme: danger --> > **Experimental** Merges a list of joint trajectories into a single trajectory with collision-aware blending. This endpoint merges a list of separate trajectories by connecting them via blending. The blending is performed with collision checking to ensure the merged trajectory is safe to execute. Timescaling will be applied to the blended area to ensure all limits are respected.
|
|
8103
|
+
* @summary Merge Trajectories
|
|
8104
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8105
|
+
* @param {MergeTrajectoriesRequest} mergeTrajectoriesRequest
|
|
8106
|
+
* @param {*} [options] Override http request option.
|
|
8107
|
+
* @throws {RequiredError}
|
|
8108
|
+
*/
|
|
8109
|
+
mergeTrajectories: (cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8031
8110
|
/**
|
|
8032
8111
|
* Plans a collision-free trajectory for a single motion group using point-to-point (PTP) motions. This endpoint is specifically designed for collision-free path planning algorithms that find a trajectory from a start joint position to a target position while avoiding obstacles. Use the following workflow to execute a planned collision-free trajectory: 1. Plan a collision-free trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](#/operations/addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint. If the trajectory planning fails due to collision or algorithm constraints, the response will contain error information about the failure.
|
|
8033
8112
|
* @summary Plan Collision-Free Trajectory
|
|
@@ -8051,6 +8130,15 @@ declare const TrajectoryPlanningApiAxiosParamCreator: (configuration?: Configura
|
|
|
8051
8130
|
* TrajectoryPlanningApi - functional programming interface
|
|
8052
8131
|
*/
|
|
8053
8132
|
declare const TrajectoryPlanningApiFp: (configuration?: Configuration) => {
|
|
8133
|
+
/**
|
|
8134
|
+
* <!-- theme: danger --> > **Experimental** Merges a list of joint trajectories into a single trajectory with collision-aware blending. This endpoint merges a list of separate trajectories by connecting them via blending. The blending is performed with collision checking to ensure the merged trajectory is safe to execute. Timescaling will be applied to the blended area to ensure all limits are respected.
|
|
8135
|
+
* @summary Merge Trajectories
|
|
8136
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8137
|
+
* @param {MergeTrajectoriesRequest} mergeTrajectoriesRequest
|
|
8138
|
+
* @param {*} [options] Override http request option.
|
|
8139
|
+
* @throws {RequiredError}
|
|
8140
|
+
*/
|
|
8141
|
+
mergeTrajectories(cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MergeTrajectoriesResponse>>;
|
|
8054
8142
|
/**
|
|
8055
8143
|
* Plans a collision-free trajectory for a single motion group using point-to-point (PTP) motions. This endpoint is specifically designed for collision-free path planning algorithms that find a trajectory from a start joint position to a target position while avoiding obstacles. Use the following workflow to execute a planned collision-free trajectory: 1. Plan a collision-free trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](#/operations/addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint. If the trajectory planning fails due to collision or algorithm constraints, the response will contain error information about the failure.
|
|
8056
8144
|
* @summary Plan Collision-Free Trajectory
|
|
@@ -8074,6 +8162,15 @@ declare const TrajectoryPlanningApiFp: (configuration?: Configuration) => {
|
|
|
8074
8162
|
* TrajectoryPlanningApi - factory interface
|
|
8075
8163
|
*/
|
|
8076
8164
|
declare const TrajectoryPlanningApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
8165
|
+
/**
|
|
8166
|
+
* <!-- theme: danger --> > **Experimental** Merges a list of joint trajectories into a single trajectory with collision-aware blending. This endpoint merges a list of separate trajectories by connecting them via blending. The blending is performed with collision checking to ensure the merged trajectory is safe to execute. Timescaling will be applied to the blended area to ensure all limits are respected.
|
|
8167
|
+
* @summary Merge Trajectories
|
|
8168
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8169
|
+
* @param {MergeTrajectoriesRequest} mergeTrajectoriesRequest
|
|
8170
|
+
* @param {*} [options] Override http request option.
|
|
8171
|
+
* @throws {RequiredError}
|
|
8172
|
+
*/
|
|
8173
|
+
mergeTrajectories(cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig): AxiosPromise<MergeTrajectoriesResponse>;
|
|
8077
8174
|
/**
|
|
8078
8175
|
* Plans a collision-free trajectory for a single motion group using point-to-point (PTP) motions. This endpoint is specifically designed for collision-free path planning algorithms that find a trajectory from a start joint position to a target position while avoiding obstacles. Use the following workflow to execute a planned collision-free trajectory: 1. Plan a collision-free trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](#/operations/addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint. If the trajectory planning fails due to collision or algorithm constraints, the response will contain error information about the failure.
|
|
8079
8176
|
* @summary Plan Collision-Free Trajectory
|
|
@@ -8097,6 +8194,15 @@ declare const TrajectoryPlanningApiFactory: (configuration?: Configuration, base
|
|
|
8097
8194
|
* TrajectoryPlanningApi - object-oriented interface
|
|
8098
8195
|
*/
|
|
8099
8196
|
declare class TrajectoryPlanningApi extends BaseAPI {
|
|
8197
|
+
/**
|
|
8198
|
+
* <!-- theme: danger --> > **Experimental** Merges a list of joint trajectories into a single trajectory with collision-aware blending. This endpoint merges a list of separate trajectories by connecting them via blending. The blending is performed with collision checking to ensure the merged trajectory is safe to execute. Timescaling will be applied to the blended area to ensure all limits are respected.
|
|
8199
|
+
* @summary Merge Trajectories
|
|
8200
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8201
|
+
* @param {MergeTrajectoriesRequest} mergeTrajectoriesRequest
|
|
8202
|
+
* @param {*} [options] Override http request option.
|
|
8203
|
+
* @throws {RequiredError}
|
|
8204
|
+
*/
|
|
8205
|
+
mergeTrajectories(cell: string, mergeTrajectoriesRequest: MergeTrajectoriesRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MergeTrajectoriesResponse, any>>;
|
|
8100
8206
|
/**
|
|
8101
8207
|
* Plans a collision-free trajectory for a single motion group using point-to-point (PTP) motions. This endpoint is specifically designed for collision-free path planning algorithms that find a trajectory from a start joint position to a target position while avoiding obstacles. Use the following workflow to execute a planned collision-free trajectory: 1. Plan a collision-free trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](#/operations/addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint. If the trajectory planning fails due to collision or algorithm constraints, the response will contain error information about the failure.
|
|
8102
8208
|
* @summary Plan Collision-Free Trajectory
|
|
@@ -8105,7 +8211,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
|
|
|
8105
8211
|
* @param {*} [options] Override http request option.
|
|
8106
8212
|
* @throws {RequiredError}
|
|
8107
8213
|
*/
|
|
8108
|
-
planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<
|
|
8214
|
+
planCollisionFree(cell: string, planCollisionFreeRequest: PlanCollisionFreeRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanCollisionFreeResponse, any>>;
|
|
8109
8215
|
/**
|
|
8110
8216
|
* Plans a new trajectory for a single motion group. Describe the trajectory as a sequence of motion commands that the robots TCP should follow. Use the following workflow to execute a planned trajectory: 1. Plan a trajectory. 2. Optional: Load the planned trajectory into the cache using the [addTrajectory](#/operations/addTrajectory) endpoint. 3. Execute the (cached) trajectory using the [executeTrajectory](#/operations/executeTrajectory) endpoint. If the trajectory is not executable, the response will contain the joint trajectory up until the error, e.g., all samples until a collision occurs. <!-- theme: info --> > #### Exception > > If a CartesianPTP or JointPTP motion command has an invalid target, the response will contain the trajectory up until the start of the invalid PTP motion.
|
|
8111
8217
|
* @summary Plan Trajectory
|
|
@@ -8114,7 +8220,7 @@ declare class TrajectoryPlanningApi extends BaseAPI {
|
|
|
8114
8220
|
* @param {*} [options] Override http request option.
|
|
8115
8221
|
* @throws {RequiredError}
|
|
8116
8222
|
*/
|
|
8117
|
-
planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<
|
|
8223
|
+
planTrajectory(cell: string, planTrajectoryRequest: PlanTrajectoryRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<PlanTrajectoryResponse, any>>;
|
|
8118
8224
|
}
|
|
8119
8225
|
/**
|
|
8120
8226
|
* VersionApi - axios parameter creator
|
|
@@ -8162,7 +8268,7 @@ declare class VersionApi extends BaseAPI {
|
|
|
8162
8268
|
* @param {*} [options] Override http request option.
|
|
8163
8269
|
* @throws {RequiredError}
|
|
8164
8270
|
*/
|
|
8165
|
-
getApiVersion(options?: RawAxiosRequestConfig): Promise<
|
|
8271
|
+
getApiVersion(options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ApiVersion, any>>;
|
|
8166
8272
|
}
|
|
8167
8273
|
/**
|
|
8168
8274
|
* VirtualControllerApi - axios parameter creator
|
|
@@ -8712,7 +8818,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8712
8818
|
* @param {*} [options] Override http request option.
|
|
8713
8819
|
* @throws {RequiredError}
|
|
8714
8820
|
*/
|
|
8715
|
-
addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<
|
|
8821
|
+
addVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, coordinateSystemData: CoordinateSystemData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8716
8822
|
/**
|
|
8717
8823
|
* Adds a motion group configuration for the virtual robot controller. Fields: - Only one of **motion_group_model** or **json** should be set. - **motion_group_model**: Identifies a single motion group. See [getMotionGroupModels](#/operations/getMotionGroupModels) for supported types. - **json**: Full JSON configuration of the virtual robot controller. This can be obtained from the physical controller\'s configuration via [getVirtualControllerConfiguration](#/operations/getVirtualControllerConfiguration). - **extracted_motion_group_id** (required when using json): The motion group identifier to extract from the provided JSON configuration. - **motion_group**: Unique identifier for the motion group to be added. - **initial_joint_position**: Specifies the initial joint position for the added motion group. <!-- theme: info --> > #### NOTE > > When a motion group is added, **the virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or appear outdated in the UI. > - Motion group changes are not immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself **does not wait until the restart and re-synchronization are complete**. > This means that immediately after a successful response, the new motion group may not yet be available for use.
|
|
8718
8824
|
* @summary Add Motion Group
|
|
@@ -8722,7 +8828,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8722
8828
|
* @param {*} [options] Override http request option.
|
|
8723
8829
|
* @throws {RequiredError}
|
|
8724
8830
|
*/
|
|
8725
|
-
addVirtualControllerMotionGroup(cell: string, controller: string, addVirtualControllerMotionGroupRequest: AddVirtualControllerMotionGroupRequest, options?: RawAxiosRequestConfig): Promise<
|
|
8831
|
+
addVirtualControllerMotionGroup(cell: string, controller: string, addVirtualControllerMotionGroupRequest: AddVirtualControllerMotionGroupRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8726
8832
|
/**
|
|
8727
8833
|
* 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. <!-- theme: info --> > #### NOTE > > When adding or updating a TCP, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear. > - The TCP may not be immediately visible or appear outdated in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the TCP is available for operation. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > A successful response indicates that the request was accepted, but the TCP may not yet be visible nor usable.
|
|
8728
8834
|
* @summary Add TCP
|
|
@@ -8734,7 +8840,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8734
8840
|
* @param {*} [options] Override http request option.
|
|
8735
8841
|
* @throws {RequiredError}
|
|
8736
8842
|
*/
|
|
8737
|
-
addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<
|
|
8843
|
+
addVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, robotTcpData: RobotTcpData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8738
8844
|
/**
|
|
8739
8845
|
* Deletes a coordinate system from the virtual controller. This will remove the coordinate system from the list of coordinate systems and also remove all dependent coordinate systems that use the deleted coordinate system as reference. <!-- theme: info --> > #### NOTE > > When a new coordinate system is removed, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or appear outdated in the UI. > - Coordinate system changes are not immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > This means that immediately after a successful response, the new coordinate system may not yet be available for visualization or program execution.
|
|
8740
8846
|
* @summary Delete Coordinate System
|
|
@@ -8745,7 +8851,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8745
8851
|
* @param {*} [options] Override http request option.
|
|
8746
8852
|
* @throws {RequiredError}
|
|
8747
8853
|
*/
|
|
8748
|
-
deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<
|
|
8854
|
+
deleteVirtualControllerCoordinateSystem(cell: string, controller: string, coordinateSystem: string, deleteDependent?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8749
8855
|
/**
|
|
8750
8856
|
* Removes a motion group configuration from the virtual controller. <!-- theme: info --> > #### NOTE > > When a motion group is removed, **the virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or appear outdated in the UI. > - Motion group changes are not immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself **does not wait until the restart and re-synchronization are complete**.
|
|
8751
8857
|
* @summary Delete Motion Group
|
|
@@ -8755,7 +8861,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8755
8861
|
* @param {*} [options] Override http request option.
|
|
8756
8862
|
* @throws {RequiredError}
|
|
8757
8863
|
*/
|
|
8758
|
-
deleteVirtualControllerMotionGroup(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
8864
|
+
deleteVirtualControllerMotionGroup(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8759
8865
|
/**
|
|
8760
8866
|
* Removes the TCP (Tool Center Point) from the motion group. An unknown TCP is a valid input and will simply be ignored. <!-- theme: info --> > #### NOTE > > When removing a TCP, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear. > - The removal of the TCP may not be immediately visible or appear outdated in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > A successful response indicates that the request was accepted, but the then used TCP may not yet be visible nor usable.
|
|
8761
8867
|
* @summary Remove TCP
|
|
@@ -8766,7 +8872,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8766
8872
|
* @param {*} [options] Override http request option.
|
|
8767
8873
|
* @throws {RequiredError}
|
|
8768
8874
|
*/
|
|
8769
|
-
deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<
|
|
8875
|
+
deleteVirtualControllerTcp(cell: string, controller: string, motionGroup: string, tcp: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8770
8876
|
/**
|
|
8771
8877
|
* Requests the Emergency Stop state of the virtual robot controller. Use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState) to get the Emergency Stop state with `safety_state` regardless of the controller type. > **NOTE** > > The Emergency Stop state can only be changed when using virtual robot controllers.
|
|
8772
8878
|
* @summary Get Emergency Stop State
|
|
@@ -8775,7 +8881,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8775
8881
|
* @param {*} [options] Override http request option.
|
|
8776
8882
|
* @throws {RequiredError}
|
|
8777
8883
|
*/
|
|
8778
|
-
getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8884
|
+
getEmergencyStop(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Flag, any>>;
|
|
8779
8885
|
/**
|
|
8780
8886
|
* Get the current motion group state which provides values for the joints\' position, velocity and acceleration.
|
|
8781
8887
|
* @summary Get Motion Group State
|
|
@@ -8785,7 +8891,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8785
8891
|
* @param {*} [options] Override http request option.
|
|
8786
8892
|
* @throws {RequiredError}
|
|
8787
8893
|
*/
|
|
8788
|
-
getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
8894
|
+
getMotionGroupState(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupJoints, any>>;
|
|
8789
8895
|
/**
|
|
8790
8896
|
* Gets information on the motion group.
|
|
8791
8897
|
* @summary Motion Group Description
|
|
@@ -8794,7 +8900,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8794
8900
|
* @param {*} [options] Override http request option.
|
|
8795
8901
|
* @throws {RequiredError}
|
|
8796
8902
|
*/
|
|
8797
|
-
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8903
|
+
getMotionGroups(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<MotionGroupInfo[], any>>;
|
|
8798
8904
|
/**
|
|
8799
8905
|
* Requests the operation mode of the virtual robot controller. To get the operation mode regardless of the controller type, use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState). > **NOTE** > > The operation mode can only be changed via API when using virtual robot controllers.
|
|
8800
8906
|
* @summary Get Operation Mode
|
|
@@ -8803,7 +8909,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8803
8909
|
* @param {*} [options] Override http request option.
|
|
8804
8910
|
* @throws {RequiredError}
|
|
8805
8911
|
*/
|
|
8806
|
-
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8912
|
+
getOperationMode(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<OpMode, any>>;
|
|
8807
8913
|
/**
|
|
8808
8914
|
* Gets motion group mounting. The motion group is based on the origin of the returned coordinate system.
|
|
8809
8915
|
* @summary Get Mounting
|
|
@@ -8813,7 +8919,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8813
8919
|
* @param {*} [options] Override http request option.
|
|
8814
8920
|
* @throws {RequiredError}
|
|
8815
8921
|
*/
|
|
8816
|
-
getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
8922
|
+
getVirtualControllerMounting(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
|
|
8817
8923
|
/**
|
|
8818
8924
|
* Lists all coordinate systems on the robot controller.
|
|
8819
8925
|
* @summary List Coordinate Systems
|
|
@@ -8822,7 +8928,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8822
8928
|
* @param {*} [options] Override http request option.
|
|
8823
8929
|
* @throws {RequiredError}
|
|
8824
8930
|
*/
|
|
8825
|
-
listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
8931
|
+
listVirtualControllerCoordinateSystems(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem[], any>>;
|
|
8826
8932
|
/**
|
|
8827
8933
|
* Lists TCPs of the motion group. An empty TCP list is valid, e.g., for external axes.
|
|
8828
8934
|
* @summary List TCPs
|
|
@@ -8832,7 +8938,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8832
8938
|
* @param {*} [options] Override http request option.
|
|
8833
8939
|
* @throws {RequiredError}
|
|
8834
8940
|
*/
|
|
8835
|
-
listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<
|
|
8941
|
+
listVirtualControllerTcps(cell: string, controller: string, motionGroup: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<RobotTcp[], any>>;
|
|
8836
8942
|
/**
|
|
8837
8943
|
* Activates or releases the Emergency Stop on the virtual robot controller. Activating the Emergency Stop stops the execution of all motions. The stop is executed on physical controllers immediately not gracefully and not on paths. Due to restricted physical behavior of the virtual robot controller, the Emergency Stop is executed on paths. To return to normal operation the Emergency Stop needs to be released. Use [getCurrentMotionGroupState](#/operations/getCurrentMotionGroupState) to get the Emergency Stop state with `safety_state` regardless of the controller type. > **NOTE** > > The Emergency Stop state can only be changed via API when using virtual robot controllers.
|
|
8838
8944
|
* @summary Push or Release Emergency Stop
|
|
@@ -8842,7 +8948,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8842
8948
|
* @param {*} [options] Override http request option.
|
|
8843
8949
|
* @throws {RequiredError}
|
|
8844
8950
|
*/
|
|
8845
|
-
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<
|
|
8951
|
+
setEmergencyStop(cell: string, controller: string, active?: boolean, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8846
8952
|
/**
|
|
8847
8953
|
* 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. <!-- theme: info --> > #### NOTE > > Only use the endpoint when the motion group is in monitor mode. If the motion group is controlled, currently jogging or planning motions, > the values are overridden by the controller or an error may occur.
|
|
8848
8954
|
* @summary Set Motion Group State
|
|
@@ -8853,7 +8959,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8853
8959
|
* @param {*} [options] Override http request option.
|
|
8854
8960
|
* @throws {RequiredError}
|
|
8855
8961
|
*/
|
|
8856
|
-
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<
|
|
8962
|
+
setMotionGroupState(cell: string, controller: string, motionGroup: string, motionGroupJoints: MotionGroupJoints, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8857
8963
|
/**
|
|
8858
8964
|
* 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](#/operations/getCurrentMotionGroupState). > **NOTE** > > The operation mode can only be changed via API when using virtual robot controllers.
|
|
8859
8965
|
* @summary Set Operation Mode
|
|
@@ -8863,7 +8969,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8863
8969
|
* @param {*} [options] Override http request option.
|
|
8864
8970
|
* @throws {RequiredError}
|
|
8865
8971
|
*/
|
|
8866
|
-
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<
|
|
8972
|
+
setOperationMode(cell: string, controller: string, mode: OperationMode, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
8867
8973
|
/**
|
|
8868
8974
|
* Sets the motion group mounting by specifying a coordinate system. The motion group will be based on the coordinate system\'s origin. The coordinate system defines a transformation offset, which consists of: - A unique identifier - A user-facing name - An offset in another coordinate system, referenced by the unique identifier of the reference coordinate system. <!-- theme: info --> > #### Changing the mounting configuration is considered a setup change > > When the mounting is set to a new coordinate system, the **virtual robot is restarted** to apply the new configuration. > > During this restart: > - Robot visualization can temporarily disappear or not reflect the new mounting immediately. > - Motion group state and coordinate system alignment may not be immediately visible in visualizations. > - All connections to virtual robot are closed and re-established, which introduces a short delay before the system is fully operational again. > > The API call itself does **not wait until the restart and re-synchronization are complete**. > A successful response indicates that the request was accepted, but the updated mounting may not yet be visible.
|
|
8869
8975
|
* @summary Set Mounting
|
|
@@ -8874,7 +8980,7 @@ declare class VirtualControllerApi extends BaseAPI {
|
|
|
8874
8980
|
* @param {*} [options] Override http request option.
|
|
8875
8981
|
* @throws {RequiredError}
|
|
8876
8982
|
*/
|
|
8877
|
-
setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<
|
|
8983
|
+
setVirtualControllerMounting(cell: string, controller: string, motionGroup: string, coordinateSystem: CoordinateSystem, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CoordinateSystem, any>>;
|
|
8878
8984
|
}
|
|
8879
8985
|
/**
|
|
8880
8986
|
* VirtualControllerBehaviorApi - axios parameter creator
|
|
@@ -9018,7 +9124,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
9018
9124
|
* @param {*} [options] Override http request option.
|
|
9019
9125
|
* @throws {RequiredError}
|
|
9020
9126
|
*/
|
|
9021
|
-
externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<
|
|
9127
|
+
externalJointsStream(cell: string, controller: string, externalJointStreamRequest: ExternalJointStreamRequest, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ExternalJointStreamDatapoint[], any>>;
|
|
9022
9128
|
/**
|
|
9023
9129
|
* Get the cycle time of controller communication in [ms].
|
|
9024
9130
|
* @summary Get Cycle Time
|
|
@@ -9027,7 +9133,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
9027
9133
|
* @param {*} [options] Override http request option.
|
|
9028
9134
|
* @throws {RequiredError}
|
|
9029
9135
|
*/
|
|
9030
|
-
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
9136
|
+
getCycleTime(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<CycleTime, any>>;
|
|
9031
9137
|
/**
|
|
9032
9138
|
* Get the current virtual controller behavior. See [setVirtualControllerBehavior](#/operations/setVirtualControllerBehavior) and the body for details.
|
|
9033
9139
|
* @summary Get Behavior
|
|
@@ -9036,7 +9142,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
9036
9142
|
* @param {*} [options] Override http request option.
|
|
9037
9143
|
* @throws {RequiredError}
|
|
9038
9144
|
*/
|
|
9039
|
-
getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<
|
|
9145
|
+
getVirtualControllerBehavior(cell: string, controller: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<Behavior, any>>;
|
|
9040
9146
|
/**
|
|
9041
9147
|
* Set virtual controller behavior. See query parameters for details.
|
|
9042
9148
|
* @summary Set Behavior
|
|
@@ -9046,7 +9152,7 @@ declare class VirtualControllerBehaviorApi extends BaseAPI {
|
|
|
9046
9152
|
* @param {*} [options] Override http request option.
|
|
9047
9153
|
* @throws {RequiredError}
|
|
9048
9154
|
*/
|
|
9049
|
-
setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<
|
|
9155
|
+
setVirtualControllerBehavior(cell: string, controller: string, behavior?: Behavior, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
9050
9156
|
}
|
|
9051
9157
|
/**
|
|
9052
9158
|
* VirtualControllerInputsOutputsApi - axios parameter creator
|
|
@@ -9175,7 +9281,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
9175
9281
|
* @param {*} [options] Override http request option.
|
|
9176
9282
|
* @throws {RequiredError}
|
|
9177
9283
|
*/
|
|
9178
|
-
listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<
|
|
9284
|
+
listIOs(cell: string, controller: string, ios: Array<string>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IOValue[], any>>;
|
|
9179
9285
|
/**
|
|
9180
9286
|
* 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 and no filters are specified in the request, all available inputs/outputs are retrieved by this endpoint. - If a filter, e.g., `direction`, `value_type`, `group` is applied, only matching inputs/outputs are returned.
|
|
9181
9287
|
* @summary List Descriptions
|
|
@@ -9188,7 +9294,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
9188
9294
|
* @param {*} [options] Override http request option.
|
|
9189
9295
|
* @throws {RequiredError}
|
|
9190
9296
|
*/
|
|
9191
|
-
listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<
|
|
9297
|
+
listVirtualControllerIODescriptions(cell: string, controller: string, ios?: Array<string>, direction?: IODirection, valueType?: IOValueType, group?: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription[], any>>;
|
|
9192
9298
|
/**
|
|
9193
9299
|
* Sets a list of values of a virtual controller inputs/outputs.
|
|
9194
9300
|
* @summary Set Input/Ouput Values
|
|
@@ -9198,7 +9304,7 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
|
|
|
9198
9304
|
* @param {*} [options] Override http request option.
|
|
9199
9305
|
* @throws {RequiredError}
|
|
9200
9306
|
*/
|
|
9201
|
-
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<
|
|
9307
|
+
setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
|
|
9202
9308
|
}
|
|
9203
9309
|
//#endregion
|
|
9204
|
-
export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, AddVirtualControllerMotionGroupRequest, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BlendingSpace, 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, CollisionErrorKindEnum, 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, InconsistentTrajectorySizeErrorKindEnum, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InvalidDofErrorKindEnum, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimitExceededErrorKindEnum, JointLimits, JointTrajectory, JointTypeEnum, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, KinematicModel, 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, MotionGroupFromJson, MotionGroupFromType, MotionGroupInfo, MotionGroupJoints, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, NanValueError, NanValueErrorKindEnum, NanValueErrorNanValue, NetworkDevice, NetworkInterface, NetworkState, NetworkStateConnectionTypeEnum, 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, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, 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, TcpRequiredErrorKindEnum, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, TorqueExceededError, TorqueExceededErrorKindEnum, 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, UpdateCellVersionRequest, UpdateNovaVersionRequest, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, operationServerMap };
|
|
9310
|
+
export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, AddVirtualControllerMotionGroupRequest, ApiVersion, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BlendingSpace, 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, CollisionErrorKindEnum, 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, InconsistentTrajectorySizeErrorKindEnum, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDofError, InvalidDofErrorInvalidDof, InvalidDofErrorKindEnum, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceededError, JointLimitExceededErrorKindEnum, JointLimits, JointTrajectory, JointTypeEnum, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, KinematicModel, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, ListTrajectoriesResponse, Manufacturer, MergeTrajectories422Response, MergeTrajectoriesError, MergeTrajectoriesRequest, MergeTrajectoriesResponse, MergeTrajectoriesResponseFeedbackInner, MergeTrajectoriesSegment, MergeTrajectoriesValidationError, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupDescription, MotionGroupFromJson, MotionGroupFromType, MotionGroupInfo, MotionGroupJoints, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, NanValueError, NanValueErrorKindEnum, NanValueErrorNanValue, NetworkDevice, NetworkInterface, NetworkState, NetworkStateConnectionTypeEnum, 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, RobotConfigurationsApi, RobotConfigurationsApiAxiosParamCreator, RobotConfigurationsApiFactory, RobotConfigurationsApiFp, 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, TcpRequiredErrorKindEnum, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, TorqueExceededError, TorqueExceededErrorKindEnum, 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, TrajectorySection, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateCellVersionRequest, UpdateNovaVersionRequest, ValidationError, ValidationError2, ValidationErrorLocInner, VersionApi, VersionApiAxiosParamCreator, VersionApiFactory, VersionApiFp, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, operationServerMap };
|