@@ -1642,6 +1642,7 @@ ListTasksResponseV1 ListTasksV1(
1642
1642
/// <param name="page">Page number of the paginated API response. (optional)</param>
1643
1643
/// <param name="sort">Property by which to sort the list of transformations. (optional)</param>
1644
1644
/// <param name="order">Sort order of the response, ascending or descending. (optional)</param>
1645
+ /// <param name="type">Whether to filter the list of transformations by the type of transformation. (optional)</param>
1645
1646
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
1646
1647
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
1647
1648
/// <exception cref="ArgumentException">Thrown when arguments are not correct</exception>
@@ -1653,6 +1654,7 @@ Task<ListTransformationsResponse> ListTransformationsAsync(
1653
1654
int ? page = default ,
1654
1655
TransformationSortKeys ? sort = default ,
1655
1656
OrderKeys ? order = default ,
1657
+ TransformationType ? type = default ,
1656
1658
RequestOptions options = null ,
1657
1659
CancellationToken cancellationToken = default
1658
1660
) ;
@@ -1669,6 +1671,7 @@ Task<ListTransformationsResponse> ListTransformationsAsync(
1669
1671
/// <param name="page">Page number of the paginated API response. (optional)</param>
1670
1672
/// <param name="sort">Property by which to sort the list of transformations. (optional)</param>
1671
1673
/// <param name="order">Sort order of the response, ascending or descending. (optional)</param>
1674
+ /// <param name="type">Whether to filter the list of transformations by the type of transformation. (optional)</param>
1672
1675
/// <param name="options">Add extra http header or query parameters to Algolia.</param>
1673
1676
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
1674
1677
/// <exception cref="ArgumentException">Thrown when arguments are not correct</exception>
@@ -1680,6 +1683,7 @@ ListTransformationsResponse ListTransformations(
1680
1683
int ? page = default ,
1681
1684
TransformationSortKeys ? sort = default ,
1682
1685
OrderKeys ? order = default ,
1686
+ TransformationType ? type = default ,
1683
1687
RequestOptions options = null ,
1684
1688
CancellationToken cancellationToken = default
1685
1689
) ;
@@ -4171,6 +4175,7 @@ public async Task<ListTransformationsResponse> ListTransformationsAsync(
4171
4175
int ? page = default ,
4172
4176
TransformationSortKeys ? sort = default ,
4173
4177
OrderKeys ? order = default ,
4178
+ TransformationType ? type = default ,
4174
4179
RequestOptions options = null ,
4175
4180
CancellationToken cancellationToken = default
4176
4181
)
@@ -4181,6 +4186,7 @@ public async Task<ListTransformationsResponse> ListTransformationsAsync(
4181
4186
requestOptions . AddQueryParameter ( "page" , page ) ;
4182
4187
requestOptions . AddQueryParameter ( "sort" , sort ) ;
4183
4188
requestOptions . AddQueryParameter ( "order" , order ) ;
4189
+ requestOptions . AddQueryParameter ( "type" , type ) ;
4184
4190
return await _transport
4185
4191
. ExecuteRequestAsync < ListTransformationsResponse > (
4186
4192
new HttpMethod ( "GET" ) ,
@@ -4197,11 +4203,12 @@ public ListTransformationsResponse ListTransformations(
4197
4203
int ? page = default ,
4198
4204
TransformationSortKeys ? sort = default ,
4199
4205
OrderKeys ? order = default ,
4206
+ TransformationType ? type = default ,
4200
4207
RequestOptions options = null ,
4201
4208
CancellationToken cancellationToken = default
4202
4209
) =>
4203
4210
AsyncHelper . RunSync ( ( ) =>
4204
- ListTransformationsAsync ( itemsPerPage , page , sort , order , options , cancellationToken )
4211
+ ListTransformationsAsync ( itemsPerPage , page , sort , order , type , options , cancellationToken )
4205
4212
) ;
4206
4213
4207
4214
/// <inheritdoc />
0 commit comments