@wandelbots/nova-api 25.4.0-dev.5 → 25.4.0-dev.7

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wandelbots/nova-api",
3
- "version": "25.4.0-dev.5",
3
+ "version": "25.4.0-dev.7",
4
4
  "description": "API Client to interact with Wandelbots Public API.",
5
5
  "files": [
6
6
  "*",
package/v2/api.d.ts CHANGED
@@ -228,6 +228,12 @@ export interface App {
228
228
  * @memberof App
229
229
  */
230
230
  'storage'?: ContainerStorage;
231
+ /**
232
+ * Defines the URL path suffix used to check the application\'s health status. The complete health check URL is constructed as `/$cell/$name/$health_path`. When the application is working as expected, the endpoint returns an HTTP 200 status code. If not specified, the system will default to using the application icon path suffix (the value of `app_icon`) as the health check endpoint, resulting in `/$cell/$name/$app_icon`. If the health check fails (no response or non-200 status code), the system will automatically restart the application container to restore service.
233
+ * @type {string}
234
+ * @memberof App
235
+ */
236
+ 'health_path'?: string;
231
237
  }
232
238
  /**
233
239
  *