@wandelbots/nova-api 25.9.0-dev.30 → 25.9.0-dev.32

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.
@@ -478,6 +478,151 @@ declare const BoxBoxTypeEnum: {
478
478
  readonly Full: "FULL";
479
479
  };
480
480
  type BoxBoxTypeEnum = typeof BoxBoxTypeEnum[keyof typeof BoxBoxTypeEnum];
481
+ /**
482
+ * MODBUS client inputs/outputs service configuration.
483
+ * @export
484
+ * @interface BusIOModbusClient
485
+ */
486
+ interface BusIOModbusClient {
487
+ /**
488
+ *
489
+ * @type {string}
490
+ * @memberof BusIOModbusClient
491
+ */
492
+ 'bus_type'?: BusIOModbusClientBusTypeEnum;
493
+ /**
494
+ *
495
+ * @type {BusIOModbusTCPClient}
496
+ * @memberof BusIOModbusClient
497
+ */
498
+ 'network': BusIOModbusTCPClient;
499
+ }
500
+ declare const BusIOModbusClientBusTypeEnum: {
501
+ readonly ModbusClient: "modbus_client";
502
+ };
503
+ type BusIOModbusClientBusTypeEnum = typeof BusIOModbusClientBusTypeEnum[keyof typeof BusIOModbusClientBusTypeEnum];
504
+ /**
505
+ * MODBUS server inputs/outputs service configuration.
506
+ * @export
507
+ * @interface BusIOModbusServer
508
+ */
509
+ interface BusIOModbusServer {
510
+ /**
511
+ *
512
+ * @type {string}
513
+ * @memberof BusIOModbusServer
514
+ */
515
+ 'bus_type'?: BusIOModbusServerBusTypeEnum;
516
+ /**
517
+ *
518
+ * @type {BusIOModbusTCPServer}
519
+ * @memberof BusIOModbusServer
520
+ */
521
+ 'network': BusIOModbusTCPServer;
522
+ /**
523
+ * Number of connections this MODBUS server can handle.
524
+ * @type {number}
525
+ * @memberof BusIOModbusServer
526
+ */
527
+ 'connections': number;
528
+ /**
529
+ * Size of the Coils memory area.
530
+ * @type {number}
531
+ * @memberof BusIOModbusServer
532
+ */
533
+ 'coils_size': number;
534
+ /**
535
+ * Size of the Discrete Inputs memory area.
536
+ * @type {number}
537
+ * @memberof BusIOModbusServer
538
+ */
539
+ 'discrete_inputs_size': number;
540
+ /**
541
+ * Size of the Holding Registers memory area.
542
+ * @type {number}
543
+ * @memberof BusIOModbusServer
544
+ */
545
+ 'holding_registers_size': number;
546
+ /**
547
+ * Size of the Input Registers memory area.
548
+ * @type {number}
549
+ * @memberof BusIOModbusServer
550
+ */
551
+ 'input_registers_size': number;
552
+ }
553
+ declare const BusIOModbusServerBusTypeEnum: {
554
+ readonly ModbusServer: "modbus_server";
555
+ };
556
+ type BusIOModbusServerBusTypeEnum = typeof BusIOModbusServerBusTypeEnum[keyof typeof BusIOModbusServerBusTypeEnum];
557
+ /**
558
+ *
559
+ * @export
560
+ * @interface BusIOModbusTCPClient
561
+ */
562
+ interface BusIOModbusTCPClient {
563
+ /**
564
+ *
565
+ * @type {string}
566
+ * @memberof BusIOModbusTCPClient
567
+ */
568
+ 'network_type'?: BusIOModbusTCPClientNetworkTypeEnum;
569
+ /**
570
+ * IP address of the MODBUS server to establish communication with.
571
+ * @type {string}
572
+ * @memberof BusIOModbusTCPClient
573
+ */
574
+ 'ip': string;
575
+ /**
576
+ * Port number of the MODBUS server to establish communication with.
577
+ * @type {number}
578
+ * @memberof BusIOModbusTCPClient
579
+ */
580
+ 'port': number;
581
+ }
582
+ declare const BusIOModbusTCPClientNetworkTypeEnum: {
583
+ readonly Tcp: "tcp";
584
+ };
585
+ type BusIOModbusTCPClientNetworkTypeEnum = typeof BusIOModbusTCPClientNetworkTypeEnum[keyof typeof BusIOModbusTCPClientNetworkTypeEnum];
586
+ /**
587
+ *
588
+ * @export
589
+ * @interface BusIOModbusTCPServer
590
+ */
591
+ interface BusIOModbusTCPServer {
592
+ /**
593
+ *
594
+ * @type {string}
595
+ * @memberof BusIOModbusTCPServer
596
+ */
597
+ 'network_type'?: BusIOModbusTCPServerNetworkTypeEnum;
598
+ /**
599
+ * Port number of the MODBUS server to establish communication with.
600
+ * @type {number}
601
+ * @memberof BusIOModbusTCPServer
602
+ */
603
+ 'port': number;
604
+ }
605
+ declare const BusIOModbusTCPServerNetworkTypeEnum: {
606
+ readonly Tcp: "tcp";
607
+ };
608
+ type BusIOModbusTCPServerNetworkTypeEnum = typeof BusIOModbusTCPServerNetworkTypeEnum[keyof typeof BusIOModbusTCPServerNetworkTypeEnum];
609
+ /**
610
+ * Virtual MODBUS inputs/outputs service configuration.
611
+ * @export
612
+ * @interface BusIOModbusVirtual
613
+ */
614
+ interface BusIOModbusVirtual {
615
+ /**
616
+ *
617
+ * @type {string}
618
+ * @memberof BusIOModbusVirtual
619
+ */
620
+ 'bus_type'?: BusIOModbusVirtualBusTypeEnum;
621
+ }
622
+ declare const BusIOModbusVirtualBusTypeEnum: {
623
+ readonly ModbusVirtual: "modbus_virtual";
624
+ };
625
+ type BusIOModbusVirtualBusTypeEnum = typeof BusIOModbusVirtualBusTypeEnum[keyof typeof BusIOModbusVirtualBusTypeEnum];
481
626
  /**
482
627
  * PROFINET BUS inputs/outputs service configuration.
483
628
  * @export
@@ -611,6 +756,12 @@ type BusIOProfinetVirtualBusTypeEnum = typeof BusIOProfinetVirtualBusTypeEnum[ke
611
756
  * @export
612
757
  */
