windmill-client 1.748.0 → 1.749.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 +22 -0
- package/package.json +1 -1
package/dist/core/OpenAPI.mjs
CHANGED
package/dist/index.js
CHANGED
package/dist/types.gen.d.ts
CHANGED
|
@@ -14963,6 +14963,17 @@ export type GetAssetsGraphResponse = {
|
|
|
14963
14963
|
macro_names: Array<(string)>;
|
|
14964
14964
|
via_use: boolean;
|
|
14965
14965
|
}>;
|
|
14966
|
+
/**
|
|
14967
|
+
* Ordering-only "must-run-after" edges — a `// data_test relationships` (or custom test reading a pipeline asset) requires the referenced asset's producer to run before the tested script. Not a data-consumption edge; fed into the cascade topo-sort so cold runs order correctly. Omitted when empty.
|
|
14968
|
+
*/
|
|
14969
|
+
test_edges?: Array<{
|
|
14970
|
+
producer_kind: AssetUsageKind;
|
|
14971
|
+
producer_path: string;
|
|
14972
|
+
runnable_kind: AssetUsageKind;
|
|
14973
|
+
runnable_path: string;
|
|
14974
|
+
asset_kind: AssetKind;
|
|
14975
|
+
asset_path: string;
|
|
14976
|
+
}>;
|
|
14966
14977
|
};
|
|
14967
14978
|
export type ListWorkspaceMacrosData = {
|
|
14968
14979
|
workspace: string;
|
|
@@ -30674,6 +30685,17 @@ export type $OpenApiTs = {
|
|
|
30674
30685
|
macro_names: Array<(string)>;
|
|
30675
30686
|
via_use: boolean;
|
|
30676
30687
|
}>;
|
|
30688
|
+
/**
|
|
30689
|
+
* Ordering-only "must-run-after" edges — a `// data_test relationships` (or custom test reading a pipeline asset) requires the referenced asset's producer to run before the tested script. Not a data-consumption edge; fed into the cascade topo-sort so cold runs order correctly. Omitted when empty.
|
|
30690
|
+
*/
|
|
30691
|
+
test_edges?: Array<{
|
|
30692
|
+
producer_kind: AssetUsageKind;
|
|
30693
|
+
producer_path: string;
|
|
30694
|
+
runnable_kind: AssetUsageKind;
|
|
30695
|
+
runnable_path: string;
|
|
30696
|
+
asset_kind: AssetKind;
|
|
30697
|
+
asset_path: string;
|
|
30698
|
+
}>;
|
|
30677
30699
|
};
|
|
30678
30700
|
};
|
|
30679
30701
|
};
|
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.
|
|
4
|
+
"version": "1.749.0",
|
|
5
5
|
"author": "Ruben Fiszel",
|
|
6
6
|
"license": "Apache 2.0",
|
|
7
7
|
"homepage": "https://github.com/windmill-labs/windmill/tree/main/typescript-client#readme",
|