@wandelbots/nova-api 26.2.0-dev.2 → 26.2.0-dev.20

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/dist/v2/index.cjs CHANGED
@@ -412,9 +412,14 @@ const ServiceStatusSeverity = {
412
412
  Warning: "WARNING",
413
413
  Error: "ERROR"
414
414
  };
415
+ /**
416
+ * Defines available system modes of the robot system. Short versions (no \"ROBOT_SYSTEM_\" prefix) are provided, reusing strings from [getMode](getMode) responses.
417
+ */
415
418
  const SettableRobotSystemMode = {
416
419
  RobotSystemModeMonitor: "ROBOT_SYSTEM_MODE_MONITOR",
417
- RobotSystemModeControl: "ROBOT_SYSTEM_MODE_CONTROL"
420
+ ModeMonitor: "MODE_MONITOR",
421
+ RobotSystemModeControl: "ROBOT_SYSTEM_MODE_CONTROL",
422
+ ModeControl: "MODE_CONTROL"
418
423
  };
419
424
  const SingularityTypeEnum = {
420
425
  Wrist: "WRIST",
@@ -7,7 +7,7 @@ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
7
7
  * Wandelbots NOVA API
8
8
  * Interact with robots in an easy and intuitive way.
9
9
  *
10
- * The version of the OpenAPI document: 2.1.0
10
+ * The version of the OpenAPI document: 2.2.0 dev
11
11
  *
12
12
  *
13
13
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -164,7 +164,7 @@ interface ActivateLicenseRequest {
164
164
  interface AddTrajectoryError {
165
165
  'message'?: string;
166
166
  /**
167
- * Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g., in combination with [streamMoveToTrajectoryViaJointPTP](streamMoveToTrajectoryViaJointPTP), set the location by respecting the following format: - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
167
+ * - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
168
168
  */
169
169
  'location'?: number;
170
170
  'data'?: AddTrajectoryErrorData;
@@ -1343,7 +1343,7 @@ interface InitializeMovementRequest {
1343
1343
  'message_type': InitializeMovementRequestMessageTypeEnum;
1344
1344
  'trajectory': InitializeMovementRequestTrajectory;
1345
1345
  /**
1346
- * Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g., in combination with [streamMoveToTrajectoryViaJointPTP](streamMoveToTrajectoryViaJointPTP), set the location by respecting the following format: - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
1346
+ * - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
1347
1347
  */
1348
1348
  'initial_location'?: number;
1349
1349
  /**
@@ -2349,7 +2349,7 @@ type PlanCollisionFreeResponseResponse = JointTrajectory | PlanCollisionFreeFail
2349
2349
  interface PlanTrajectoryFailedResponse {
2350
2350
  'error_feedback': PlanTrajectoryFailedResponseErrorFeedback;
2351
2351
  /**
2352
- * Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g., in combination with [streamMoveToTrajectoryViaJointPTP](streamMoveToTrajectoryViaJointPTP), set the location by respecting the following format: - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
2352
+ * - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
2353
2353
  */
2354
2354
  'error_location_on_trajectory': number;
2355
2355
  /**
@@ -2911,9 +2911,14 @@ interface SetIO {
2911
2911
  'location': number;
2912
2912
  'io_origin': IOOrigin;
2913
2913
  }
2914
+ /**
2915
+ * Defines available system modes of the robot system. Short versions (no \"ROBOT_SYSTEM_\" prefix) are provided, reusing strings from [getMode](getMode) responses.
2916
+ */
2914
2917
  declare const SettableRobotSystemMode: {
2915
2918
  readonly RobotSystemModeMonitor: "ROBOT_SYSTEM_MODE_MONITOR";
2919
+ readonly ModeMonitor: "MODE_MONITOR";
2916
2920
  readonly RobotSystemModeControl: "ROBOT_SYSTEM_MODE_CONTROL";
2921
+ readonly ModeControl: "MODE_CONTROL";
2917
2922
  };
2918
2923
  type SettableRobotSystemMode = typeof SettableRobotSystemMode[keyof typeof SettableRobotSystemMode];
2919
2924
  declare const SingularityTypeEnum: {
@@ -2946,7 +2951,7 @@ interface StartMovementRequest {
2946
2951
  'message_type': StartMovementRequestMessageTypeEnum;
2947
2952
  'direction'?: Direction;
2948
2953
  /**
2949
- * Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g., in combination with [streamMoveToTrajectoryViaJointPTP](streamMoveToTrajectoryViaJointPTP), set the location by respecting the following format: - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
2954
+ * - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
2950
2955
  */
2951
2956
  'target_location'?: number;
2952
2957
  /**
@@ -3101,7 +3106,7 @@ interface TrajectoryDetails {
3101
3106
  */
3102
3107
  'trajectory': string;
3103
3108
  /**
3104
- * Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g., in combination with [streamMoveToTrajectoryViaJointPTP](streamMoveToTrajectoryViaJointPTP), set the location by respecting the following format: - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
3109
+ * - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
3105
3110
  */
3106
3111
  'location': number;
3107
3112
  'state': TrajectoryDetailsState;
@@ -7,7 +7,7 @@ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
7
7
  * Wandelbots NOVA API
8
8
  * Interact with robots in an easy and intuitive way.
9
9
  *
10
- * The version of the OpenAPI document: 2.1.0
10
+ * The version of the OpenAPI document: 2.2.0 dev
11
11
  *
12
12
  *
13
13
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -164,7 +164,7 @@ interface ActivateLicenseRequest {
164
164
  interface AddTrajectoryError {
165
165
  'message'?: string;
166
166
  /**
167
- * Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g., in combination with [streamMoveToTrajectoryViaJointPTP](streamMoveToTrajectoryViaJointPTP), set the location by respecting the following format: - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
167
+ * - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
168
168
  */
169
169
  'location'?: number;
170
170
  'data'?: AddTrajectoryErrorData;
@@ -1343,7 +1343,7 @@ interface InitializeMovementRequest {
1343
1343
  'message_type': InitializeMovementRequestMessageTypeEnum;
1344
1344
  'trajectory': InitializeMovementRequestTrajectory;
1345
1345
  /**
1346
- * Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g., in combination with [streamMoveToTrajectoryViaJointPTP](streamMoveToTrajectoryViaJointPTP), set the location by respecting the following format: - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
1346
+ * - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
1347
1347
  */
1348
1348
  'initial_location'?: number;
1349
1349
  /**
@@ -2349,7 +2349,7 @@ type PlanCollisionFreeResponseResponse = JointTrajectory | PlanCollisionFreeFail
2349
2349
  interface PlanTrajectoryFailedResponse {
2350
2350
  'error_feedback': PlanTrajectoryFailedResponseErrorFeedback;
2351
2351
  /**
2352
- * Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g., in combination with [streamMoveToTrajectoryViaJointPTP](streamMoveToTrajectoryViaJointPTP), set the location by respecting the following format: - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
2352
+ * - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
2353
2353
  */
2354
2354
  'error_location_on_trajectory': number;
2355
2355
  /**
@@ -2911,9 +2911,14 @@ interface SetIO {
2911
2911
  'location': number;
2912
2912
  'io_origin': IOOrigin;
2913
2913
  }
2914
+ /**
2915
+ * Defines available system modes of the robot system. Short versions (no \"ROBOT_SYSTEM_\" prefix) are provided, reusing strings from [getMode](getMode) responses.
2916
+ */
2914
2917
  declare const SettableRobotSystemMode: {
2915
2918
  readonly RobotSystemModeMonitor: "ROBOT_SYSTEM_MODE_MONITOR";
2919
+ readonly ModeMonitor: "MODE_MONITOR";
2916
2920
  readonly RobotSystemModeControl: "ROBOT_SYSTEM_MODE_CONTROL";
2921
+ readonly ModeControl: "MODE_CONTROL";
2917
2922
  };
2918
2923
  type SettableRobotSystemMode = typeof SettableRobotSystemMode[keyof typeof SettableRobotSystemMode];
2919
2924
  declare const SingularityTypeEnum: {
@@ -2946,7 +2951,7 @@ interface StartMovementRequest {
2946
2951
  'message_type': StartMovementRequestMessageTypeEnum;
2947
2952
  'direction'?: Direction;
2948
2953
  /**
2949
- * Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g., in combination with [streamMoveToTrajectoryViaJointPTP](streamMoveToTrajectoryViaJointPTP), set the location by respecting the following format: - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
2954
+ * - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
2950
2955
  */
2951
2956
  'target_location'?: number;
2952
2957
  /**
@@ -3101,7 +3106,7 @@ interface TrajectoryDetails {
3101
3106
  */
3102
3107
  'trajectory': string;
3103
3108
  /**
3104
- * Location on trajectory where the execution will start. The default value is the start (forward movement) or end (backward movement) of the trajectory. If you want to start your movement from an arbitrary location, e.g., in combination with [streamMoveToTrajectoryViaJointPTP](streamMoveToTrajectoryViaJointPTP), set the location by respecting the following format: - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
3109
+ * - The location is a scalar value that defines a position along a path, typically ranging from 0 to `n`, where `n` denotes the number of motion commands - Each integer value of the location corresponds to a specific motion command, while non-integer values interpolate positions within the segments. - The location is calculated from the joint path
3105
3110
  */
3106
3111
  'location': number;
3107
3112
  'state': TrajectoryDetailsState;
package/dist/v2/index.js CHANGED
@@ -410,9 +410,14 @@ const ServiceStatusSeverity = {
410
410
  Warning: "WARNING",
411
411
  Error: "ERROR"
412
412
  };
413
+ /**
414
+ * Defines available system modes of the robot system. Short versions (no \"ROBOT_SYSTEM_\" prefix) are provided, reusing strings from [getMode](getMode) responses.
415
+ */
413
416
  const SettableRobotSystemMode = {
414
417
  RobotSystemModeMonitor: "ROBOT_SYSTEM_MODE_MONITOR",
415
- RobotSystemModeControl: "ROBOT_SYSTEM_MODE_CONTROL"
418
+ ModeMonitor: "MODE_MONITOR",
419
+ RobotSystemModeControl: "ROBOT_SYSTEM_MODE_CONTROL",
420
+ ModeControl: "MODE_CONTROL"
416
421
  };
417
422
  const SingularityTypeEnum = {
418
423
  Wrist: "WRIST",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wandelbots/nova-api",
3
- "version": "26.2.0-dev.2",
3
+ "version": "26.2.0-dev.20",
4
4
  "description": "API Client to interact with Wandelbots Public API.",
5
5
  "type": "module",
6
6
  "files": [