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.
package/dist/core/OpenAPI.js
CHANGED
|
@@ -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,
|
|
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
|
-
|
|
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,
|
|
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
|
-
'
|
|
177
|
+
'search_col': searchCol,
|
|
178
|
+
'search_term': searchTerm,
|
|
178
179
|
},
|
|
179
180
|
});
|
|
180
181
|
}
|