@@ -64,6 +64,7 @@ import type { TransformationSearch } from '../model/transformationSearch';
6464
6565import type { TransformationTry } from '../model/transformationTry' ;
6666import type { TransformationTryResponse } from '../model/transformationTryResponse' ;
67+
6768import type { TransformationUpdateResponse } from '../model/transformationUpdateResponse' ;
6869
6970import type { WatchResponse } from '../model/watchResponse' ;
@@ -1752,10 +1753,11 @@ export function createIngestionClient({
17521753 * @param listTransformations.page - Page number of the paginated API response.
17531754 * @param listTransformations.sort - Property by which to sort the list of transformations.
17541755 * @param listTransformations.order - Sort order of the response, ascending or descending.
1756+ * @param listTransformations.type - Whether to filter the list of transformations by the type of transformation.
17551757 * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
17561758 */
17571759 listTransformations (
1758- { itemsPerPage, page, sort, order } : ListTransformationsProps = { } ,
1760+ { itemsPerPage, page, sort, order, type } : ListTransformationsProps = { } ,
17591761 requestOptions : RequestOptions | undefined = undefined ,
17601762 ) : Promise < ListTransformationsResponse > {
17611763 const requestPath = '/1/transformations' ;
@@ -1778,6 +1780,10 @@ export function createIngestionClient({
17781780 queryParameters [ 'order' ] = order . toString ( ) ;
17791781 }
17801782
1783+ if ( type !== undefined ) {
1784+ queryParameters [ 'type' ] = type . toString ( ) ;
1785+ }
1786+
17811787 const request : Request = {
17821788 method : 'GET' ,
17831789 path : requestPath ,
0 commit comments