@wandelbots/nova-api 26.2.0-dev.7 → 26.2.0-dev.9
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/v1/index.d.cts +178 -178
- package/dist/v2/index.cjs +6 -1
- package/dist/v2/index.d.cts +146 -141
- package/dist/v2/index.d.ts +6 -1
- package/dist/v2/index.js +6 -1
- package/package.json +1 -1
package/dist/v2/index.d.ts
CHANGED
|
@@ -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.
|
|
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).
|
|
@@ -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: {
|
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
|
-
|
|
418
|
+
ModeMonitor: "MODE_MONITOR",
|
|
419
|
+
RobotSystemModeControl: "ROBOT_SYSTEM_MODE_CONTROL",
|
|
420
|
+
ModeControl: "MODE_CONTROL"
|
|
416
421
|
};
|
|
417
422
|
const SingularityTypeEnum = {
|
|
418
423
|
Wrist: "WRIST",
|