@wandelbots/nova-api 25.8.0-dev.14 → 25.8.0-dev.16

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
@@ -2759,6 +2808,12 @@ export interface LimitSet {
2759
2808
  * @memberof LimitSet
2760
2809
  */
2761
2810
  'flange'?: CartesianLimits;
2811
+ /**
2812
+ *
2813
+ * @type {JointLimits}
2814
+ * @memberof LimitSet
2815
+ */
2816
+ 'coupled_shoulder_elbow_joint'?: JointLimits;
2762
2817
  }
2763
2818
  /**
2764
2819
  * If a limit is not set, the default value will be used.
@@ -3915,17 +3970,17 @@ export interface ProfinetDescription {
3915
3970
  */
3916
3971
  'slots'?: Array<ProfinetSlotDescription>;
3917
3972
  /**
3918
- * Name of the PROFINET device
3973
+ * 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
3974
  * @type {string}
3920
3975
  * @memberof ProfinetDescription
3921
3976
  */
3922
3977
  'device_name'?: string;
3923
3978
  /**
3924
- * IP address for the PROFINET device
3925
- * @type {string}
3979
+ *
3980
+ * @type {BusIOProfinetIpConfig}
3926
3981
  * @memberof ProfinetDescription
3927
3982
  */
3928
- 'ip'?: string;
3983
+ 'ip_config'?: BusIOProfinetIpConfig;
3929
3984
  }
3930
3985
  /**
3931
3986
  *
@@ -3934,7 +3989,7 @@ export interface ProfinetDescription {
3934
3989
  */
