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.
@@ -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.748.0",
32
+ VERSION: "1.749.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.748.0",
129
+ VERSION: "1.749.0",
130
130
  WITH_CREDENTIALS: true,
131
131
  interceptors: {
132
132
  request: new Interceptors(),
@@ -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.748.0",
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",