@cycleplatform/api-client-typescript 0.1.12 → 0.1.14
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,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cycleplatform/api-client-typescript",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.14",
|
|
4
4
|
"description": "A Cycle API client for the web/nodejs",
|
|
5
5
|
"main": "./dist/index.umd.cjs",
|
|
6
6
|
"module": "./dist/index.js",
|
|
7
|
+
"type": "module",
|
|
7
8
|
"exports": {
|
|
8
9
|
".": {
|
|
9
10
|
"import": "./dist/index.js",
|
|
@@ -41,7 +42,7 @@
|
|
|
41
42
|
"msw": "1.2.3",
|
|
42
43
|
"openapi-typescript": "6.4.4",
|
|
43
44
|
"typescript": "^5.0.4",
|
|
44
|
-
"vite": "4.4.
|
|
45
|
+
"vite": "4.4.11",
|
|
45
46
|
"vitest": "0.33.0"
|
|
46
47
|
}
|
|
47
48
|
}
|
package/src/generated/types.ts
CHANGED
|
@@ -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
|
|
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. */
|
|
File without changes
|
|
File without changes
|