613
758
  type BusIOType = {
759
+ bus_type: 'modbus_client';
760
+ } & BusIOModbusClient | {
761
+ bus_type: 'modbus_server';
762
+ } & BusIOModbusServer | {
763
+ bus_type: 'modbus_virtual';
764
+ } & BusIOModbusVirtual | {
614
765
  bus_type: 'profinet';
615
766
  } & BusIOProfinet | {
616
767
  bus_type: 'profinet_virtual';
@@ -3021,7 +3172,7 @@ type Manufacturer = typeof Manufacturer[keyof typeof Manufacturer];
3021
3172
  */
3022
3173
  interface MidpointInsertionAlgorithm {
3023
3174
  /**
3024
- * 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.
3175
+ * 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. It uses internal random sampling with a fixed seed to ensure reproducible results (at least on the same hardware).
3025
3176
  * @type {string}
3026
3177
  * @memberof MidpointInsertionAlgorithm
3027
3178
  */
@@ -3037,6 +3188,124 @@ declare const MidpointInsertionAlgorithmAlgorithmNameEnum: {
3037
3188
  readonly MidpointInsertionAlgorithm: "MidpointInsertionAlgorithm";
3038
3189
  };
3039
3190
  type MidpointInsertionAlgorithmAlgorithmNameEnum = typeof MidpointInsertionAlgorithmAlgorithmNameEnum[keyof typeof MidpointInsertionAlgorithmAlgorithmNameEnum];
3191
+ /**
3192
+ *
3193
+ * @export
3194
+ * @interface ModbusIO
3195
+ */
3196
+ interface ModbusIO {
3197
+ /**
3198
+ * Descriptive name or note for the input/output variable.
3199
+ * @type {string}
3200
+ * @memberof ModbusIO
3201
+ */
3202
+ 'description': string;
3203
+ /**
3204
+ * The byte address of the input/output variable in the MODBUS device, e.g., NOVA\'s MODBUS service. Used to locate the input/output variable within the device\'s memory or data structure.
3205
+ * @type {number}
3206
+ * @memberof ModbusIO
3207
+ */
3208
+ 'address': number;
3209
+ /**
3210
+ *
3211
+ * @type {ModbusIOTypeEnum}
3212
+ * @memberof ModbusIO
3213
+ */
3214
+ 'type': ModbusIOTypeEnum;
3215
+ /**
3216
+ * The byte sequence of the input/output variable, indicating the order of bytes in memory for the MODBUS device, e.g., NOVA\'s MODBUS service.
3217
+ * @type {ModbusIOByteOrder}
3218
+ * @memberof ModbusIO
3219
+ */
3220
+ 'byte_order': ModbusIOByteOrder;
3221
+ /**
3222
+ * The area of the input/output variable, indicating the memory region it belongs to for the MODBUS device, e.g., NOVA\'s MODBUS service.
3223
+ * @type {ModbusIOArea}
3224
+ * @memberof ModbusIO
3225
+ */
3226
+ 'area': ModbusIOArea;
3227
+ /**
3228
+ * The unique identifier for the input/output value. Used to reference the input/output variable in the MODBUS device, e.g., NOVA\'s MODBUS service.
3229
+ * @type {string}
3230
+ * @memberof ModbusIO
3231
+ */
3232
+ 'io': string;
3233
+ }
3234
+ /**
3235
+ * Area of the MODBUS input/output variable. Is used to interpret the corresponding bits correctly.
3236
+ * @export
3237
+ * @enum {string}
3238
+ */
3239
+ declare const ModbusIOArea: {
3240
+ readonly ModbusIoAreaUnknown: "MODBUS_IO_AREA_UNKNOWN";
3241
+ readonly ModbusIoAreaCoils: "MODBUS_IO_AREA_COILS";
3242
+ readonly ModbusIoAreaDiscreteInputs: "MODBUS_IO_AREA_DISCRETE_INPUTS";
3243
+ readonly ModbusIoAreaHoldingRegisters: "MODBUS_IO_AREA_HOLDING_REGISTERS";
3244
+ readonly ModbusIoAreaInputRegisters: "MODBUS_IO_AREA_INPUT_REGISTERS";
3245
+ };
3246
+ type ModbusIOArea = typeof ModbusIOArea[keyof typeof ModbusIOArea];
3247
+ /**
3248
+ * Byte order of the MODBUS input/output variable. Used to interpret the corresponding bits correctly.
3249
+ * @export
3250
+ * @enum {string}
3251
+ */
3252
+ declare const ModbusIOByteOrder: {
3253
+ readonly ModbusIoByteOrderUnknown: "MODBUS_IO_BYTE_ORDER_UNKNOWN";
3254
+ readonly ModbusIoByteOrderAbcd: "MODBUS_IO_BYTE_ORDER_ABCD";
3255
+ readonly ModbusIoByteOrderBadc: "MODBUS_IO_BYTE_ORDER_BADC";
3256
+ readonly ModbusIoByteOrderCdab: "MODBUS_IO_BYTE_ORDER_CDAB";
3257
+ readonly ModbusIoByteOrderDcba: "MODBUS_IO_BYTE_ORDER_DCBA";
3258
+ };
3259
+ type ModbusIOByteOrder = typeof ModbusIOByteOrder[keyof typeof ModbusIOByteOrder];
3260
+ /**
3261
+ *
3262
+ * @export
3263
+ * @interface ModbusIOData
3264
+ */
3265
+ interface ModbusIOData {
3266
+ /**
3267
+ * Descriptive name or note for the input/output variable.
3268
+ * @type {string}
3269
+ * @memberof ModbusIOData
3270
+ */
3271
+ 'description': string;
3272
+ /**
3273
+ * The byte address of the input/output variable in the MODBUS device, e.g., NOVA\'s MODBUS service. Used to locate the input/output variable within the device\'s memory or data structure.
3274
+ * @type {number}
3275
+ * @memberof ModbusIOData
3276
+ */
3277
+ 'address': number;
3278
+ /**
3279
+ *
3280
+ * @type {ModbusIOTypeEnum}
3281
+ * @memberof ModbusIOData
3282
+ */
3283
+ 'type': ModbusIOTypeEnum;
3284
+ /**
3285
+ * The byte sequence of the input/output variable, indicating the order of bytes in memory for the MODBUS device, e.g., NOVA\'s MODBUS service.
3286
+ * @type {ModbusIOByteOrder}
3287
+ * @memberof ModbusIOData
3288
+ */
3289
+ 'byte_order': ModbusIOByteOrder;
3290
+ /**
3291
+ * The area of the input/output variable, indicating the memory region it belongs to for the MODBUS device, e.g., NOVA\'s MODBUS service.
3292
+ * @type {ModbusIOArea}
3293
+ * @memberof ModbusIOData
3294
+ */
3295
+ 'area': ModbusIOArea;
3296
+ }
3297
+ /**
3298
+ * Value type of the MODBUS input/output variable. Used to interpret the corresponding bits correctly.
3299
+ * @export
3300
+ * @enum {string}
3301
+ */
3302
+ declare const ModbusIOTypeEnum: {
3303
+ readonly ModbusIoTypeUnknown: "MODBUS_IO_TYPE_UNKNOWN";
3304
+ readonly ModbusIoTypeBool: "MODBUS_IO_TYPE_BOOL";
3305
+ readonly ModbusIoTypeUint16: "MODBUS_IO_TYPE_UINT16";
3306
+ readonly ModbusIoTypeFloat32: "MODBUS_IO_TYPE_FLOAT32";
3307
+ };
3308
+ type ModbusIOTypeEnum = typeof ModbusIOTypeEnum[keyof typeof ModbusIOTypeEnum];
3040
3309
  /**
3041
3310
  *
3042
3311
  * @export
@@ -4451,7 +4720,7 @@ interface ProgramStartRequest {
4451
4720
  */
4452
4721
  interface RRTConnectAlgorithm {
4453
4722
  /**
4454
- * Algorithm discriminator. RRT Connect algorithm configuration for collision-free path planning. Rapidly-exploring Random Trees (RRT) builds trees of valid configurations by randomly sampling the joint space and connecting feasible points with JointPTP motions. RRT Connect grows two trees simultaneously from start and target positions until they meet. This is a custom implementation optimized for manipulator kinematics and collision checking in industrial contexts.
4723
+ * Algorithm discriminator. RRT Connect algorithm configuration for collision-free path planning. Rapidly-exploring Random Trees (RRT) builds trees of valid configurations by randomly sampling the joint space and connecting feasible points with JointPTP motions. RRT Connect grows two trees simultaneously from start and target positions until they meet. This is a custom implementation optimized for manipulator kinematics and collision checking in industrial contexts. The random sampling uses a fixed seed to ensure reproducible results (at least on the same hardware).
4455
4724
  * @type {string}
4456
4725
  * @memberof RRTConnectAlgorithm
4457
4726
  */
@@ -5623,11 +5892,13 @@ declare const VirtualControllerTypes: {
5623
5892
  readonly KukaLbrIisy11R1300: "kuka-lbr_iisy_11_r1300";
5624
5893
  readonly UniversalrobotsUr10cb: "universalrobots-ur10cb";
5625
5894
  readonly UniversalrobotsUr10e: "universalrobots-ur10e";
5895
+ readonly UniversalrobotsUr12e: "universalrobots-ur12e";
5626
5896
  readonly UniversalrobotsUr16e: "universalrobots-ur16e";
5627
5897
  readonly UniversalrobotsUr20e: "universalrobots-ur20e";
5628
5898
  readonly UniversalrobotsUr3e: "universalrobots-ur3e";
5629
5899
  readonly UniversalrobotsUr5cb: "universalrobots-ur5cb";
5630
5900
  readonly UniversalrobotsUr5e: "universalrobots-ur5e";
5901
+ readonly UniversalrobotsUr7e: "universalrobots-ur7e";
5631
5902
  readonly YaskawaAr1440: "yaskawa-ar1440";
5632
5903
  readonly YaskawaAr1730: "yaskawa-ar1730";
5633
5904
  readonly YaskawaAr2010: "yaskawa-ar2010";
@@ -5992,6 +6263,16 @@ declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configurati
5992
6263
  * @throws {RequiredError}
5993
6264
  */
5994
6265
  addBusIOService: (cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6266
+ /**
6267
+ * 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](listModbusIOs).
6268
+ * @summary Add MODBUS Input/Output
6269
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6270
+ * @param {string} io Unique identifier to address an Input/Output in the cell.
6271
+ * @param {ModbusIOData} modbusIOData
6272
+ * @param {*} [options] Override http request option.
6273
+ * @throws {RequiredError}
6274
+ */
6275
+ addModbusIO: (cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5995
6276
  /**
5996
6277
  * 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](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](listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal).
5997
6278
  * @summary Add PROFINET Input/Output
@@ -6011,6 +6292,15 @@ declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configurati
6011
6292
  * @throws {RequiredError}
6012
6293
  */
6013
6294
  clearBusIOService: (cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6295
+ /**
6296
+ * Removes an input/output variable configuration from the MODBUS device, e.g., NOVA\'s MODBUS service.
6297
+ * @summary Remove MODBUS Input/Ouptut
6298
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6299
+ * @param {string} io Unique identifier to address an Input/Output in the cell.
6300
+ * @param {*} [options] Override http request option.
6301
+ * @throws {RequiredError}
6302
+ */
6303
+ deleteModbusIO: (cell: string, io: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6014
6304
  /**
6015
6305
  * Removes an input/output variable configuration from the PROFINET device, e.g., NOVA\'s PROFINET service.
6016
6306
  * @summary Remove PROFINET Input/Ouptut
@@ -6072,7 +6362,15 @@ declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configurati
6072
6362
  */
6073
6363
  listBusIODescriptions: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6074
6364
  /**
6075
- * 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](addProfinetIO) and [setProfinetIOsFromFile](setProfinetIOsFromFile). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal.
6365
+ * List descriptions for all configured input/output variables of the MODBUS service. The input/output descriptions contain information like name, type and address. The input/output direction is given in perspective of the active MODBUS type (service or client). - The byte and bit addresses are the locations in the MODBUS input/output process image the variable points to. - The MODBUS controller as well as NOVA\'s MODBUS service use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA MODBUS service\'s configuration is modified via [addModbusIO](addModbusIO).
6366
+ * @summary List MODBUS Input/Output Configuration
6367
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6368
+ * @param {*} [options] Override http request option.
6369
+ * @throws {RequiredError}
6370
+ */
6371
+ listModbusIOs: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6372
+ /**
6373
+ * 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](addProfinetIO) and [setProfinetIOsFromFile](setProfinetIOsFromFile). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal.
6076
6374
  * @summary List PROFINET Input/Output Configuration
6077
6375
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6078
6376
  * @param {*} [options] Override http request option.
@@ -6113,6 +6411,16 @@ declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
6113
6411
  * @throws {RequiredError}
6114
6412
  */
6115
6413
  addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6414
+ /**
6415
+ * 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](listModbusIOs).
6416
+ * @summary Add MODBUS Input/Output
6417
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6418
+ * @param {string} io Unique identifier to address an Input/Output in the cell.
6419
+ * @param {ModbusIOData} modbusIOData
6420
+ * @param {*} [options] Override http request option.
6421
+ * @throws {RequiredError}
6422
+ */
6423
+ addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6116
6424
  /**
6117
6425
  * 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](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](listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal).
6118
6426
  * @summary Add PROFINET Input/Output
@@ -6132,6 +6440,15 @@ declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
6132
6440
  * @throws {RequiredError}
6133
6441
  */
6134
6442
  clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6443
+ /**
6444
+ * Removes an input/output variable configuration from the MODBUS device, e.g., NOVA\'s MODBUS service.
6445
+ * @summary Remove MODBUS Input/Ouptut
6446
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6447
+ * @param {string} io Unique identifier to address an Input/Output in the cell.
6448
+ * @param {*} [options] Override http request option.
6449
+ * @throws {RequiredError}
6450
+ */
6451
+ deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
6135
6452
  /**
6136
6453
  * Removes an input/output variable configuration from the PROFINET device, e.g., NOVA\'s PROFINET service.
6137
6454
  * @summary Remove PROFINET Input/Ouptut
@@ -6193,7 +6510,15 @@ declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
6193
6510
  */
6194
6511
  listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IODescription2>>>;
6195
6512
  /**
6196
- * 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](addProfinetIO) and [setProfinetIOsFromFile](setProfinetIOsFromFile). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal.
6513
+ * List descriptions for all configured input/output variables of the MODBUS service. The input/output descriptions contain information like name, type and address. The input/output direction is given in perspective of the active MODBUS type (service or client). - The byte and bit addresses are the locations in the MODBUS input/output process image the variable points to. - The MODBUS controller as well as NOVA\'s MODBUS service use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA MODBUS service\'s configuration is modified via [addModbusIO](addModbusIO).
6514
+ * @summary List MODBUS Input/Output Configuration
6515
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6516
+ * @param {*} [options] Override http request option.
6517
+ * @throws {RequiredError}
6518
+ */
6519
+ listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ModbusIO>>>;
6520
+ /**
6521
+ * 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](addProfinetIO) and [setProfinetIOsFromFile](setProfinetIOsFromFile). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal.
6197
6522
  * @summary List PROFINET Input/Output Configuration
6198
6523
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6199
6524
  * @param {*} [options] Override http request option.
@@ -6234,6 +6559,16 @@ declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePa
6234
6559
  * @throws {RequiredError}
6235
6560
  */
6236
6561
  addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
6562
+ /**
6563
+ * 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](listModbusIOs).
6564
+ * @summary Add MODBUS Input/Output
6565
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6566
+ * @param {string} io Unique identifier to address an Input/Output in the cell.
6567
+ * @param {ModbusIOData} modbusIOData
6568
+ * @param {*} [options] Override http request option.
6569
+ * @throws {RequiredError}
6570
+ */
6571
+ addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): AxiosPromise<void>;
6237
6572
  /**
6238
6573
  * 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](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](listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal).
6239
6574
  * @summary Add PROFINET Input/Output
@@ -6253,6 +6588,15 @@ declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePa
6253
6588
  * @throws {RequiredError}
6254
6589
  */
6255
6590
  clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
6591
+ /**
6592
+ * Removes an input/output variable configuration from the MODBUS device, e.g., NOVA\'s MODBUS service.
6593
+ * @summary Remove MODBUS Input/Ouptut
6594
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6595
+ * @param {string} io Unique identifier to address an Input/Output in the cell.
6596
+ * @param {*} [options] Override http request option.
6597
+ * @throws {RequiredError}
6598
+ */
6599
+ deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
6256
6600
  /**
6257
6601
  * Removes an input/output variable configuration from the PROFINET device, e.g., NOVA\'s PROFINET service.
6258
6602
  * @summary Remove PROFINET Input/Ouptut
@@ -6314,7 +6658,15 @@ declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePa
6314
6658
  */
6315
6659
  listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<IODescription2>>;
6316
6660
  /**
6317
- * 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](addProfinetIO) and [setProfinetIOsFromFile](setProfinetIOsFromFile). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal.
6661
+ * List descriptions for all configured input/output variables of the MODBUS service. The input/output descriptions contain information like name, type and address. The input/output direction is given in perspective of the active MODBUS type (service or client). - The byte and bit addresses are the locations in the MODBUS input/output process image the variable points to. - The MODBUS controller as well as NOVA\'s MODBUS service use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA MODBUS service\'s configuration is modified via [addModbusIO](addModbusIO).
6662
+ * @summary List MODBUS Input/Output Configuration
6663
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6664
+ * @param {*} [options] Override http request option.
6665
+ * @throws {RequiredError}
6666
+ */
6667
+ listModbusIOs(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ModbusIO>>;
6668
+ /**
6669
+ * 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](addProfinetIO) and [setProfinetIOsFromFile](setProfinetIOsFromFile). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal.
6318
6670
  * @summary List PROFINET Input/Output Configuration
6319
6671
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6320
6672
  * @param {*} [options] Override http request option.
@@ -6358,6 +6710,17 @@ declare class BUSInputsOutputsApi extends BaseAPI {
6358
6710
  * @memberof BUSInputsOutputsApi
6359
6711
  */
6360
6712
  addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6713
+ /**
6714
+ * 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](listModbusIOs).
6715
+ * @summary Add MODBUS Input/Output
6716
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6717
+ * @param {string} io Unique identifier to address an Input/Output in the cell.
6718
+ * @param {ModbusIOData} modbusIOData
6719
+ * @param {*} [options] Override http request option.
6720
+ * @throws {RequiredError}
6721
+ * @memberof BUSInputsOutputsApi
6722
+ */
6723
+ addModbusIO(cell: string, io: string, modbusIOData: ModbusIOData, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6361
6724
  /**
6362
6725
  * 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](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](listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal).
6363
6726
  * @summary Add PROFINET Input/Output
@@ -6379,6 +6742,16 @@ declare class BUSInputsOutputsApi extends BaseAPI {
6379
6742
  * @memberof BUSInputsOutputsApi
6380
6743
  */
6381
6744
  clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6745
+ /**
6746
+ * Removes an input/output variable configuration from the MODBUS device, e.g., NOVA\'s MODBUS service.
6747
+ * @summary Remove MODBUS Input/Ouptut
6748
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6749
+ * @param {string} io Unique identifier to address an Input/Output in the cell.
6750
+ * @param {*} [options] Override http request option.
6751
+ * @throws {RequiredError}
6752
+ * @memberof BUSInputsOutputsApi
6753
+ */
6754
+ deleteModbusIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
6382
6755
  /**
6383
6756
  * Removes an input/output variable configuration from the PROFINET device, e.g., NOVA\'s PROFINET service.
6384
6757
  * @summary Remove PROFINET Input/Ouptut
@@ -6447,7 +6820,16 @@ declare class BUSInputsOutputsApi extends BaseAPI {
6447
6820
  */
6448
6821
  listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<IODescription2[], any>>;
6449
6822
  /**
6450
- * 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](addProfinetIO) and [setProfinetIOsFromFile](setProfinetIOsFromFile). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal.
6823
+ * List descriptions for all configured input/output variables of the MODBUS service. The input/output descriptions contain information like name, type and address. The input/output direction is given in perspective of the active MODBUS type (service or client). - The byte and bit addresses are the locations in the MODBUS input/output process image the variable points to. - The MODBUS controller as well as NOVA\'s MODBUS service use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA MODBUS service\'s configuration is modified via [addModbusIO](addModbusIO).
6824
+ * @summary List MODBUS Input/Output Configuration
6825
+ * @param {string} cell Unique identifier addressing a cell in all API calls.
6826
+ * @param {*} [options] Override http request option.
6827
+ * @throws {RequiredError}
6828
+ * @memberof BUSInputsOutputsApi
6829
+ */
6830
+ listModbusIOs(cell: string, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<ModbusIO[], any>>;
6831
+ /**
6832
+ * 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](addProfinetIO) and [setProfinetIOsFromFile](setProfinetIOsFromFile). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal.
6451
6833
  * @summary List PROFINET Input/Output Configuration
6452
6834
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6453
6835
  * @param {*} [options] Override http request option.
@@ -11144,4 +11526,4 @@ declare class VirtualControllerInputsOutputsApi extends BaseAPI {
11144
11526
  setIOValues(cell: string, controller: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<axios0.AxiosResponse<void, any>>;
11145
11527
  }
11146
11528
  //#endregion
11147
- export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BooleanValue, BooleanValueValueTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, Capsule, CapsuleShapeTypeEnum, CartesianLimits, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, Collider, ColliderShape, Collision, CollisionContact, CollisionError, CollisionFreeAlgorithm, CollisionSetup, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, Flag, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetTrajectoryResponse, HTTPValidationError, HTTPValidationError2, IOBooleanValue, IOBooleanValueValueTypeEnum, IODescription, IODescription2, IODescriptionMin, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsitentTrajectorySize, InconsitentTrajectorySizeInconsistentTrajectorySize, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDof, InvalidDofInvalidDof, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceeded, JointLimits, JointTrajectory, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, ListTrajectoriesResponse, Manufacturer, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupDescription, MotionGroupInfo, MotionGroupJoints, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, NanValue, NanValueNanValue, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotController, RobotControllerConfiguration, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyStateType, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SetIO, SettableRobotSystemMode, SingularityTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequired, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, TorqueExceeded, TorqueExceededTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateNovaVersionRequest, ValidationError, ValidationError2, ValidationErrorLocInner, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualControllerTypes, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, operationServerMap };
11529
+ export { AbbController, AbbControllerEgmServer, AbbControllerKindEnum, ActivateLicenseRequest, AddTrajectoryError, AddTrajectoryErrorData, AddTrajectoryRequest, AddTrajectoryResponse, App, ApplicationApi, ApplicationApiAxiosParamCreator, ApplicationApiFactory, ApplicationApiFp, BASE_PATH, BUSInputsOutputsApi, BUSInputsOutputsApiAxiosParamCreator, BUSInputsOutputsApiFactory, BUSInputsOutputsApiFp, BaseAPI, Behavior, BlendingAuto, BlendingAutoBlendingNameEnum, BlendingPosition, BlendingPositionBlendingNameEnum, BooleanValue, BooleanValueValueTypeEnum, Box, BoxBoxTypeEnum, BoxShapeTypeEnum, BusIOModbusClient, BusIOModbusClientBusTypeEnum, BusIOModbusServer, BusIOModbusServerBusTypeEnum, BusIOModbusTCPClient, BusIOModbusTCPClientNetworkTypeEnum, BusIOModbusTCPServer, BusIOModbusTCPServerNetworkTypeEnum, BusIOModbusVirtual, BusIOModbusVirtualBusTypeEnum, BusIOProfinet, BusIOProfinetBusTypeEnum, BusIOProfinetDefaultRoute, BusIOProfinetIpConfig, BusIOProfinetNetwork, BusIOProfinetVirtual, BusIOProfinetVirtualBusTypeEnum, BusIOType, BusIOsState, BusIOsStateEnum, COLLECTION_FORMATS, Capsule, CapsuleShapeTypeEnum, CartesianLimits, Cell, CellApi, CellApiAxiosParamCreator, CellApiFactory, CellApiFp, Collider, ColliderShape, Collision, CollisionContact, CollisionError, CollisionFreeAlgorithm, CollisionSetup, Comparator, Configuration, ConfigurationArchiveStatus, ConfigurationArchiveStatusCreating, ConfigurationArchiveStatusCreatingStatusEnum, ConfigurationArchiveStatusError, ConfigurationArchiveStatusErrorStatusEnum, ConfigurationArchiveStatusSuccess, ConfigurationArchiveStatusSuccessStatusEnum, ConfigurationParameters, ConfigurationResource, ContainerEnvironmentInner, ContainerImage, ContainerImageSecretsInner, ContainerResources, ContainerStorage, ControllerApi, ControllerApiAxiosParamCreator, ControllerApiFactory, ControllerApiFp, ControllerDescription, ControllerInputsOutputsApi, ControllerInputsOutputsApiAxiosParamCreator, ControllerInputsOutputsApiFactory, ControllerInputsOutputsApiFp, ConvexHull, ConvexHullShapeTypeEnum, CoordinateSystem, CoordinateSystemData, CubicSplineParameter, CycleTime, Cylinder, CylinderShapeTypeEnum, DHParameter, Direction, ErrorInvalidJointCount, ErrorInvalidJointCountErrorFeedbackNameEnum, ErrorJointLimitExceeded, ErrorJointLimitExceededErrorFeedbackNameEnum, ErrorJointPositionCollision, ErrorJointPositionCollisionErrorFeedbackNameEnum, ErrorMaxIterationsExceeded, ErrorMaxIterationsExceededErrorFeedbackNameEnum, Execute, ExecuteDetails, ExecuteJoggingRequest, ExecuteJoggingResponse, ExecuteTrajectoryRequest, ExecuteTrajectoryResponse, ExternalJointStreamDatapoint, ExternalJointStreamRequest, FanucController, FanucControllerKindEnum, FeedbackCollision, FeedbackCollisionErrorFeedbackNameEnum, FeedbackJointLimitExceeded, FeedbackJointLimitExceededErrorFeedbackNameEnum, FeedbackOutOfWorkspace, FeedbackOutOfWorkspaceErrorFeedbackNameEnum, FeedbackSingularity, FeedbackSingularityErrorFeedbackNameEnum, Flag, FloatValue, FloatValueValueTypeEnum, ForwardKinematics422Response, ForwardKinematicsRequest, ForwardKinematicsResponse, ForwardKinematicsValidationError, GetTrajectoryResponse, HTTPValidationError, HTTPValidationError2, IOBooleanValue, IOBooleanValueValueTypeEnum, IODescription, IODescription2, IODescriptionMin, IODirection, IOFloatValue, IOFloatValueValueTypeEnum, IOIntegerValue, IOIntegerValueValueTypeEnum, IOOrigin, IOValue, IOValueType, ImageCredentials, InconsitentTrajectorySize, InconsitentTrajectorySizeInconsistentTrajectorySize, InitializeJoggingRequest, InitializeJoggingRequestMessageTypeEnum, InitializeJoggingResponse, InitializeJoggingResponseKindEnum, InitializeMovementRequest, InitializeMovementRequestMessageTypeEnum, InitializeMovementRequestTrajectory, InitializeMovementResponse, InitializeMovementResponseKindEnum, IntegerValue, IntegerValueValueTypeEnum, InvalidDof, InvalidDofInvalidDof, InverseKinematics422Response, InverseKinematicsRequest, InverseKinematicsResponse, InverseKinematicsValidationError, InverseKinematicsValidationErrorAllOfData, JoggingApi, JoggingApiAxiosParamCreator, JoggingApiFactory, JoggingApiFp, JoggingDetails, JoggingDetailsKindEnum, JoggingDetailsState, JoggingPausedByUser, JoggingPausedByUserKindEnum, JoggingPausedNearCollision, JoggingPausedNearCollisionKindEnum, JoggingPausedNearJointLimit, JoggingPausedNearJointLimitKindEnum, JoggingPausedOnIO, JoggingPausedOnIOKindEnum, JoggingRunning, JoggingRunningKindEnum, JointLimitExceeded, JointLimits, JointTrajectory, JointVelocityRequest, JointVelocityRequestMessageTypeEnum, JointVelocityResponse, JointVelocityResponseKindEnum, KinematicsApi, KinematicsApiAxiosParamCreator, KinematicsApiFactory, KinematicsApiFp, KukaController, KukaControllerKindEnum, KukaControllerRsiServer, License, LicenseApi, LicenseApiAxiosParamCreator, LicenseApiFactory, LicenseApiFp, LicenseStatus, LicenseStatusEnum, LimitRange, LimitSet, LimitsOverride, ListTrajectoriesResponse, Manufacturer, MidpointInsertionAlgorithm, MidpointInsertionAlgorithmAlgorithmNameEnum, ModbusIO, ModbusIOArea, ModbusIOByteOrder, ModbusIOData, ModbusIOTypeEnum, ModelError, MotionCommand, MotionCommandBlending, MotionCommandPath, MotionGroupApi, MotionGroupApiAxiosParamCreator, MotionGroupApiFactory, MotionGroupApiFp, MotionGroupDescription, MotionGroupInfo, MotionGroupJoints, MotionGroupModelsApi, MotionGroupModelsApiAxiosParamCreator, MotionGroupModelsApiFactory, MotionGroupModelsApiFp, MotionGroupSetup, MotionGroupState, MotionGroupStateJointLimitReached, MovementErrorResponse, MovementErrorResponseKindEnum, NanValue, NanValueNanValue, OpMode, OperatingState, OperationLimits, OperationMode, OrientationType, PathCartesianPTP, PathCartesianPTPPathDefinitionNameEnum, PathCircle, PathCirclePathDefinitionNameEnum, PathCubicSpline, PathCubicSplinePathDefinitionNameEnum, PathJointPTP, PathJointPTPPathDefinitionNameEnum, PathLine, PathLinePathDefinitionNameEnum, PauseJoggingRequest, PauseJoggingRequestMessageTypeEnum, PauseJoggingResponse, PauseJoggingResponseKindEnum, PauseMovementRequest, PauseMovementRequestMessageTypeEnum, PauseMovementResponse, PauseMovementResponseKindEnum, PauseOnIO, Payload, Plan422Response, PlanCollisionFreeFailedResponse, PlanCollisionFreeRequest, PlanCollisionFreeResponse, PlanCollisionFreeResponseResponse, PlanTrajectoryFailedResponse, PlanTrajectoryFailedResponseErrorFeedback, PlanTrajectoryRequest, PlanTrajectoryResponse, PlanTrajectoryResponseResponse, PlanValidationError, PlanValidationErrorAllOfData, Plane, PlaneShapeTypeEnum, PlaybackSpeedRequest, PlaybackSpeedRequestMessageTypeEnum, PlaybackSpeedResponse, PlaybackSpeedResponseKindEnum, Pose, ProfinetDescription, ProfinetIO, ProfinetIOData, ProfinetIODirection, ProfinetIOTypeEnum, ProfinetInputOutputConfig, ProfinetSlotDescription, ProfinetSubSlotDescription, Program, ProgramApi, ProgramApiAxiosParamCreator, ProgramApiFactory, ProgramApiFp, ProgramRun, ProgramRunState, ProgramStartRequest, RRTConnectAlgorithm, RRTConnectAlgorithmAlgorithmNameEnum, Rectangle, RectangleShapeTypeEnum, RectangularCapsule, RectangularCapsuleShapeTypeEnum, ReleaseChannel, RequestArgs, RequiredError, RobotController, RobotControllerConfiguration, RobotControllerState, RobotSystemMode, RobotTcp, RobotTcpData, SafetyStateType, ServiceGroup, ServiceStatus, ServiceStatusPhase, ServiceStatusResponse, ServiceStatusSeverity, ServiceStatusStatus, SetIO, SettableRobotSystemMode, SingularityTypeEnum, Sphere, SphereShapeTypeEnum, StartMovementRequest, StartMovementRequestMessageTypeEnum, StartMovementResponse, StartMovementResponseKindEnum, StartOnIO, StoreCollisionComponentsApi, StoreCollisionComponentsApiAxiosParamCreator, StoreCollisionComponentsApiFactory, StoreCollisionComponentsApiFp, StoreCollisionSetupsApi, StoreCollisionSetupsApiAxiosParamCreator, StoreCollisionSetupsApiFactory, StoreCollisionSetupsApiFp, StoreObjectApi, StoreObjectApiAxiosParamCreator, StoreObjectApiFactory, StoreObjectApiFp, StreamIOValuesResponse, SystemApi, SystemApiAxiosParamCreator, SystemApiFactory, SystemApiFp, TcpOffset, TcpRequired, TcpVelocityRequest, TcpVelocityRequestMessageTypeEnum, TcpVelocityResponse, TcpVelocityResponseKindEnum, TorqueExceeded, TorqueExceededTorqueExceeded, TrajectoryCachingApi, TrajectoryCachingApiAxiosParamCreator, TrajectoryCachingApiFactory, TrajectoryCachingApiFp, TrajectoryData, TrajectoryDataMessageTypeEnum, TrajectoryDetails, TrajectoryDetailsKindEnum, TrajectoryDetailsState, TrajectoryEnded, TrajectoryEndedKindEnum, TrajectoryExecutionApi, TrajectoryExecutionApiAxiosParamCreator, TrajectoryExecutionApiFactory, TrajectoryExecutionApiFp, TrajectoryId, TrajectoryIdMessageTypeEnum, TrajectoryPausedByUser, TrajectoryPausedByUserKindEnum, TrajectoryPausedOnIO, TrajectoryPausedOnIOKindEnum, TrajectoryPlanningApi, TrajectoryPlanningApiAxiosParamCreator, TrajectoryPlanningApiFactory, TrajectoryPlanningApiFp, TrajectoryRunning, TrajectoryRunningKindEnum, TrajectoryWaitForIO, TrajectoryWaitForIOKindEnum, UnitType, UniversalrobotsController, UniversalrobotsControllerKindEnum, UpdateNovaVersionRequest, ValidationError, ValidationError2, ValidationErrorLocInner, VirtualController, VirtualControllerApi, VirtualControllerApiAxiosParamCreator, VirtualControllerApiFactory, VirtualControllerApiFp, VirtualControllerBehaviorApi, VirtualControllerBehaviorApiAxiosParamCreator, VirtualControllerBehaviorApiFactory, VirtualControllerBehaviorApiFp, VirtualControllerInputsOutputsApi, VirtualControllerInputsOutputsApiAxiosParamCreator, VirtualControllerInputsOutputsApiFactory, VirtualControllerInputsOutputsApiFp, VirtualControllerKindEnum, VirtualControllerTypes, VirtualRobotConfiguration, WaitForIOEventRequest, YaskawaController, YaskawaControllerKindEnum, operationServerMap };