@@ -626,8 +626,8 @@ public class IngestionClient(
626
626
* @param itemsPerPage Number of items per page. (default to 10)
627
627
* @param page Page number of the paginated API response.
628
628
* @param type Type of authentication resource to retrieve.
629
- * @param platform Ecommerce platform for which to retrieve authentication resources .
630
- * @param sort Property by which to sort the list of authentication resources . (default to createdAt)
629
+ * @param platform Ecommerce platform for which to retrieve authentications .
630
+ * @param sort Property by which to sort the list of authentications . (default to createdAt)
631
631
* @param order Sort order of the response, ascending or descending. (default to desc)
632
632
* @param requestOptions additional request configuration.
633
633
*/
@@ -661,11 +661,12 @@ public class IngestionClient(
661
661
* @param page Page number of the paginated API response.
662
662
* @param type Destination type.
663
663
* @param authenticationID Authentication ID used by destinations.
664
+ * @param transformationID Get the list of destinations used by a transformation.
664
665
* @param sort Property by which to sort the destinations. (default to createdAt)
665
666
* @param order Sort order of the response, ascending or descending. (default to desc)
666
667
* @param requestOptions additional request configuration.
667
668
*/
668
- public suspend fun listDestinations (itemsPerPage : Int? = null, page : Int? = null, type : List <DestinationType >? = null, authenticationID : List <String >? = null, sort : DestinationSortKeys ? = null, order : OrderKeys ? = null, requestOptions : RequestOptions ? = null): ListDestinationsResponse {
669
+ public suspend fun listDestinations (itemsPerPage : Int? = null, page : Int? = null, type : List <DestinationType >? = null, authenticationID : List <String >? = null, transformationID : String? = null, sort : DestinationSortKeys ? = null, order : OrderKeys ? = null, requestOptions : RequestOptions ? = null): ListDestinationsResponse {
669
670
val requestConfig = RequestConfig (
670
671
method = RequestMethod .GET ,
671
672
path = listOf (" 1" , " destinations" ),
@@ -674,6 +675,7 @@ public class IngestionClient(
674
675
page?.let { put(" page" , it) }
675
676
type?.let { put(" type" , it.joinToString(" ," )) }
676
677
authenticationID?.let { put(" authenticationID" , it.joinToString(" ," )) }
678
+ transformationID?.let { put(" transformationID" , it) }
677
679
sort?.let { put(" sort" , it) }
678
680
order?.let { put(" order" , it) }
679
681
},
@@ -774,7 +776,7 @@ public class IngestionClient(
774
776
* @param itemsPerPage Number of items per page. (default to 10)
775
777
* @param page Page number of the paginated API response.
776
778
* @param type Source type. Some sources require authentication.
777
- * @param authenticationID Authentication IDs of the sources to retrieve. 'none' returns sources that doesn't have an authentication resource .
779
+ * @param authenticationID Authentication IDs of the sources to retrieve. 'none' returns sources that doesn't have an authentication.
778
780
* @param sort Property by which to sort the list of sources. (default to createdAt)
779
781
* @param order Sort order of the response, ascending or descending. (default to desc)
780
782
* @param requestOptions additional request configuration.
@@ -887,11 +889,11 @@ public class IngestionClient(
887
889
* - editSettings
888
890
* @param itemsPerPage Number of items per page. (default to 10)
889
891
* @param page Page number of the paginated API response.
890
- * @param sort Property by which to sort the list. (default to desc )
892
+ * @param sort Property by which to sort the list of transformations . (default to createdAt )
891
893
* @param order Sort order of the response, ascending or descending. (default to desc)
892
894
* @param requestOptions additional request configuration.
893
895
*/
894
- public suspend fun listTransformations (itemsPerPage : Int? = null, page : Int? = null, sort : SortKeys ? = null, order : OrderKeys ? = null, requestOptions : RequestOptions ? = null): ListTransformationsResponse {
896
+ public suspend fun listTransformations (itemsPerPage : Int? = null, page : Int? = null, sort : TransformationSortKeys ? = null, order : OrderKeys ? = null, requestOptions : RequestOptions ? = null): ListTransformationsResponse {
895
897
val requestConfig = RequestConfig (
896
898
method = RequestMethod .GET ,
897
899
path = listOf (" 1" , " transformations" ),
0 commit comments