windmill-client 1.732.0 → 1.733.1
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 +16 -0
- package/package.json +1 -1
package/dist/core/OpenAPI.mjs
CHANGED
package/dist/index.js
CHANGED
package/dist/types.gen.d.ts
CHANGED
|
@@ -11558,6 +11558,10 @@ export type GetApprovalInfoResponse = {
|
|
|
11558
11558
|
resume_id: number;
|
|
11559
11559
|
approver: string;
|
|
11560
11560
|
}>;
|
|
11561
|
+
/**
|
|
11562
|
+
* Share-read-link token for the flow. An authenticated workspace member can append it as a `view_token` query param on the run page to read a flow they don't otherwise have access to.
|
|
11563
|
+
*/
|
|
11564
|
+
view_token?: string;
|
|
11561
11565
|
};
|
|
11562
11566
|
export type ResumeSuspendedJobGetData = {
|
|
11563
11567
|
approver?: string;
|
|
@@ -11640,6 +11644,10 @@ export type GetSuspendedJobFlowResponse = {
|
|
|
11640
11644
|
resume_id: number;
|
|
11641
11645
|
approver: string;
|
|
11642
11646
|
}>;
|
|
11647
|
+
/**
|
|
11648
|
+
* Share-read-link token for the parent flow. An authenticated workspace member can append it as a `view_token` query param on the run page to read a flow they don't otherwise have access to.
|
|
11649
|
+
*/
|
|
11650
|
+
view_token?: string;
|
|
11643
11651
|
};
|
|
11644
11652
|
export type ListExtendedJobsData = {
|
|
11645
11653
|
/**
|
|
@@ -24504,6 +24512,10 @@ export type $OpenApiTs = {
|
|
|
24504
24512
|
resume_id: number;
|
|
24505
24513
|
approver: string;
|
|
24506
24514
|
}>;
|
|
24515
|
+
/**
|
|
24516
|
+
* Share-read-link token for the flow. An authenticated workspace member can append it as a `view_token` query param on the run page to read a flow they don't otherwise have access to.
|
|
24517
|
+
*/
|
|
24518
|
+
view_token?: string;
|
|
24507
24519
|
};
|
|
24508
24520
|
};
|
|
24509
24521
|
};
|
|
@@ -24652,6 +24664,10 @@ export type $OpenApiTs = {
|
|
|
24652
24664
|
resume_id: number;
|
|
24653
24665
|
approver: string;
|
|
24654
24666
|
}>;
|
|
24667
|
+
/**
|
|
24668
|
+
* Share-read-link token for the parent flow. An authenticated workspace member can append it as a `view_token` query param on the run page to read a flow they don't otherwise have access to.
|
|
24669
|
+
*/
|
|
24670
|
+
view_token?: string;
|
|
24655
24671
|
};
|
|
24656
24672
|
};
|
|
24657
24673
|
};
|
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.733.1",
|
|
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",
|