windmill-client 1.180.0 → 1.181.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.
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OpenAPI = void 0;
4
4
  exports.OpenAPI = {
5
5
  BASE: '/api',
6
- VERSION: '1.180.0',
6
+ VERSION: '1.181.0',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -70,9 +70,13 @@ export declare class ResourceService {
70
70
  * @returns any resource value
71
71
  * @throws ApiError
72
72
  */
73
- static getResourceValueInterpolated({ workspace, path, }: {
73
+ static getResourceValueInterpolated({ workspace, path, jobId, }: {
74
74
  workspace: string;
75
75
  path: string;
76
+ /**
77
+ * job id
78
+ */
79
+ jobId?: string;
76
80
  }): CancelablePromise<any>;
77
81
  /**
78
82
  * get resource value
@@ -92,7 +92,7 @@ class ResourceService {
92
92
  * @returns any resource value
93
93
  * @throws ApiError
94
94
  */
95
- static getResourceValueInterpolated({ workspace, path, }) {
95
+ static getResourceValueInterpolated({ workspace, path, jobId, }) {
96
96
  return (0, request_1.request)(OpenAPI_1.OpenAPI, {
97
97
  method: 'GET',
98
98
  url: '/w/{workspace}/resources/get_value_interpolated/{path}',
@@ -100,6 +100,9 @@ class ResourceService {
100
100
  'workspace': workspace,
101
101
  'path': path,
102
102
  },
103
+ query: {
104
+ 'job_id': jobId,
105
+ },
103
106
  });
104
107
  }
105
108
  /**
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.180.0",
4
+ "version": "1.181.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {