@cycleplatform/api-client-typescript 0.1.12 → 0.1.13

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": "@cycleplatform/api-client-typescript",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "A Cycle API client for the web/nodejs",
5
5
  "main": "./dist/index.umd.cjs",
6
6
  "module": "./dist/index.js",
@@ -4547,13 +4547,21 @@ export interface components {
4547
4547
  };
4548
4548
  };
4549
4549
  health_check?: {
4550
+ /**
4551
+ * @description The command to run as your health check
4552
+ * @example /bin/sh healthcheck.sh
4553
+ */
4550
4554
  command: string;
4555
+ /** @description The number of times to retry the command before marking an instance unhealthy */
4551
4556
  retries: number;
4552
- /** @description How long to wait between restarts. */
4557
+ /** @description How long to wait between running health checks. */
4553
4558
  interval: components["schemas"]["Duration"];
4554
4559
  /** @description How long before a health check attempt times out. */
4555
4560
  timeout: components["schemas"]["Duration"];
4561
+ /** @description A boolean where true represents the desire for the container to restart if any instance is unhealthy. */
4556
4562
  restart: boolean;
4563
+ /** @description How long to wait after a container start event before starting health checks. */
4564
+ delay?: components["schemas"]["Duration"];
4557
4565
  };
4558
4566
  telemetry?: {
4559
4567
  /** @description How long telemetry data should be retained. */