windmill-client 1.253.4 → 1.253.8

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.253.4',
6
+ VERSION: '1.253.8',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -154,14 +154,15 @@ export declare class HelpersService {
154
154
  * @returns any Parquet Preview
155
155
  * @throws ApiError
156
156
  */
157
- static loadParquetPreview({ workspace, path, offset, limit, sortCol, sortDesc, search, }: {
157
+ static loadParquetPreview({ workspace, path, offset, limit, sortCol, sortDesc, searchCol, searchTerm, }: {
158
158
  workspace: string;
159
159
  path: string;
160
160
  offset?: number;
161
161
  limit?: number;
162
162
  sortCol?: string;
163
163
  sortDesc?: boolean;
164
- search?: string;
164
+ searchCol?: string;
165
+ searchTerm?: string;
165
166
  }): CancelablePromise<any>;
166
167
  /**
167
168
  * Generate a unique URL to download the file
@@ -161,7 +161,7 @@ class HelpersService {
161
161
  * @returns any Parquet Preview
162
162
  * @throws ApiError
163
163
  */
164
- static loadParquetPreview({ workspace, path, offset, limit, sortCol, sortDesc, search, }) {
164
+ static loadParquetPreview({ workspace, path, offset, limit, sortCol, sortDesc, searchCol, searchTerm, }) {
165
165
  return (0, request_1.request)(OpenAPI_1.OpenAPI, {
166
166
  method: 'GET',
167
167
  url: '/w/{workspace}/job_helpers/load_parquet_preview/{path}',
@@ -174,7 +174,8 @@ class HelpersService {
174
174
  'limit': limit,
175
175
  'sort_col': sortCol,
176
176
  'sort_desc': sortDesc,
177
- 'search': search,
177
+ 'search_col': searchCol,
178
+ 'search_term': searchTerm,
178
179
  },
179
180
  });
180
181
  }
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.253.4",
4
+ "version": "1.253.8",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {