@wandelbots/nova-api 25.6.0-dev.33 → 25.6.0-dev.35
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/package.json +1 -1
- package/v2/api.d.ts +6 -0
- package/v2/api.js.map +1 -1
- package/v2/api.ts +6 -0
package/v2/api.ts
CHANGED
|
@@ -216,6 +216,12 @@ export interface App {
|
|
|
216
216
|
* @memberof App
|
|
217
217
|
*/
|
|
218
218
|
'health_path'?: string;
|
|
219
|
+
/**
|
|
220
|
+
* Defines the URL path suffix used to provide an endpoint for diagnosis data collection. The complete diagnosis check URL is constructed as `/$cell/$name/$diagnosis_path`. The endpoint is called when a diagnosis package is requested via the diagnosis API. The endpoint needs to return the data within a zip file `application/zip` response.
|
|
221
|
+
* @type {string}
|
|
222
|
+
* @memberof App
|
|
223
|
+
*/
|
|
224
|
+
'diagnosis_path'?: string;
|
|
219
225
|
}
|
|
220
226
|
/**
|
|
221
227
|
* ## BEHAVIOR_AUTOMATIC This is the default behavior. The motion group instantly takes any commanded joint configuration as actual joint state. Configures the compliance of the virtual robot with the normal ControllerState cycle time. If set, the virtual robot will act like a physical one, e.g. with a cycle time of 8ms to respond to a new joint state command. ## BEHAVIOR_AUTOMATIC_NOT_COMPLY_WITH_CYCLETIME Configures the compliance of the virtual robot with the normal ControllerState cycle time. If set, the robot will respond as fast as possible, limited only by software execution speed. Because of that the execution of a movement requires less time than with BEHAVIOR_AUTOMATIC. ## BEHAVIOR_EXTERNAL_SOURCE The external client is the only source of actual joint state changes. This mode is used to enable third party software indicating the current joint state via [externalJointsStream](externalJointsStream).
|