windmill-client 1.649.0 → 1.650.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 +2 -2
- package/package.json +1 -1
package/dist/core/OpenAPI.mjs
CHANGED
package/dist/index.js
CHANGED
package/dist/types.gen.d.ts
CHANGED
|
@@ -84,10 +84,10 @@ export type FlowValue = {
|
|
|
84
84
|
cache_ttl?: number;
|
|
85
85
|
cache_ignore_s3_path?: boolean;
|
|
86
86
|
/**
|
|
87
|
-
* Environment variables available to all steps
|
|
87
|
+
* Environment variables available to all steps. Values can be strings, JSON values, or special references: '$var:path' (workspace variable) or '$res:path' (resource).
|
|
88
88
|
*/
|
|
89
89
|
flow_env?: {
|
|
90
|
-
[key: string]:
|
|
90
|
+
[key: string]: unknown;
|
|
91
91
|
};
|
|
92
92
|
/**
|
|
93
93
|
* Execution priority (higher numbers run first)
|