windmill-client 1.679.0 → 1.680.0
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/dist/core/OpenAPI.mjs +1 -1
- package/dist/index.js +1 -1
- package/dist/types.gen.d.ts +14 -8
- package/package.json +1 -1
package/dist/core/OpenAPI.mjs
CHANGED
package/dist/index.js
CHANGED
package/dist/types.gen.d.ts
CHANGED
|
@@ -83,6 +83,10 @@ export type FlowValue = {
|
|
|
83
83
|
*/
|
|
84
84
|
cache_ttl?: number;
|
|
85
85
|
cache_ignore_s3_path?: boolean;
|
|
86
|
+
/**
|
|
87
|
+
* If set, delete the flow job's args, result and logs after this many seconds following job completion
|
|
88
|
+
*/
|
|
89
|
+
delete_after_secs?: number;
|
|
86
90
|
/**
|
|
87
91
|
* Environment variables available to all steps. Values can be strings, JSON values, or special references: '$var:path' (workspace variable) or '$res:path' (resource).
|
|
88
92
|
*/
|
|
@@ -240,9 +244,9 @@ export type FlowModule = {
|
|
|
240
244
|
*/
|
|
241
245
|
timeout?: InputTransform;
|
|
242
246
|
/**
|
|
243
|
-
* If
|
|
247
|
+
* If set, delete the step's args, result and logs after this many seconds following job completion
|
|
244
248
|
*/
|
|
245
|
-
|
|
249
|
+
delete_after_secs?: number;
|
|
246
250
|
/**
|
|
247
251
|
* Short description of what this step does
|
|
248
252
|
*/
|
|
@@ -1411,7 +1415,10 @@ export type Script = {
|
|
|
1411
1415
|
priority?: number;
|
|
1412
1416
|
restart_unless_cancelled?: boolean;
|
|
1413
1417
|
timeout?: number;
|
|
1414
|
-
|
|
1418
|
+
/**
|
|
1419
|
+
* If set, delete the job's args, result and logs after this many seconds following job completion
|
|
1420
|
+
*/
|
|
1421
|
+
delete_after_secs?: number;
|
|
1415
1422
|
visible_to_runner_only?: boolean;
|
|
1416
1423
|
auto_kind?: string;
|
|
1417
1424
|
codebase?: string;
|
|
@@ -1450,7 +1457,10 @@ export type NewScript = {
|
|
|
1450
1457
|
priority?: number;
|
|
1451
1458
|
restart_unless_cancelled?: boolean;
|
|
1452
1459
|
timeout?: number;
|
|
1453
|
-
|
|
1460
|
+
/**
|
|
1461
|
+
* If set, delete the job's args, result and logs after this many seconds following job completion
|
|
1462
|
+
*/
|
|
1463
|
+
delete_after_secs?: number;
|
|
1454
1464
|
deployment_message?: string;
|
|
1455
1465
|
concurrency_key?: string;
|
|
1456
1466
|
debounce_key?: string;
|
|
@@ -2037,10 +2047,6 @@ export type EditResource = {
|
|
|
2037
2047
|
* The new resource_type to be associated with the resource
|
|
2038
2048
|
*/
|
|
2039
2049
|
resource_type?: string;
|
|
2040
|
-
/**
|
|
2041
|
-
* When true, the resource is excluded from workspace diff comparisons
|
|
2042
|
-
*/
|
|
2043
|
-
ws_specific?: boolean;
|
|
2044
2050
|
labels?: Array<(string)>;
|
|
2045
2051
|
};
|
|
2046
2052
|
export type Resource = {
|