@wandelbots/nova-api 25.4.0-dev.6 → 25.4.0-dev.8

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/v2/api.ts CHANGED
@@ -242,6 +242,12 @@ export interface App {
242
242
  * @memberof App
243
243
  */
244
244
  'storage'?: ContainerStorage;
245
+ /**
246
+ * 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.
247
+ * @type {string}
248
+ * @memberof App
249
+ */
250
+ 'health_path'?: string;
245
251
  }
246
252
  /**
247
253
  *