@wandelbots/nova-api 25.8.0-dev.13 → 25.8.0-dev.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/v2/api.d.ts CHANGED
@@ -342,7 +342,7 @@ export declare const BoxBoxTypeEnum: {
342
342
  };
343
343
  export type BoxBoxTypeEnum = typeof BoxBoxTypeEnum[keyof typeof BoxBoxTypeEnum];
344
344
  /**
345
- * PROFINET BUS Inputs/Outputs Service configuration.
345
+ * PROFINET BUS inputs/outputs service configuration.
346
346
  * @export
347
347
  * @interface BusIOProfinet
348
348
  */
@@ -354,19 +354,19 @@ export interface BusIOProfinet {
354
354
  */
355
355
  'bus_type'?: BusIOProfinetBusTypeEnum;
356
356
  /**
357
- * Path to the configuration file.
357
+ * Content of Configuration XML file for PROFINET device, typically known as PND_IOD.xml. Leave empty for the default configuration. Refer to the official PROFINET driver documentation for further information.
358
358
  * @type {string}
359
359
  * @memberof BusIOProfinet
360
360
  */
361
361
  'config_file_content'?: string;
362
362
  /**
363
- *
363
+ * Used to enable IP communication through the same physical interface while PN Driver is running.
364
364
  * @type {BusIOProfinetNetwork}
365
365
  * @memberof BusIOProfinet
366
366
  */
367
367
  'network_config'?: BusIOProfinetNetwork;
368
368
  /**
369
- * MAC address for the PROFINET port, should be get from another NOVA API endpoind?
369
+ * MAC address of the physical ethernet interface that you want to use for PROFINET communication.
370
370
  * @type {string}
371
371
  * @memberof BusIOProfinet
372
372
  */
@@ -383,7 +383,7 @@ export declare const BusIOProfinetBusTypeEnum: {
383
383
  };
384
384
  export type BusIOProfinetBusTypeEnum = typeof BusIOProfinetBusTypeEnum[keyof typeof BusIOProfinetBusTypeEnum];
385
385
  /**
386
- * Default route configuration for the PROFINET service. Will be removed before release by automatic default route configuration, if possible.
386
+ * Current default route configuration of your NOVA instance. The default route is a setting that tells data where to go if there isn’t a specific path already known for its destination. Usually this will be the path to your router, enabling accessing the internet. On Linux, use `ip route show` to view your default routes and match the output `default via <gateway> dev <interface> ...` to get your gateway and interface.
387
387
  * @export
388
388
  * @interface BusIOProfinetDefaultRoute
389
389
  */
@@ -402,25 +402,25 @@ export interface BusIOProfinetDefaultRoute {
402
402
  'interface': string;
403
403
  }
404
404
  /**
405
- * Network configuration for the PROFINET device
405
+ * Network configuration or IPv4 record of the virtual ethernet interface (pnio1) created by the PROFINET driver. The IPv4 record is used in combination with the Name of Station (NoS) to identify your device in the PROFINET network. The `ip_config` will be used as IPv4 record if no REMA XML file is already present on your machine and no `rema_xml_content` is provided.
406
406
  * @export
407
407
  * @interface BusIOProfinetIpConfig
408
408
  */
409
409
  export interface BusIOProfinetIpConfig {
410
410
  /**
411
- * IP address for the PROFINET device
411
+ * IP address for the device\'s virtual ethernet interface (pnio1).
412
412
  * @type {string}
413
413
  * @memberof BusIOProfinetIpConfig
414
414
  */
415
415
  'ip': string;
416
416
  /**
417
- * Network mask for the PROFINET device.
417
+ * Network mask for the device\'s virtual ethernet interface (pnio1).
418
418
  * @type {string}
419
419
  * @memberof BusIOProfinetIpConfig
420
420
  */
421
421
  'netmask': string;
422
422
  /**
423
- * Gateway for the PROFINET device
423
+ * Gateway for connections to other devices outside of the virtual ethernet interface\'s subnet.
424
424
  * @type {string}
425
425
  * @memberof BusIOProfinetIpConfig
426
426
  */
@@ -433,7 +433,7 @@ export interface BusIOProfinetIpConfig {
433
433
  */
434
434
  export interface BusIOProfinetNetwork {
435
435
  /**
436
- * Name of the PROFINET device.
436
+ * Name of Station (NoS) of the PROFINET device. The NoS is used in combination with IPv4 record to identify your device in the PROFINET network. The `device_name` will be used as NoS if no REMA XML file is already present on your machine and no `rema_xml_content` is provided.
437
437
  * @type {string}
438
438
  * @memberof BusIOProfinetNetwork
439
439
  */
@@ -445,14 +445,14 @@ export interface BusIOProfinetNetwork {
445
445
  */
446
446
  'ip_config'?: BusIOProfinetIpConfig;
447
447
  /**
448
- * Content of the PROFINET REMA XML file.
448
+ * Content of the PROFINET REMA XML file. Is used when PROFINET service is added for the first time to create the REMA XML file that holds data to be kept for the next session. Stores information like IP address, Name of Station (NoS) and hardware configuration. If you use a PROFINET controller to assign an IP address to the PROFINET device, this information will be written to the REMA XML file. Refer to the PDF version of the \"PN Driver I/O Base programming interface\" documentation for more information and an example REMA file.
449
449
  * @type {string}
450
450
  * @memberof BusIOProfinetNetwork
451
451
  */
452
452
  'rema_xml_content'?: string;
453
453
  }
454
454
  /**
455
- * Virtual PROFINET BUS Inputs/Outputs Service configuration.
455
+ * Virtual PROFINET BUS inputs/outputs service configuration.
456
456
  * @export
457
457
  * @interface BusIOProfinetVirtual
458
458
  */
@@ -465,7 +465,7 @@ export interface BusIOProfinetVirtual {
465
465
  'bus_type'?: BusIOProfinetVirtualBusTypeEnum;
466
466
  }
467
467
  export declare const BusIOProfinetVirtualBusTypeEnum: {
468
- readonly VirtualProfinet: "virtual_profinet";
468
+ readonly ProfinetVirtual: "profinet_virtual";
469
469
  };
470
470
  export type BusIOProfinetVirtualBusTypeEnum = typeof BusIOProfinetVirtualBusTypeEnum[keyof typeof BusIOProfinetVirtualBusTypeEnum];
471
471
  /**
@@ -490,7 +490,7 @@ export interface BusIOsState {
490
490
  */
491
491
  'state': BusIOsStateEnum;
492
492
  /**
493
- * A message providing additional information on the input/output, e.g. BUS service status, encountered errors. May be empty if no additional information is available.
493
+ * A message providing additional information on the input/output service, e.g. BUS service status, encountered errors. May be empty if no additional information is available.
494
494
  * @type {string}
495
495
  * @memberof BusIOsState
496
496
  */
@@ -1797,6 +1797,55 @@ export interface IODescription {
1797
1797
  */
1798
1798
  'max'?: IODescriptionMin;
1799
1799
  }
1800
+ /**
1801
+ *
1802
+ * @export
1803
+ * @interface IODescription2
1804
+ */
1805
+ export interface IODescription2 {
1806
+ /**
1807
+ * Unique identifier of the input/output.
1808
+ * @type {string}
1809
+ * @memberof IODescription2
1810
+ */
1811
+ 'io': string;
1812
+ /**
1813
+ * Descriptive name of the input/output. Customize it using the respective BUS service, e.g. [addProfinetIO](addProfinetIO) for PROFINET service.
1814
+ * @type {string}
1815
+ * @memberof IODescription2
1816
+ */
1817
+ 'name': string;
1818
+ /**
1819
+ *
1820
+ * @type {IODirection}
1821
+ * @memberof IODescription2
1822
+ */
1823
+ 'direction': IODirection;
1824
+ /**
1825
+ *
1826
+ * @type {IOValueType}
1827
+ * @memberof IODescription2
1828
+ */
1829
+ 'value_type': IOValueType;
1830
+ /**
1831
+ *
1832
+ * @type {UnitType}
1833
+ * @memberof IODescription2
1834
+ */
1835
+ 'unit'?: UnitType;
1836
+ /**
1837
+ *
1838
+ * @type {IODescriptionMin}
1839
+ * @memberof IODescription2
1840
+ */
1841
+ 'min'?: IODescriptionMin;
1842
+ /**
1843
+ *
1844
+ * @type {IODescriptionMin}
1845
+ * @memberof IODescription2
1846
+ */
1847
+ 'max'?: IODescriptionMin;
1848
+ }
1800
1849
  /**
1801
1850
  * @type IODescriptionMin
1802
1851
  * @export
@@ -3915,17 +3964,17 @@ export interface ProfinetDescription {
3915
3964
  */
3916
3965
  'slots'?: Array<ProfinetSlotDescription>;
3917
3966
  /**
3918
- * Name of the PROFINET device
3967
+ * Name of Station (NoS) of the PROFINET device. The NoS is used in combination with IPv4 record to identify your device in the PROFINET network. The `device_name` will be used as NoS if no REMA XML file is already present on your NOVA instance and no `rema_xml_content` is provided.
3919
3968
  * @type {string}
3920
3969
  * @memberof ProfinetDescription
3921
3970
  */
3922
3971
  'device_name'?: string;
3923
3972
  /**
3924
- * IP address for the PROFINET device
3925
- * @type {string}
3973
+ *
3974
+ * @type {BusIOProfinetIpConfig}
3926
3975
  * @memberof ProfinetDescription
3927
3976
  */
3928
- 'ip'?: string;
3977
+ 'ip_config'?: BusIOProfinetIpConfig;
3929
3978
  }
3930
3979
  /**
3931
3980
  *
@@ -3934,7 +3983,7 @@ export interface ProfinetDescription {
3934
3983
  */
3935
3984
  export interface ProfinetIO {
3936
3985
  /**
3937
- * The name of the input/output value. This is a human-readable identifier for the value. It can be used to distinguish between different inputs/outputs in the system.
3986
+ * The name of the input/output variable. This is a human-readable identifier for the value. It distinguishes between different inputs/outputs variables in the system. The variables may be used to set bits or bytes at their pointed to address via [setBusIOValues](setBusIOValues).
3938
3987
  * @type {string}
3939
3988
  * @memberof ProfinetIO
3940
3989
  */
@@ -3946,25 +3995,25 @@ export interface ProfinetIO {
3946
3995
  */
3947
3996
  'type': ProfinetIOTypeEnum;
3948
3997
  /**
3949
- * The direction of the input/output value, indicating whether it is an input or output for the device.
3998
+ * The direction of the input/output variable, indicating whether it is an input or output for the PROFINET device, e.g. NOVA\'s PROFINET service.
3950
3999
  * @type {ProfinetIODirection}
3951
4000
  * @memberof ProfinetIO
3952
4001
  */
3953
4002
  'direction': ProfinetIODirection;
3954
4003
  /**
3955
- * The byte address of the input/output value in the PROFINET device. The byte address is used to locate the specific input/output within the device\'s memory or data structure.
4004
+ * The byte address of the input/output variable in the PROFINET device, e.g. NOVA\'s PROFINET service. The byte address is used to locate the specific input/output variable within the device\'s memory or data structure.
3956
4005
  * @type {number}
3957
4006
  * @memberof ProfinetIO
3958
4007
  */
3959
4008
  'byte_address': number;
3960
4009
  /**
3961
- * The bit address of the input/output value within the byte or word address. The bit address is used to specify the exact bit within the byte or word that corresponds to the input/output value.
4010
+ * The bit address of the input/output variable within the byte or word address. The bit address is used to specify the exact bit within the byte or word that corresponds to the input/output variable.
3962
4011
  * @type {number}
3963
4012
  * @memberof ProfinetIO
3964
4013
  */
3965
4014
  'bit_address'?: number;
3966
4015
  /**
3967
- * The unique identifier for the input/output value. This identifier is used to reference the specific input/output in the NOVA system.
4016
+ * The unique identifier for the input/output value. This identifier is used to reference the specific input/output variable in the PROFINET device, e.g. NOVA\'s PROFINET service.
3968
4017
  * @type {string}
3969
4018
  * @memberof ProfinetIO
3970
4019
  */
@@ -3977,7 +4026,7 @@ export interface ProfinetIO {
3977
4026
  */
3978
4027
  export interface ProfinetIOData {
3979
4028
  /**
3980
- * The name of the input/output value. This is a human-readable identifier for the value. It can be used to distinguish between different inputs/outputs in the system.
4029
+ * The name of the input/output variable. This is a human-readable identifier for the value. It distinguishes between different inputs/outputs variables in the system. The variables may be used to set bits or bytes at their pointed to address via [setBusIOValues](setBusIOValues).
3981
4030
  * @type {string}
3982
4031
  * @memberof ProfinetIOData
3983
4032
  */
@@ -3989,26 +4038,26 @@ export interface ProfinetIOData {
3989
4038
  */
3990
4039
  'type': ProfinetIOTypeEnum;
3991
4040
  /**
3992
- * The direction of the input/output value, indicating whether it is an input or output for the device.
4041
+ * The direction of the input/output variable, indicating whether it is an input or output for the PROFINET device, e.g. NOVA\'s PROFINET service.
3993
4042
  * @type {ProfinetIODirection}
3994
4043
  * @memberof ProfinetIOData
3995
4044
  */
3996
4045
  'direction': ProfinetIODirection;
3997
4046
  /**
3998
- * The byte address of the input/output value in the PROFINET device. The byte address is used to locate the specific input/output within the device\'s memory or data structure.
4047
+ * The byte address of the input/output variable in the PROFINET device, e.g. NOVA\'s PROFINET service. The byte address is used to locate the specific input/output variable within the device\'s memory or data structure.
3999
4048
  * @type {number}
4000
4049
  * @memberof ProfinetIOData
4001
4050
  */
4002
4051
  'byte_address': number;
4003
4052
  /**
4004
- * The bit address of the input/output value within the byte or word address. The bit address is used to specify the exact bit within the byte or word that corresponds to the input/output value.
4053
+ * The bit address of the input/output variable within the byte or word address. The bit address is used to specify the exact bit within the byte or word that corresponds to the input/output variable.
4005
4054
  * @type {number}
4006
4055
  * @memberof ProfinetIOData
4007
4056
  */
4008
4057
  'bit_address'?: number;
4009
4058
  }
4010
4059
  /**
4011
- * Identifies the input/output type.
4060
+ * The direction of the input/output variable, indicating whether it is an input or output for the PROFINET device, e.g. NOVA\'s PROFINET service.
4012
4061
  * @export
4013
4062
  * @enum {string}
4014
4063
  */
@@ -4019,7 +4068,7 @@ export declare const ProfinetIODirection: {
4019
4068
  };
4020
4069
  export type ProfinetIODirection = typeof ProfinetIODirection[keyof typeof ProfinetIODirection];
4021
4070
  /**
4022
- * Value type of the PROFINET input/output.
4071
+ * Value type of the PROFINET input/output variable. Is used to interpret the corresponding bits correctly.
4023
4072
  * @export
4024
4073
  * @enum {string}
4025
4074
  */
@@ -4043,38 +4092,38 @@ export type ProfinetIOTypeEnum = typeof ProfinetIOTypeEnum[keyof typeof Profinet
4043
4092
  */
4044
4093
  export interface ProfinetInputOutputConfig {
4045
4094
  /**
4046
- * Content of the input output configuration file.
4095
+ * Content of the input/output variable configuration XML file. The XML File has to be embedded as a string by escaping quotes, line breaks and so forth.
4047
4096
  * @type {string}
4048
4097
  * @memberof ProfinetInputOutputConfig
4049
4098
  */
4050
4099
  'config': string;
4051
4100
  /**
4052
- * Offset in bytes for the input data.
4101
+ * Offset in bytes for the address of the input (perspective of the controller) variables. The offset will be subtracted from to the byte addresses of the sent XML content.
4053
4102
  * @type {number}
4054
4103
  * @memberof ProfinetInputOutputConfig
4055
4104
  */
4056
4105
  'input_offset': number;
4057
4106
  /**
4058
- * Offset in bytes for the output data.
4107
+ * Offset in bytes for the address of the output (perspective of the controller) variables. The offset will be subtracted from to the byte addresses of the sent XML content.
4059
4108
  * @type {number}
4060
4109
  * @memberof ProfinetInputOutputConfig
4061
4110
  */
4062
4111
  'output_offset': number;
4063
4112
  }
4064
4113
  /**
4065
- *
4114
+ * An array of PROFINET slots. PROFINET models each device’s input/output hardware as a hierarchy of slots (modules) and subslots (submodules). A slot can represent a physical or virtual input/output card and each subslot one of its individual channels or functions. Every slot and subslot has unique identifiers that the controller uses to map cyclic input/output data and parameter records to its process image. This slot/subslot separation enables e.g. addressing each input/output stream when establishing input/output application relations (I/O-AR).
4066
4115
  * @export
4067
4116
  * @interface ProfinetSlotDescription
4068
4117
  */
4069
4118
  export interface ProfinetSlotDescription {
4070
4119
  /**
4071
- * The number of the PROFINET slot.
4120
+ * The number/index of the PROFINET slot. Per default, slot 0 is reserved for the device access point (DAP). Slots that are part of the cyclic input/output data exchange start at number 1.
4072
4121
  * @type {number}
4073
4122
  * @memberof ProfinetSlotDescription
4074
4123
  */
4075
4124
  'number': number;
4076
4125
  /**
4077
- * The API number of the PROFINET input, used to identify the specific API for the input.
4126
+ * The application process identifier (API) number of the PROFINET input. The API identifies the application relation (AR) that is using the slot.
4078
4127
  * @type {number}
4079
4128
  * @memberof ProfinetSlotDescription
4080
4129
  */
@@ -4093,19 +4142,19 @@ export interface ProfinetSlotDescription {
4093
4142
  */
4094
4143
  export interface ProfinetSubSlotDescription {
4095
4144
  /**
4096
- * The identifier of the PROFINET subslot.
4145
+ * The number/index of the PROFINET subslot.
4097
4146
  * @type {number}
4098
4147
  * @memberof ProfinetSubSlotDescription
4099
4148
  */
4100
4149
  'number': number;
4101
4150
  /**
4102
- * The length in bytes of the PROFINET input.
4151
+ * The amount of bytes allocated for the subslot in the input process image buffer.
4103
4152
  * @type {number}
4104
4153
  * @memberof ProfinetSubSlotDescription
4105
4154
  */
4106
4155
  'input_length': number;
4107
4156
  /**
4108
- * The length in bytes of the PROFINET output.
4157
+ * The amount of bytes allocated for the subslot in the output process image buffer.
4109
4158
  * @type {number}
4110
4159
  * @memberof ProfinetSubSlotDescription
4111
4160
  */
@@ -5562,7 +5611,7 @@ export declare class ApplicationApi extends BaseAPI {
5562
5611
  */
5563
5612
  export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configuration) => {
5564
5613
  /**
5565
- * Add a BUS Inputs/Outputs Service to the cell.
5614
+ * Add the BUS inputs/outputs service to the cell. Starts a containerized service that enables BUS connections via the specified ethernet port.
5566
5615
  * @summary Add Service
5567
5616
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5568
5617
  * @param {BusIOType} busIOType
@@ -5572,7 +5621,7 @@ export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Conf
5572
5621
  */
5573
5622
  addBusIOService: (cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5574
5623
  /**
5575
- * Adds an input/output to or updates an input/output on the PROFINET device.
5624
+ * 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).
5576
5625
  * @summary Add PROFINET Input/Output
5577
5626
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5578
5627
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -5582,7 +5631,7 @@ export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Conf
5582
5631
  */
5583
5632
  addProfinetIO: (cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5584
5633
  /**
5585
- * Delete BUS Inputs/Outputs Service from the cell.
5634
+ * Remove the BUS inputs/outputs service from the cell.
5586
5635
  * @summary Clear Service
5587
5636
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5588
5637
  * @param {number} [completionTimeout]
@@ -5591,7 +5640,7 @@ export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Conf
5591
5640
  */
5592
5641
  clearBusIOService: (cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5593
5642
  /**
5594
- * Removes the input/output from the PROFINET device.
5643
+ * Removes an input/output variable configuration from the PROFINET device, e.g. NOVA\'s PROFINET service.
5595
5644
  * @summary Remove PROFINET Input/Ouptut
5596
5645
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5597
5646
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -5600,7 +5649,7 @@ export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Conf
5600
5649
  */
5601
5650
  deleteProfinetIO: (cell: string, io: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5602
5651
  /**
5603
- * Get deployed BUS Inputs/Outputs Service.
5652
+ * Get deployed BUS inputs/outputs service.
5604
5653
  * @summary Get Service
5605
5654
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5606
5655
  * @param {*} [options] Override http request option.
@@ -5625,7 +5674,7 @@ export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Conf
5625
5674
  */
5626
5675
  getBusIOValues: (cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5627
5676
  /**
5628
- * Get description of PROFINET
5677
+ * Get description of NOVA as a PROFINET device.
5629
5678
  * @summary Get PROFINET Description
5630
5679
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5631
5680
  * @param {*} [options] Override http request option.
@@ -5633,7 +5682,7 @@ export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Conf
5633
5682
  */
5634
5683
  getProfinetDescription: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5635
5684
  /**
5636
- * Get input/output configuration of the PROFINET device as file.
5685
+ * 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.
5637
5686
  * @summary PROFINET Inputs/Outputs to File
5638
5687
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5639
5688
  * @param {number} [inputOffset]
@@ -5643,7 +5692,7 @@ export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Conf
5643
5692
  */
5644
5693
  getProfinetIOsFromFile: (cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5645
5694
  /**
5646
- * List all BUS Input/Output descriptions.
5695
+ * List all input/output descriptions for configured BUS services. The input/output descriptions contain information such as the name, the type and the unit. The I/O direction is given in perspective of the BUS service.
5647
5696
  * @summary List Descriptions
5648
5697
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5649
5698
  * @param {*} [options] Override http request option.
@@ -5651,7 +5700,7 @@ export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Conf
5651
5700
  */
5652
5701
  listBusIODescriptions: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5653
5702
  /**
5654
- * List all PROFINET input and outputs.
5703
+ * List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information such as the name, the type and the unit. The I/O 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 I/O 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.
5655
5704
  * @summary List PROFINET Input/Output Configuration
5656
5705
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5657
5706
  * @param {*} [options] Override http request option.
@@ -5668,7 +5717,7 @@ export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Conf
5668
5717
  */
5669
5718
  setBusIOValues: (cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5670
5719
  /**
5671
- * Sets inputs/outputs on the PROFINET device from file.
5720
+ * 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](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 (i.e. a connected PLC), refer to the corresponding engineering system (i.e. TIA portal). You can export the variable configuration of the PROFINET controller as XML file from you engineering system, i.e. 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, meaning that you can paste the exported XML file here without modifying.
5672
5721
  * @summary Set PROFINET Inputs/Outputs from File
5673
5722
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5674
5723
  * @param {ProfinetInputOutputConfig} profinetInputOutputConfig
@@ -5683,7 +5732,7 @@ export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Conf
5683
5732
  */
5684
5733
  export declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5685
5734
  /**
5686
- * Add a BUS Inputs/Outputs Service to the cell.
5735
+ * Add the BUS inputs/outputs service to the cell. Starts a containerized service that enables BUS connections via the specified ethernet port.
5687
5736
  * @summary Add Service
5688
5737
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5689
5738
  * @param {BusIOType} busIOType
@@ -5693,7 +5742,7 @@ export declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5693
5742
  */
5694
5743
  addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5695
5744
  /**
5696
- * Adds an input/output to or updates an input/output on the PROFINET device.
5745
+ * 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).
5697
5746
  * @summary Add PROFINET Input/Output
5698
5747
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5699
5748
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -5703,7 +5752,7 @@ export declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5703
5752
  */
5704
5753
  addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5705
5754
  /**
5706
- * Delete BUS Inputs/Outputs Service from the cell.
5755
+ * Remove the BUS inputs/outputs service from the cell.
5707
5756
  * @summary Clear Service
5708
5757
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5709
5758
  * @param {number} [completionTimeout]
@@ -5712,7 +5761,7 @@ export declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5712
5761
  */
5713
5762
  clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5714
5763
  /**
5715
- * Removes the input/output from the PROFINET device.
5764
+ * Removes an input/output variable configuration from the PROFINET device, e.g. NOVA\'s PROFINET service.
5716
5765
  * @summary Remove PROFINET Input/Ouptut
5717
5766
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5718
5767
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -5721,7 +5770,7 @@ export declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5721
5770
  */
5722
5771
  deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5723
5772
  /**
5724
- * Get deployed BUS Inputs/Outputs Service.
5773
+ * Get deployed BUS inputs/outputs service.
5725
5774
  * @summary Get Service
5726
5775
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5727
5776
  * @param {*} [options] Override http request option.
@@ -5746,7 +5795,7 @@ export declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5746
5795
  */
5747
5796
  getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IOValue>>>;
5748
5797
  /**
5749
- * Get description of PROFINET
5798
+ * Get description of NOVA as a PROFINET device.
5750
5799
  * @summary Get PROFINET Description
5751
5800
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5752
5801
  * @param {*} [options] Override http request option.
@@ -5754,7 +5803,7 @@ export declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5754
5803
  */
5755
5804
  getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProfinetDescription>>;
5756
5805
  /**
5757
- * Get input/output configuration of the PROFINET device as file.
5806
+ * 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.
5758
5807
  * @summary PROFINET Inputs/Outputs to File
5759
5808
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5760
5809
  * @param {number} [inputOffset]
@@ -5764,15 +5813,15 @@ export declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5764
5813
  */
5765
5814
  getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
5766
5815
  /**
5767
- * List all BUS Input/Output descriptions.
5816
+ * List all input/output descriptions for configured BUS services. The input/output descriptions contain information such as the name, the type and the unit. The I/O direction is given in perspective of the BUS service.
5768
5817
  * @summary List Descriptions
5769
5818
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5770
5819
  * @param {*} [options] Override http request option.
5771
5820
  * @throws {RequiredError}
5772
5821
  */
5773
- listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IODescription>>>;
5822
+ listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IODescription2>>>;
5774
5823
  /**
5775
- * List all PROFINET input and outputs.
5824
+ * List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information such as the name, the type and the unit. The I/O 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 I/O 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.
5776
5825
  * @summary List PROFINET Input/Output Configuration
5777
5826
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5778
5827
  * @param {*} [options] Override http request option.
@@ -5789,7 +5838,7 @@ export declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5789
5838
  */
5790
5839
  setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5791
5840
  /**
5792
- * Sets inputs/outputs on the PROFINET device from file.
5841
+ * 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](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 (i.e. a connected PLC), refer to the corresponding engineering system (i.e. TIA portal). You can export the variable configuration of the PROFINET controller as XML file from you engineering system, i.e. 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, meaning that you can paste the exported XML file here without modifying.
5793
5842
  * @summary Set PROFINET Inputs/Outputs from File
5794
5843
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5795
5844
  * @param {ProfinetInputOutputConfig} profinetInputOutputConfig
@@ -5804,7 +5853,7 @@ export declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5804
5853
  */
5805
5854
  export declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5806
5855
  /**
5807
- * Add a BUS Inputs/Outputs Service to the cell.
5856
+ * Add the BUS inputs/outputs service to the cell. Starts a containerized service that enables BUS connections via the specified ethernet port.
5808
5857
  * @summary Add Service
5809
5858
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5810
5859
  * @param {BusIOType} busIOType
@@ -5814,7 +5863,7 @@ export declare const BUSInputsOutputsApiFactory: (configuration?: Configuration,
5814
5863
  */
5815
5864
  addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5816
5865
  /**
5817
- * Adds an input/output to or updates an input/output on the PROFINET device.
5866
+ * 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).
5818
5867
  * @summary Add PROFINET Input/Output
5819
5868
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5820
5869
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -5824,7 +5873,7 @@ export declare const BUSInputsOutputsApiFactory: (configuration?: Configuration,
5824
5873
  */
5825
5874
  addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5826
5875
  /**
5827
- * Delete BUS Inputs/Outputs Service from the cell.
5876
+ * Remove the BUS inputs/outputs service from the cell.
5828
5877
  * @summary Clear Service
5829
5878
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5830
5879
  * @param {number} [completionTimeout]
@@ -5833,7 +5882,7 @@ export declare const BUSInputsOutputsApiFactory: (configuration?: Configuration,
5833
5882
  */
5834
5883
  clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5835
5884
  /**
5836
- * Removes the input/output from the PROFINET device.
5885
+ * Removes an input/output variable configuration from the PROFINET device, e.g. NOVA\'s PROFINET service.
5837
5886
  * @summary Remove PROFINET Input/Ouptut
5838
5887
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5839
5888
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -5842,7 +5891,7 @@ export declare const BUSInputsOutputsApiFactory: (configuration?: Configuration,
5842
5891
  */
5843
5892
  deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5844
5893
  /**
5845
- * Get deployed BUS Inputs/Outputs Service.
5894
+ * Get deployed BUS inputs/outputs service.
5846
5895
  * @summary Get Service
5847
5896
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5848
5897
  * @param {*} [options] Override http request option.
@@ -5867,7 +5916,7 @@ export declare const BUSInputsOutputsApiFactory: (configuration?: Configuration,
5867
5916
  */
5868
5917
  getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): AxiosPromise<Array<IOValue>>;
5869
5918
  /**
5870
- * Get description of PROFINET
5919
+ * Get description of NOVA as a PROFINET device.
5871
5920
  * @summary Get PROFINET Description
5872
5921
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5873
5922
  * @param {*} [options] Override http request option.
@@ -5875,7 +5924,7 @@ export declare const BUSInputsOutputsApiFactory: (configuration?: Configuration,
5875
5924
  */
5876
5925
  getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<ProfinetDescription>;
5877
5926
  /**
5878
- * Get input/output configuration of the PROFINET device as file.
5927
+ * 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.
5879
5928
  * @summary PROFINET Inputs/Outputs to File
5880
5929
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5881
5930
  * @param {number} [inputOffset]
@@ -5885,15 +5934,15 @@ export declare const BUSInputsOutputsApiFactory: (configuration?: Configuration,
5885
5934
  */
5886
5935
  getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
5887
5936
  /**
5888
- * List all BUS Input/Output descriptions.
5937
+ * List all input/output descriptions for configured BUS services. The input/output descriptions contain information such as the name, the type and the unit. The I/O direction is given in perspective of the BUS service.
5889
5938
  * @summary List Descriptions
5890
5939
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5891
5940
  * @param {*} [options] Override http request option.
5892
5941
  * @throws {RequiredError}
5893
5942
  */
5894
- listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<IODescription>>;
5943
+ listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<IODescription2>>;
5895
5944
  /**
5896
- * List all PROFINET input and outputs.
5945
+ * List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information such as the name, the type and the unit. The I/O 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 I/O 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.
5897
5946
  * @summary List PROFINET Input/Output Configuration
5898
5947
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5899
5948
  * @param {*} [options] Override http request option.
@@ -5910,7 +5959,7 @@ export declare const BUSInputsOutputsApiFactory: (configuration?: Configuration,
5910
5959
  */
5911
5960
  setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5912
5961
  /**
5913
- * Sets inputs/outputs on the PROFINET device from file.
5962
+ * 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](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 (i.e. a connected PLC), refer to the corresponding engineering system (i.e. TIA portal). You can export the variable configuration of the PROFINET controller as XML file from you engineering system, i.e. 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, meaning that you can paste the exported XML file here without modifying.
5914
5963
  * @summary Set PROFINET Inputs/Outputs from File
5915
5964
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5916
5965
  * @param {ProfinetInputOutputConfig} profinetInputOutputConfig
@@ -5927,7 +5976,7 @@ export declare const BUSInputsOutputsApiFactory: (configuration?: Configuration,
5927
5976
  */
5928
5977
  export declare class BUSInputsOutputsApi extends BaseAPI {
5929
5978
  /**
5930
- * Add a BUS Inputs/Outputs Service to the cell.
5979
+ * Add the BUS inputs/outputs service to the cell. Starts a containerized service that enables BUS connections via the specified ethernet port.
5931
5980
  * @summary Add Service
5932
5981
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5933
5982
  * @param {BusIOType} busIOType
@@ -5938,7 +5987,7 @@ export declare class BUSInputsOutputsApi extends BaseAPI {
5938
5987
  */
5939
5988
  addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
5940
5989
  /**
5941
- * Adds an input/output to or updates an input/output on the PROFINET device.
5990
+ * 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).
5942
5991
  * @summary Add PROFINET Input/Output
5943
5992
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5944
5993
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -5949,7 +5998,7 @@ export declare class BUSInputsOutputsApi extends BaseAPI {
5949
5998
  */
5950
5999
  addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
5951
6000
  /**
5952
- * Delete BUS Inputs/Outputs Service from the cell.
6001
+ * Remove the BUS inputs/outputs service from the cell.
5953
6002
  * @summary Clear Service
5954
6003
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5955
6004
  * @param {number} [completionTimeout]
@@ -5959,7 +6008,7 @@ export declare class BUSInputsOutputsApi extends BaseAPI {
5959
6008
  */
5960
6009
  clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
5961
6010
  /**
5962
- * Removes the input/output from the PROFINET device.
6011
+ * Removes an input/output variable configuration from the PROFINET device, e.g. NOVA\'s PROFINET service.
5963
6012
  * @summary Remove PROFINET Input/Ouptut
5964
6013
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5965
6014
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -5969,16 +6018,14 @@ export declare class BUSInputsOutputsApi extends BaseAPI {
5969
6018
  */
5970
6019
  deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
5971
6020
  /**
5972
- * Get deployed BUS Inputs/Outputs Service.
6021
+ * Get deployed BUS inputs/outputs service.
5973
6022
  * @summary Get Service
5974
6023
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5975
6024
  * @param {*} [options] Override http request option.
5976
6025
  * @throws {RequiredError}
5977
6026
  * @memberof BUSInputsOutputsApi
5978
6027
  */
5979
- getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
5980
- bus_type: "profinet";
5981
- } & BusIOProfinet, any>>;
6028
+ getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BusIOType, any>>;
5982
6029
  /**
5983
6030
  * Get the current state of the BUS Inputs/Outputs service.
5984
6031
  * @summary State
@@ -5999,7 +6046,7 @@ export declare class BUSInputsOutputsApi extends BaseAPI {
5999
6046
  */
6000
6047
  getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IOValue[], any>>;
6001
6048
  /**
6002
- * Get description of PROFINET
6049
+ * Get description of NOVA as a PROFINET device.
6003
6050
  * @summary Get PROFINET Description
6004
6051
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6005
6052
  * @param {*} [options] Override http request option.
@@ -6008,7 +6055,7 @@ export declare class BUSInputsOutputsApi extends BaseAPI {
6008
6055
  */
6009
6056
  getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProfinetDescription, any>>;
6010
6057
  /**
6011
- * Get input/output configuration of the PROFINET device as file.
6058
+ * 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.
6012
6059
  * @summary PROFINET Inputs/Outputs to File
6013
6060
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6014
6061
  * @param {number} [inputOffset]
@@ -6019,16 +6066,16 @@ export declare class BUSInputsOutputsApi extends BaseAPI {
6019
6066
  */
6020
6067
  getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
6021
6068
  /**
6022
- * List all BUS Input/Output descriptions.
6069
+ * List all input/output descriptions for configured BUS services. The input/output descriptions contain information such as the name, the type and the unit. The I/O direction is given in perspective of the BUS service.
6023
6070
  * @summary List Descriptions
6024
6071
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6025
6072
  * @param {*} [options] Override http request option.
6026
6073
  * @throws {RequiredError}
6027
6074
  * @memberof BUSInputsOutputsApi
6028
6075
  */
6029
- listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IODescription[], any>>;
6076
+ listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IODescription2[], any>>;
6030
6077
  /**
6031
- * List all PROFINET input and outputs.
6078
+ * List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information such as the name, the type and the unit. The I/O 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 I/O 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.
6032
6079
  * @summary List PROFINET Input/Output Configuration
6033
6080
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6034
6081
  * @param {*} [options] Override http request option.
@@ -6047,7 +6094,7 @@ export declare class BUSInputsOutputsApi extends BaseAPI {
6047
6094
  */
6048
6095
  setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
6049
6096
  /**
6050
- * Sets inputs/outputs on the PROFINET device from file.
6097
+ * 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](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 (i.e. a connected PLC), refer to the corresponding engineering system (i.e. TIA portal). You can export the variable configuration of the PROFINET controller as XML file from you engineering system, i.e. 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, meaning that you can paste the exported XML file here without modifying.
6051
6098
  * @summary Set PROFINET Inputs/Outputs from File
6052
6099
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6053
6100
  * @param {ProfinetInputOutputConfig} profinetInputOutputConfig