windmill-client 1.733.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.
@@ -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.733.0",
32
+ VERSION: "1.733.1",
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.733.0",
129
+ VERSION: "1.733.1",
130
130
  WITH_CREDENTIALS: true,
131
131
  interceptors: {
132
132
  request: new Interceptors(),
@@ -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.733.0",
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",