@wandelbots/nova-api 26.6.0-dev.91 → 26.6.0-dev.93

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.
@@ -162,6 +162,7 @@ interface AbbConfiguredPose {
162
162
  interface AbbController {
163
163
  'kind': AbbControllerKindEnum;
164
164
  'controller_ip': string;
165
+ 'network_interface'?: ControllerNetworkInterface;
165
166
  /**
166
167
  * Default values: 80, 443. If custom value is set, field is required.
167
168
  */
@@ -1345,15 +1346,15 @@ interface ControllerDescription {
1345
1346
  'supports_safety_zones': boolean;
1346
1347
  }
1347
1348
  /**
1348
- * Optional dedicated network interface for a physical robot controller. When set, the controller is given its own network interface on the selected physical network port (`pf`) with the given `address`, so it can reach the robot network directly.
1349
+ * Optional dedicated network interface for a physical robot controller. When set, the controller is given its own network interface on the selected physical network port (`pf`) with the given `addresses`, so it can reach the robot network directly.
1349
1350
  */
1350
1351
  interface ControllerNetworkInterface {
1351
1352
  /**
1352
- * IPv4 address in CIDR notation to assign to the controller\'s network interface, for example `192.168.1.10/24`. The value must be a valid IPv4 address followed by a prefix length between 0 and 32.
1353
+ * IPv4 addresses in CIDR notation to assign to the controller\'s network interface. Each value must be a valid IPv4 address followed by a prefix length between 0 and 32.
1353
1354
  */
1354
- 'address': string;
1355
+ 'addresses': Array<string>;
1355
1356
  /**
1356
- * Name of the node\'s physical network port that connects to the robot network, for example `enp10s0f0`. The controller\'s interface is provided from this port. The physical port of an existing controller cannot be changed by an in-place update. To move a controller to a different port, delete the controller and re-add it with the new `pf`.
1357
+ * Name of the node\'s physical network port that connects to the robot network, e.g., `enp10s0f0`. The controller\'s interface is provided from this port. The physical port of an existing controller can\'t be changed by an in-place update. To move a controller to a different port, delete the controller and re-add it with the new `pf`.
1357
1358
  */
1358
1359
  'pf': string;
1359
1360
  }
@@ -2668,6 +2669,10 @@ interface KukaConfiguredPose {
2668
2669
  interface KukaController {
2669
2670
  'kind': KukaControllerKindEnum;
2670
2671
  'controller_ip': string;
2672
+ /**
2673
+ * The addresses must be ordered as KLI first and RSI second.
2674
+ */
2675
+ 'network_interface'?: ControllerNetworkInterface;
2671
2676
  'controller_port': number;
2672
2677
  'rsi_server': KukaControllerRsiServer;
2673
2678
  /**
@@ -4951,6 +4956,7 @@ interface StartOnIO {
4951
4956
  interface StaubliController {
4952
4957
  'kind': StaubliControllerKindEnum;
4953
4958
  'controller_ip': string;
4959
+ 'network_interface'?: ControllerNetworkInterface;
4954
4960
  'controller_port': number;
4955
4961
  'command_port': number;
4956
4962
  'rti_server': StaubliControllerRtiServer;
@@ -5289,6 +5295,7 @@ type UnitreeControllerRobotTypeEnum = typeof UnitreeControllerRobotTypeEnum[keyo
5289
5295
  interface UniversalrobotsController {
5290
5296
  'kind': UniversalrobotsControllerKindEnum;
5291
5297
  'controller_ip': string;
5298
+ 'network_interface'?: ControllerNetworkInterface;
5292
5299
  }
5293
5300
  declare const UniversalrobotsControllerKindEnum: {
5294
5301
  readonly UniversalrobotsController: "UniversalrobotsController";
@@ -5400,6 +5407,7 @@ interface WaitForIOEventRequest {
5400
5407
  interface YaskawaController {
5401
5408
  'kind': YaskawaControllerKindEnum;
5402
5409
  'controller_ip': string;
5410
+ 'network_interface'?: ControllerNetworkInterface;
5403
5411
  }
5404
5412
  declare const YaskawaControllerKindEnum: {
5405
5413
  readonly YaskawaController: "YaskawaController";
@@ -162,6 +162,7 @@ interface AbbConfiguredPose {
162
162
  interface AbbController {
163
163
  'kind': AbbControllerKindEnum;
164
164
  'controller_ip': string;
165
+ 'network_interface'?: ControllerNetworkInterface;
165
166
  /**
166
167
  * Default values: 80, 443. If custom value is set, field is required.
167
168
  */
@@ -1345,15 +1346,15 @@ interface ControllerDescription {
1345
1346
  'supports_safety_zones': boolean;
1346
1347
  }
1347
1348
  /**
1348
- * Optional dedicated network interface for a physical robot controller. When set, the controller is given its own network interface on the selected physical network port (`pf`) with the given `address`, so it can reach the robot network directly.
1349
+ * Optional dedicated network interface for a physical robot controller. When set, the controller is given its own network interface on the selected physical network port (`pf`) with the given `addresses`, so it can reach the robot network directly.
1349
1350
  */
1350
1351
  interface ControllerNetworkInterface {
1351
1352
  /**
1352
- * IPv4 address in CIDR notation to assign to the controller\'s network interface, for example `192.168.1.10/24`. The value must be a valid IPv4 address followed by a prefix length between 0 and 32.
1353
+ * IPv4 addresses in CIDR notation to assign to the controller\'s network interface. Each value must be a valid IPv4 address followed by a prefix length between 0 and 32.
1353
1354
  */
1354
- 'address': string;
1355
+ 'addresses': Array<string>;
1355
1356
  /**
1356
- * Name of the node\'s physical network port that connects to the robot network, for example `enp10s0f0`. The controller\'s interface is provided from this port. The physical port of an existing controller cannot be changed by an in-place update. To move a controller to a different port, delete the controller and re-add it with the new `pf`.
1357
+ * Name of the node\'s physical network port that connects to the robot network, e.g., `enp10s0f0`. The controller\'s interface is provided from this port. The physical port of an existing controller can\'t be changed by an in-place update. To move a controller to a different port, delete the controller and re-add it with the new `pf`.
1357
1358
  */
1358
1359
  'pf': string;
1359
1360
  }
@@ -2668,6 +2669,10 @@ interface KukaConfiguredPose {
2668
2669
  interface KukaController {
2669
2670
  'kind': KukaControllerKindEnum;
2670
2671
  'controller_ip': string;
2672
+ /**
2673
+ * The addresses must be ordered as KLI first and RSI second.
2674
+ */
2675
+ 'network_interface'?: ControllerNetworkInterface;
2671
2676
  'controller_port': number;
2672
2677
  'rsi_server': KukaControllerRsiServer;
2673
2678
  /**
@@ -4951,6 +4956,7 @@ interface StartOnIO {
4951
4956
  interface StaubliController {
4952
4957
  'kind': StaubliControllerKindEnum;
4953
4958
  'controller_ip': string;
4959
+ 'network_interface'?: ControllerNetworkInterface;
4954
4960
  'controller_port': number;
4955
4961
  'command_port': number;
4956
4962
  'rti_server': StaubliControllerRtiServer;
@@ -5289,6 +5295,7 @@ type UnitreeControllerRobotTypeEnum = typeof UnitreeControllerRobotTypeEnum[keyo
5289
5295
  interface UniversalrobotsController {
5290
5296
  'kind': UniversalrobotsControllerKindEnum;
5291
5297
  'controller_ip': string;
5298
+ 'network_interface'?: ControllerNetworkInterface;
5292
5299
  }
5293
5300
  declare const UniversalrobotsControllerKindEnum: {
5294
5301
  readonly UniversalrobotsController: "UniversalrobotsController";
@@ -5400,6 +5407,7 @@ interface WaitForIOEventRequest {
5400
5407
  interface YaskawaController {
5401
5408
  'kind': YaskawaControllerKindEnum;
5402
5409
  'controller_ip': string;
5410
+ 'network_interface'?: ControllerNetworkInterface;
5403
5411
  }
5404
5412
  declare const YaskawaControllerKindEnum: {
5405
5413
  readonly YaskawaController: "YaskawaController";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wandelbots/nova-api",
3
- "version": "26.6.0-dev.91",
3
+ "version": "26.6.0-dev.93",
4
4
  "description": "API Client to interact with Wandelbots Public API.",
5
5
  "type": "module",
6
6
  "files": [