@wandelbots/nova-api 26.1.0-rc.3 → 26.2.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/v1/index.d.ts +178 -178
- package/dist/v2/index.cjs +6 -1
- package/dist/v2/index.d.cts +11 -6
- package/dist/v2/index.d.ts +151 -146
- package/dist/v2/index.js +6 -1
- package/package.json +1 -1
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",
|