@wandelbots/nova-api 26.4.1-rc.2 → 26.5.0-dev.11
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.d.cts +4 -4
- package/dist/v2/index.d.ts +4 -4
- package/package.json +1 -1
package/dist/v2/index.d.cts
CHANGED
|
@@ -6,7 +6,7 @@ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
|
6
6
|
* Wandelbots NOVA API
|
|
7
7
|
* Interact with robots in an easy and intuitive way.
|
|
8
8
|
*
|
|
9
|
-
* The version of the OpenAPI document: 2.
|
|
9
|
+
* The version of the OpenAPI document: 2.5.0 dev
|
|
10
10
|
*
|
|
11
11
|
*
|
|
12
12
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2259,9 +2259,9 @@ type JointVelocityResponseKindEnum = typeof JointVelocityResponseKindEnum[keyof
|
|
|
2259
2259
|
* A 6-DOF robot with spherical wrist has up to 8 inverse kinematics solutions for a given TCP pose (2^3 branches). Each branch represents one side of a kinematic singularity boundary. The three binary choices are shoulder, elbow, and wrist. > **NOTE** > > `FRONT`/`BACK`, `UP`/`DOWN`, `NO_FLIP`/`FLIP` are conventional > labels for the two sides of each branch. The labels describe the > typical geometric interpretation for common poses, but are not absolute spatial > directions. The labels are consistent within a given solver: The same physical > arm shape maps to the same branch value. The branch values are purely > geometric and describe the same physical configuration regardless of > vendor convention.
|
|
2260
2260
|
*/
|
|
2261
2261
|
interface KinematicBranch {
|
|
2262
|
-
'wrist_branch'
|
|
2263
|
-
'elbow_branch'
|
|
2264
|
-
'shoulder_branch'
|
|
2262
|
+
'wrist_branch': KinematicBranchWrist;
|
|
2263
|
+
'elbow_branch': KinematicBranchElbow;
|
|
2264
|
+
'shoulder_branch': KinematicBranchShoulder;
|
|
2265
2265
|
}
|
|
2266
2266
|
declare const KinematicBranchElbow: {
|
|
2267
2267
|
readonly Up: "UP";
|
package/dist/v2/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
|
|
|
6
6
|
* Wandelbots NOVA API
|
|
7
7
|
* Interact with robots in an easy and intuitive way.
|
|
8
8
|
*
|
|
9
|
-
* The version of the OpenAPI document: 2.
|
|
9
|
+
* The version of the OpenAPI document: 2.5.0 dev
|
|
10
10
|
*
|
|
11
11
|
*
|
|
12
12
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2259,9 +2259,9 @@ type JointVelocityResponseKindEnum = typeof JointVelocityResponseKindEnum[keyof
|
|
|
2259
2259
|
* A 6-DOF robot with spherical wrist has up to 8 inverse kinematics solutions for a given TCP pose (2^3 branches). Each branch represents one side of a kinematic singularity boundary. The three binary choices are shoulder, elbow, and wrist. > **NOTE** > > `FRONT`/`BACK`, `UP`/`DOWN`, `NO_FLIP`/`FLIP` are conventional > labels for the two sides of each branch. The labels describe the > typical geometric interpretation for common poses, but are not absolute spatial > directions. The labels are consistent within a given solver: The same physical > arm shape maps to the same branch value. The branch values are purely > geometric and describe the same physical configuration regardless of > vendor convention.
|
|
2260
2260
|
*/
|
|
2261
2261
|
interface KinematicBranch {
|
|
2262
|
-
'wrist_branch'
|
|
2263
|
-
'elbow_branch'
|
|
2264
|
-
'shoulder_branch'
|
|
2262
|
+
'wrist_branch': KinematicBranchWrist;
|
|
2263
|
+
'elbow_branch': KinematicBranchElbow;
|
|
2264
|
+
'shoulder_branch': KinematicBranchShoulder;
|
|
2265
2265
|
}
|
|
2266
2266
|
declare const KinematicBranchElbow: {
|
|
2267
2267
|
readonly Up: "UP";
|