@wandelbots/nova-api 25.8.0-dev.45 → 25.8.0-dev.47
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/package.json +1 -1
- package/v2/api.d.ts +7 -7
- package/v2/api.js.map +1 -1
- package/v2/api.ts +8 -8
package/package.json
CHANGED
package/v2/api.d.ts
CHANGED
|
@@ -354,11 +354,17 @@ export interface BusIOProfinet {
|
|
|
354
354
|
*/
|
|
355
355
|
'bus_type'?: BusIOProfinetBusTypeEnum;
|
|
356
356
|
/**
|
|
357
|
-
* Used to enable IP communication through the same physical interface while
|
|
357
|
+
* Used to enable IP communication through the same physical ethernet interface while PROFINET driver is active.
|
|
358
358
|
* @type {BusIOProfinetNetwork}
|
|
359
359
|
* @memberof BusIOProfinet
|
|
360
360
|
*/
|
|
361
361
|
'network_config'?: BusIOProfinetNetwork;
|
|
362
|
+
/**
|
|
363
|
+
* IP address of the PLC to establish PROFINET communication with. The IP address is used to configure the host machine\'s firewall. The firewall configuration is applied while the BUS input/output service is active. Without proper firewall configuration, PROFINET device discovery, configuration exchanges, and real-time cyclic data communication will fail.
|
|
364
|
+
* @type {string}
|
|
365
|
+
* @memberof BusIOProfinet
|
|
366
|
+
*/
|
|
367
|
+
'plc_ip': string;
|
|
362
368
|
/**
|
|
363
369
|
* MAC address of the physical ethernet interface that you want to use for PROFINET communication.
|
|
364
370
|
* @type {string}
|
|
@@ -2053,12 +2059,6 @@ export interface InitializeJoggingRequest {
|
|
|
2053
2059
|
* @memberof InitializeJoggingRequest
|
|
2054
2060
|
*/
|
|
2055
2061
|
'response_coordinate_system'?: string;
|
|
2056
|
-
/**
|
|
2057
|
-
* Defines an input/output that is listened to during the movement. Execution pauses if the defined comparator evaluates to `true`.
|
|
2058
|
-
* @type {string}
|
|
2059
|
-
* @memberof InitializeJoggingRequest
|
|
2060
|
-
*/
|
|
2061
|
-
'pause_on_io'?: string;
|
|
2062
2062
|
}
|
|
2063
2063
|
export declare const InitializeJoggingRequestMessageTypeEnum: {
|
|
2064
2064
|
readonly InitializeJoggingRequest: "InitializeJoggingRequest";
|