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.
@@ -29,7 +29,7 @@ const OpenAPI = {
29
29
  PASSWORD: void 0,
30
30
  TOKEN: getEnv("WM_TOKEN"),
31
31
  USERNAME: void 0,
32
- VERSION: "1.679.0",
32
+ VERSION: "1.680.0",
33
33
  WITH_CREDENTIALS: true,
34
34
  interceptors: {
35
35
  request: new Interceptors(),
package/dist/index.js CHANGED
@@ -126,7 +126,7 @@ const OpenAPI = {
126
126
  PASSWORD: void 0,
127
127
  TOKEN: getEnv$1("WM_TOKEN"),
128
128
  USERNAME: void 0,
129
- VERSION: "1.679.0",
129
+ VERSION: "1.680.0",
130
130
  WITH_CREDENTIALS: true,
131
131
  interceptors: {
132
132
  request: new Interceptors(),
@@ -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 true, this step's result is deleted after use to save memory
247
+ * If set, delete the step's args, result and logs after this many seconds following job completion
244
248
  */
245
- delete_after_use?: boolean;
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
- delete_after_use?: boolean;
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
- delete_after_use?: boolean;
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 = {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "windmill-client",
3
3
  "description": "Windmill SDK client for browsers and Node.js",
4
- "version": "1.679.0",
4
+ "version": "1.680.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "sideEffects": false,