windmill-client 1.681.0 → 1.682.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 +6 -6
- package/package.json +1 -1
package/dist/core/OpenAPI.mjs
CHANGED
package/dist/index.js
CHANGED
package/dist/types.gen.d.ts
CHANGED
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
export type CiTestResult = {
|
|
2
|
-
test_script_path: string;
|
|
3
|
-
job_id?: string | null;
|
|
4
|
-
status?: string | null;
|
|
5
|
-
started_at?: string | null;
|
|
6
|
-
};
|
|
7
1
|
/**
|
|
8
2
|
* Top-level flow definition containing metadata, configuration, and the flow structure
|
|
9
3
|
*/
|
|
@@ -885,6 +879,12 @@ export type FlowNote = {
|
|
|
885
879
|
*/
|
|
886
880
|
contained_node_ids?: Array<(string)>;
|
|
887
881
|
};
|
|
882
|
+
export type CiTestResult = {
|
|
883
|
+
test_script_path: string;
|
|
884
|
+
job_id?: string | null;
|
|
885
|
+
status?: string | null;
|
|
886
|
+
started_at?: string | null;
|
|
887
|
+
};
|
|
888
888
|
/**
|
|
889
889
|
* Health status response (cached with 5s TTL)
|
|
890
890
|
*/
|