3935
3990
  export interface ProfinetIO {
3936
3991
  /**
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.
3992
+ * 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
3993
  * @type {string}
3939
3994
  * @memberof ProfinetIO
3940
3995
  */
@@ -3946,25 +4001,25 @@ export interface ProfinetIO {
3946
4001
  */
3947
4002
  'type': ProfinetIOTypeEnum;
3948
4003
  /**
3949
- * The direction of the input/output value, indicating whether it is an input or output for the device.
4004
+ * 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
4005
  * @type {ProfinetIODirection}
3951
4006
  * @memberof ProfinetIO
3952
4007
  */
3953
4008
  'direction': ProfinetIODirection;
3954
4009
  /**
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.
4010
+ * 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
4011
  * @type {number}
3957
4012
  * @memberof ProfinetIO
3958
4013
  */
3959
4014
  'byte_address': number;
3960
4015
  /**
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.
4016
+ * 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
4017
  * @type {number}
3963
4018
  * @memberof ProfinetIO
3964
4019
  */
3965
4020
  'bit_address'?: number;
3966
4021
  /**
3967
- * The unique identifier for the input/output value. This identifier is used to reference the specific input/output in the NOVA system.
4022
+ * 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
4023
  * @type {string}
3969
4024
  * @memberof ProfinetIO
3970
4025
  */
@@ -3977,7 +4032,7 @@ export interface ProfinetIO {
3977
4032
  */
3978
4033
  export interface ProfinetIOData {
3979
4034
  /**
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.
4035
+ * 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
4036
  * @type {string}
3982
4037
  * @memberof ProfinetIOData
3983
4038
  */
@@ -3989,26 +4044,26 @@ export interface ProfinetIOData {
3989
4044
  */
3990
4045
  'type': ProfinetIOTypeEnum;
3991
4046
  /**
3992
- * The direction of the input/output value, indicating whether it is an input or output for the device.
4047
+ * 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
4048
  * @type {ProfinetIODirection}
3994
4049
  * @memberof ProfinetIOData
3995
4050
  */
3996
4051
  'direction': ProfinetIODirection;
3997
4052
  /**
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.
4053
+ * 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
4054
  * @type {number}
4000
4055
  * @memberof ProfinetIOData
4001
4056
  */
4002
4057
  'byte_address': number;
4003
4058
  /**
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.
4059
+ * 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
4060
  * @type {number}
4006
4061
  * @memberof ProfinetIOData
4007
4062
  */
4008
4063
  'bit_address'?: number;
4009
4064
  }
4010
4065
  /**
4011
- * Identifies the input/output type.
4066
+ * 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
4067
  * @export
4013
4068
  * @enum {string}
4014
4069
  */
@@ -4019,7 +4074,7 @@ export declare const ProfinetIODirection: {
4019
4074
  };
4020
4075
  export type ProfinetIODirection = typeof ProfinetIODirection[keyof typeof ProfinetIODirection];
4021
4076
  /**
4022
- * Value type of the PROFINET input/output.
4077
+ * Value type of the PROFINET input/output variable. Is used to interpret the corresponding bits correctly.
4023
4078
  * @export
4024
4079
  * @enum {string}
4025
4080
  */
@@ -4043,38 +4098,38 @@ export type ProfinetIOTypeEnum = typeof ProfinetIOTypeEnum[keyof typeof Profinet
4043
4098
  */
4044
4099
  export interface ProfinetInputOutputConfig {
4045
4100
  /**
4046
- * Content of the input output configuration file.
4101
+ * 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
4102
  * @type {string}
4048
4103
  * @memberof ProfinetInputOutputConfig
4049
4104
  */
4050
4105
  'config': string;
4051
4106
  /**
4052
- * Offset in bytes for the input data.
4107
+ * 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
4108
  * @type {number}
4054
4109
  * @memberof ProfinetInputOutputConfig
4055
4110
  */
4056
4111
  'input_offset': number;
4057
4112
  /**
4058
- * Offset in bytes for the output data.
4113
+ * 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
4114
  * @type {number}
4060
4115
  * @memberof ProfinetInputOutputConfig
4061
4116
  */
4062
4117
  'output_offset': number;
4063
4118
  }
4064
4119
  /**
4065
- *
4120
+ * 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
4121
  * @export
4067
4122
  * @interface ProfinetSlotDescription
4068
4123
  */
4069
4124
  export interface ProfinetSlotDescription {
4070
4125
  /**
4071
- * The number of the PROFINET slot.
4126
+ * 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
4127
  * @type {number}
4073
4128
  * @memberof ProfinetSlotDescription
4074
4129
  */
4075
4130
  'number': number;
4076
4131
  /**
4077
- * The API number of the PROFINET input, used to identify the specific API for the input.
4132
+ * The application process identifier (API) number of the PROFINET input. The API identifies the application relation (AR) that is using the slot.
4078
4133
  * @type {number}
4079
4134
  * @memberof ProfinetSlotDescription
4080
4135
  */
@@ -4093,19 +4148,19 @@ export interface ProfinetSlotDescription {
4093
4148
  */
4094
4149
  export interface ProfinetSubSlotDescription {
4095
4150
  /**
4096
- * The identifier of the PROFINET subslot.
4151
+ * The number/index of the PROFINET subslot.
4097
4152
  * @type {number}
4098
4153
  * @memberof ProfinetSubSlotDescription
4099
4154
  */
4100
4155
  'number': number;
4101
4156
  /**
4102
- * The length in bytes of the PROFINET input.
4157
+ * The amount of bytes allocated for the subslot in the input process image buffer.
4103
4158
  * @type {number}
4104
4159
  * @memberof ProfinetSubSlotDescription
4105
4160
  */
4106
4161
  'input_length': number;
4107
4162
  /**
4108
- * The length in bytes of the PROFINET output.
4163
+ * The amount of bytes allocated for the subslot in the output process image buffer.
4109
4164
  * @type {number}
4110
4165
  * @memberof ProfinetSubSlotDescription
4111
4166
  */
@@ -5562,7 +5617,7 @@ export declare class ApplicationApi extends BaseAPI {
5562
5617
  */
5563
5618
  export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Configuration) => {
5564
5619
  /**
5565
- * Add a BUS Inputs/Outputs Service to the cell.
5620
+ * Add the BUS inputs/outputs service to the cell. Starts a containerized service that enables BUS connections via the specified ethernet port.
5566
5621
  * @summary Add Service
5567
5622
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5568
5623
  * @param {BusIOType} busIOType
@@ -5572,7 +5627,7 @@ export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Conf
5572
5627
  */
5573
5628
  addBusIOService: (cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5574
5629
  /**
5575
- * Adds an input/output to or updates an input/output on the PROFINET device.
5630
+ * 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
5631
  * @summary Add PROFINET Input/Output
5577
5632
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5578
5633
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -5582,7 +5637,7 @@ export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Conf
5582
5637
  */
5583
5638
  addProfinetIO: (cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5584
5639
  /**
5585
- * Delete BUS Inputs/Outputs Service from the cell.
5640
+ * Remove the BUS inputs/outputs service from the cell.
5586
5641
  * @summary Clear Service
5587
5642
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5588
5643
  * @param {number} [completionTimeout]
@@ -5591,7 +5646,7 @@ export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Conf
5591
5646
  */
5592
5647
  clearBusIOService: (cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5593
5648
  /**
5594
- * Removes the input/output from the PROFINET device.
5649
+ * Removes an input/output variable configuration from the PROFINET device, e.g. NOVA\'s PROFINET service.
5595
5650
  * @summary Remove PROFINET Input/Ouptut
5596
5651
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5597
5652
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -5600,7 +5655,7 @@ export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Conf
5600
5655
  */
5601
5656
  deleteProfinetIO: (cell: string, io: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5602
5657
  /**
5603
- * Get deployed BUS Inputs/Outputs Service.
5658
+ * Get deployed BUS inputs/outputs service.
5604
5659
  * @summary Get Service
5605
5660
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5606
5661
  * @param {*} [options] Override http request option.
@@ -5625,7 +5680,7 @@ export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Conf
5625
5680
  */
5626
5681
  getBusIOValues: (cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5627
5682
  /**
5628
- * Get description of PROFINET
5683
+ * Get description of NOVA as a PROFINET device.
5629
5684
  * @summary Get PROFINET Description
5630
5685
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5631
5686
  * @param {*} [options] Override http request option.
@@ -5633,7 +5688,7 @@ export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Conf
5633
5688
  */
5634
5689
  getProfinetDescription: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5635
5690
  /**
5636
- * Get input/output configuration of the PROFINET device as file.
5691
+ * 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
5692
  * @summary PROFINET Inputs/Outputs to File
5638
5693
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5639
5694
  * @param {number} [inputOffset]
@@ -5643,7 +5698,7 @@ export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Conf
5643
5698
  */
5644
5699
  getProfinetIOsFromFile: (cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5645
5700
  /**
5646
- * List all BUS Input/Output descriptions.
5701
+ * 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
5702
  * @summary List Descriptions
5648
5703
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5649
5704
  * @param {*} [options] Override http request option.
@@ -5651,7 +5706,7 @@ export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Conf
5651
5706
  */
5652
5707
  listBusIODescriptions: (cell: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5653
5708
  /**
5654
- * List all PROFINET input and outputs.
5709
+ * 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
5710
  * @summary List PROFINET Input/Output Configuration
5656
5711
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5657
5712
  * @param {*} [options] Override http request option.
@@ -5668,7 +5723,7 @@ export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Conf
5668
5723
  */
5669
5724
  setBusIOValues: (cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5670
5725
  /**
5671
- * Sets inputs/outputs on the PROFINET device from file.
5726
+ * 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
5727
  * @summary Set PROFINET Inputs/Outputs from File
5673
5728
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5674
5729
  * @param {ProfinetInputOutputConfig} profinetInputOutputConfig
@@ -5683,7 +5738,7 @@ export declare const BUSInputsOutputsApiAxiosParamCreator: (configuration?: Conf
5683
5738
  */
5684
5739
  export declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5685
5740
  /**
5686
- * Add a BUS Inputs/Outputs Service to the cell.
5741
+ * Add the BUS inputs/outputs service to the cell. Starts a containerized service that enables BUS connections via the specified ethernet port.
5687
5742
  * @summary Add Service
5688
5743
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5689
5744
  * @param {BusIOType} busIOType
@@ -5693,7 +5748,7 @@ export declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5693
5748
  */
5694
5749
  addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5695
5750
  /**
5696
- * Adds an input/output to or updates an input/output on the PROFINET device.
5751
+ * 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
5752
  * @summary Add PROFINET Input/Output
5698
5753
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5699
5754
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -5703,7 +5758,7 @@ export declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5703
5758
  */
5704
5759
  addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5705
5760
  /**
5706
- * Delete BUS Inputs/Outputs Service from the cell.
5761
+ * Remove the BUS inputs/outputs service from the cell.
5707
5762
  * @summary Clear Service
5708
5763
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5709
5764
  * @param {number} [completionTimeout]
@@ -5712,7 +5767,7 @@ export declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5712
5767
  */
5713
5768
  clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5714
5769
  /**
5715
- * Removes the input/output from the PROFINET device.
5770
+ * Removes an input/output variable configuration from the PROFINET device, e.g. NOVA\'s PROFINET service.
5716
5771
  * @summary Remove PROFINET Input/Ouptut
5717
5772
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5718
5773
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -5721,7 +5776,7 @@ export declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5721
5776
  */
5722
5777
  deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5723
5778
  /**
5724
- * Get deployed BUS Inputs/Outputs Service.
5779
+ * Get deployed BUS inputs/outputs service.
5725
5780
  * @summary Get Service
5726
5781
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5727
5782
  * @param {*} [options] Override http request option.
@@ -5746,7 +5801,7 @@ export declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5746
5801
  */
5747
5802
  getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IOValue>>>;
5748
5803
  /**
5749
- * Get description of PROFINET
5804
+ * Get description of NOVA as a PROFINET device.
5750
5805
  * @summary Get PROFINET Description
5751
5806
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5752
5807
  * @param {*} [options] Override http request option.
@@ -5754,7 +5809,7 @@ export declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5754
5809
  */
5755
5810
  getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProfinetDescription>>;
5756
5811
  /**
5757
- * Get input/output configuration of the PROFINET device as file.
5812
+ * 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
5813
  * @summary PROFINET Inputs/Outputs to File
5759
5814
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5760
5815
  * @param {number} [inputOffset]
@@ -5764,15 +5819,15 @@ export declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5764
5819
  */
5765
5820
  getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
5766
5821
  /**
5767
- * List all BUS Input/Output descriptions.
5822
+ * 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
5823
  * @summary List Descriptions
5769
5824
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5770
5825
  * @param {*} [options] Override http request option.
5771
5826
  * @throws {RequiredError}
5772
5827
  */
5773
- listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IODescription>>>;
5828
+ listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IODescription2>>>;
5774
5829
  /**
5775
- * List all PROFINET input and outputs.
5830
+ * 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
5831
  * @summary List PROFINET Input/Output Configuration
5777
5832
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5778
5833
  * @param {*} [options] Override http request option.
@@ -5789,7 +5844,7 @@ export declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5789
5844
  */
5790
5845
  setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
5791
5846
  /**
5792
- * Sets inputs/outputs on the PROFINET device from file.
5847
+ * 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
5848
  * @summary Set PROFINET Inputs/Outputs from File
5794
5849
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5795
5850
  * @param {ProfinetInputOutputConfig} profinetInputOutputConfig
@@ -5804,7 +5859,7 @@ export declare const BUSInputsOutputsApiFp: (configuration?: Configuration) => {
5804
5859
  */
5805
5860
  export declare const BUSInputsOutputsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5806
5861
  /**
5807
- * Add a BUS Inputs/Outputs Service to the cell.
5862
+ * Add the BUS inputs/outputs service to the cell. Starts a containerized service that enables BUS connections via the specified ethernet port.
5808
5863
  * @summary Add Service
5809
5864
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5810
5865
  * @param {BusIOType} busIOType
@@ -5814,7 +5869,7 @@ export declare const BUSInputsOutputsApiFactory: (configuration?: Configuration,
5814
5869
  */
5815
5870
  addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5816
5871
  /**
5817
- * Adds an input/output to or updates an input/output on the PROFINET device.
5872
+ * 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
5873
  * @summary Add PROFINET Input/Output
5819
5874
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5820
5875
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -5824,7 +5879,7 @@ export declare const BUSInputsOutputsApiFactory: (configuration?: Configuration,
5824
5879
  */
5825
5880
  addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5826
5881
  /**
5827
- * Delete BUS Inputs/Outputs Service from the cell.
5882
+ * Remove the BUS inputs/outputs service from the cell.
5828
5883
  * @summary Clear Service
5829
5884
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5830
5885
  * @param {number} [completionTimeout]
@@ -5833,7 +5888,7 @@ export declare const BUSInputsOutputsApiFactory: (configuration?: Configuration,
5833
5888
  */
5834
5889
  clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5835
5890
  /**
5836
- * Removes the input/output from the PROFINET device.
5891
+ * Removes an input/output variable configuration from the PROFINET device, e.g. NOVA\'s PROFINET service.
5837
5892
  * @summary Remove PROFINET Input/Ouptut
5838
5893
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5839
5894
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -5842,7 +5897,7 @@ export declare const BUSInputsOutputsApiFactory: (configuration?: Configuration,
5842
5897
  */
5843
5898
  deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5844
5899
  /**
5845
- * Get deployed BUS Inputs/Outputs Service.
5900
+ * Get deployed BUS inputs/outputs service.
5846
5901
  * @summary Get Service
5847
5902
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5848
5903
  * @param {*} [options] Override http request option.
@@ -5867,7 +5922,7 @@ export declare const BUSInputsOutputsApiFactory: (configuration?: Configuration,
5867
5922
  */
5868
5923
  getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): AxiosPromise<Array<IOValue>>;
5869
5924
  /**
5870
- * Get description of PROFINET
5925
+ * Get description of NOVA as a PROFINET device.
5871
5926
  * @summary Get PROFINET Description
5872
5927
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5873
5928
  * @param {*} [options] Override http request option.
@@ -5875,7 +5930,7 @@ export declare const BUSInputsOutputsApiFactory: (configuration?: Configuration,
5875
5930
  */
5876
5931
  getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<ProfinetDescription>;
5877
5932
  /**
5878
- * Get input/output configuration of the PROFINET device as file.
5933
+ * 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
5934
  * @summary PROFINET Inputs/Outputs to File
5880
5935
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5881
5936
  * @param {number} [inputOffset]
@@ -5885,15 +5940,15 @@ export declare const BUSInputsOutputsApiFactory: (configuration?: Configuration,
5885
5940
  */
5886
5941
  getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): AxiosPromise<string>;
5887
5942
  /**
5888
- * List all BUS Input/Output descriptions.
5943
+ * 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
5944
  * @summary List Descriptions
5890
5945
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5891
5946
  * @param {*} [options] Override http request option.
5892
5947
  * @throws {RequiredError}
5893
5948
  */
5894
- listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<IODescription>>;
5949
+ listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<IODescription2>>;
5895
5950
  /**
5896
- * List all PROFINET input and outputs.
5951
+ * 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
5952
  * @summary List PROFINET Input/Output Configuration
5898
5953
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5899
5954
  * @param {*} [options] Override http request option.
@@ -5910,7 +5965,7 @@ export declare const BUSInputsOutputsApiFactory: (configuration?: Configuration,
5910
5965
  */
5911
5966
  setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): AxiosPromise<void>;
5912
5967
  /**
5913
- * Sets inputs/outputs on the PROFINET device from file.
5968
+ * 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
5969
  * @summary Set PROFINET Inputs/Outputs from File
5915
5970
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5916
5971
  * @param {ProfinetInputOutputConfig} profinetInputOutputConfig
@@ -5927,7 +5982,7 @@ export declare const BUSInputsOutputsApiFactory: (configuration?: Configuration,
5927
5982
  */
5928
5983
  export declare class BUSInputsOutputsApi extends BaseAPI {
5929
5984
  /**
5930
- * Add a BUS Inputs/Outputs Service to the cell.
5985
+ * Add the BUS inputs/outputs service to the cell. Starts a containerized service that enables BUS connections via the specified ethernet port.
5931
5986
  * @summary Add Service
5932
5987
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5933
5988
  * @param {BusIOType} busIOType
@@ -5938,7 +5993,7 @@ export declare class BUSInputsOutputsApi extends BaseAPI {
5938
5993
  */
5939
5994
  addBusIOService(cell: string, busIOType: BusIOType, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
5940
5995
  /**
5941
- * Adds an input/output to or updates an input/output on the PROFINET device.
5996
+ * 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
5997
  * @summary Add PROFINET Input/Output
5943
5998
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5944
5999
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -5949,7 +6004,7 @@ export declare class BUSInputsOutputsApi extends BaseAPI {
5949
6004
  */
5950
6005
  addProfinetIO(cell: string, io: string, profinetIOData: ProfinetIOData, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
5951
6006
  /**
5952
- * Delete BUS Inputs/Outputs Service from the cell.
6007
+ * Remove the BUS inputs/outputs service from the cell.
5953
6008
  * @summary Clear Service
5954
6009
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5955
6010
  * @param {number} [completionTimeout]
@@ -5959,7 +6014,7 @@ export declare class BUSInputsOutputsApi extends BaseAPI {
5959
6014
  */
5960
6015
  clearBusIOService(cell: string, completionTimeout?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
5961
6016
  /**
5962
- * Removes the input/output from the PROFINET device.
6017
+ * Removes an input/output variable configuration from the PROFINET device, e.g. NOVA\'s PROFINET service.
5963
6018
  * @summary Remove PROFINET Input/Ouptut
5964
6019
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5965
6020
  * @param {string} io Unique identifier to address an Input/Output in the cell.
@@ -5969,16 +6024,14 @@ export declare class BUSInputsOutputsApi extends BaseAPI {
5969
6024
  */
5970
6025
  deleteProfinetIO(cell: string, io: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
5971
6026
  /**
5972
- * Get deployed BUS Inputs/Outputs Service.
6027
+ * Get deployed BUS inputs/outputs service.
5973
6028
  * @summary Get Service
5974
6029
  * @param {string} cell Unique identifier addressing a cell in all API calls.
5975
6030
  * @param {*} [options] Override http request option.
5976
6031
  * @throws {RequiredError}
5977
6032
  * @memberof BUSInputsOutputsApi
5978
6033
  */
5979
- getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
5980
- bus_type: "profinet";
5981
- } & BusIOProfinet, any>>;
6034
+ getBusIOService(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BusIOType, any>>;
5982
6035
  /**
5983
6036
  * Get the current state of the BUS Inputs/Outputs service.
5984
6037
  * @summary State
@@ -5999,7 +6052,7 @@ export declare class BUSInputsOutputsApi extends BaseAPI {
5999
6052
  */
6000
6053
  getBusIOValues(cell: string, ios?: Array<string>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IOValue[], any>>;
6001
6054
  /**
6002
- * Get description of PROFINET
6055
+ * Get description of NOVA as a PROFINET device.
6003
6056
  * @summary Get PROFINET Description
6004
6057
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6005
6058
  * @param {*} [options] Override http request option.
@@ -6008,7 +6061,7 @@ export declare class BUSInputsOutputsApi extends BaseAPI {
6008
6061
  */
6009
6062
  getProfinetDescription(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProfinetDescription, any>>;
6010
6063
  /**
6011
- * Get input/output configuration of the PROFINET device as file.
6064
+ * 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
6065
  * @summary PROFINET Inputs/Outputs to File
6013
6066
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6014
6067
  * @param {number} [inputOffset]
@@ -6019,16 +6072,16 @@ export declare class BUSInputsOutputsApi extends BaseAPI {
6019
6072
  */
6020
6073
  getProfinetIOsFromFile(cell: string, inputOffset?: number, outputOffset?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
6021
6074
  /**
6022
- * List all BUS Input/Output descriptions.
6075
+ * 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
6076
  * @summary List Descriptions
6024
6077
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6025
6078
  * @param {*} [options] Override http request option.
6026
6079
  * @throws {RequiredError}
6027
6080
  * @memberof BUSInputsOutputsApi
6028
6081
  */
6029
- listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IODescription[], any>>;
6082
+ listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IODescription2[], any>>;
6030
6083
  /**
6031
- * List all PROFINET input and outputs.
6084
+ * 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
6085
  * @summary List PROFINET Input/Output Configuration
6033
6086
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6034
6087
  * @param {*} [options] Override http request option.
@@ -6047,7 +6100,7 @@ export declare class BUSInputsOutputsApi extends BaseAPI {
6047
6100
  */
6048
6101
  setBusIOValues(cell: string, iOValue: Array<IOValue>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
6049
6102
  /**
6050
- * Sets inputs/outputs on the PROFINET device from file.
6103
+ * 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
6104
  * @summary Set PROFINET Inputs/Outputs from File
6052
6105
  * @param {string} cell Unique identifier addressing a cell in all API calls.
6053
6106
  * @param {ProfinetInputOutputConfig} profinetInputOutputConfig