@@ -1688,9 +1688,9 @@ public CompletableFuture<Transformation> getTransformationAsync(@Nonnull String
1688
1688
* @param itemsPerPage Number of items per page. (optional, default to 10)
1689
1689
* @param page Page number of the paginated API response. (optional)
1690
1690
* @param type Type of authentication resource to retrieve. (optional)
1691
- * @param platform Ecommerce platform for which to retrieve authentication resources . (optional)
1692
- * @param sort Property by which to sort the list of authentication resources . (optional, default
1693
- * to createdAt)
1691
+ * @param platform Ecommerce platform for which to retrieve authentications . (optional)
1692
+ * @param sort Property by which to sort the list of authentications . (optional, default to
1693
+ * createdAt)
1694
1694
* @param order Sort order of the response, ascending or descending. (optional, default to desc)
1695
1695
* @param requestOptions The requestOptions to send along with the query, they will be merged with
1696
1696
* the transporter requestOptions.
@@ -1714,9 +1714,9 @@ public ListAuthenticationsResponse listAuthentications(
1714
1714
* @param itemsPerPage Number of items per page. (optional, default to 10)
1715
1715
* @param page Page number of the paginated API response. (optional)
1716
1716
* @param type Type of authentication resource to retrieve. (optional)
1717
- * @param platform Ecommerce platform for which to retrieve authentication resources . (optional)
1718
- * @param sort Property by which to sort the list of authentication resources . (optional, default
1719
- * to createdAt)
1717
+ * @param platform Ecommerce platform for which to retrieve authentications . (optional)
1718
+ * @param sort Property by which to sort the list of authentications . (optional, default to
1719
+ * createdAt)
1720
1720
* @param order Sort order of the response, ascending or descending. (optional, default to desc)
1721
1721
* @throws AlgoliaRuntimeException If it fails to process the API call
1722
1722
*/
@@ -1757,9 +1757,9 @@ public ListAuthenticationsResponse listAuthentications() throws AlgoliaRuntimeEx
1757
1757
* @param itemsPerPage Number of items per page. (optional, default to 10)
1758
1758
* @param page Page number of the paginated API response. (optional)
1759
1759
* @param type Type of authentication resource to retrieve. (optional)
1760
- * @param platform Ecommerce platform for which to retrieve authentication resources . (optional)
1761
- * @param sort Property by which to sort the list of authentication resources . (optional, default
1762
- * to createdAt)
1760
+ * @param platform Ecommerce platform for which to retrieve authentications . (optional)
1761
+ * @param sort Property by which to sort the list of authentications . (optional, default to
1762
+ * createdAt)
1763
1763
* @param order Sort order of the response, ascending or descending. (optional, default to desc)
1764
1764
* @param requestOptions The requestOptions to send along with the query, they will be merged with
1765
1765
* the transporter requestOptions.
@@ -1793,9 +1793,9 @@ public CompletableFuture<ListAuthenticationsResponse> listAuthenticationsAsync(
1793
1793
* @param itemsPerPage Number of items per page. (optional, default to 10)
1794
1794
* @param page Page number of the paginated API response. (optional)
1795
1795
* @param type Type of authentication resource to retrieve. (optional)
1796
- * @param platform Ecommerce platform for which to retrieve authentication resources . (optional)
1797
- * @param sort Property by which to sort the list of authentication resources . (optional, default
1798
- * to createdAt)
1796
+ * @param platform Ecommerce platform for which to retrieve authentications . (optional)
1797
+ * @param sort Property by which to sort the list of authentications . (optional, default to
1798
+ * createdAt)
1799
1799
* @param order Sort order of the response, ascending or descending. (optional, default to desc)
1800
1800
* @throws AlgoliaRuntimeException If it fails to process the API call
1801
1801
*/
@@ -1838,6 +1838,7 @@ public CompletableFuture<ListAuthenticationsResponse> listAuthenticationsAsync()
1838
1838
* @param page Page number of the paginated API response. (optional)
1839
1839
* @param type Destination type. (optional)
1840
1840
* @param authenticationID Authentication ID used by destinations. (optional)
1841
+ * @param transformationID Get the list of destinations used by a transformation. (optional)
1841
1842
* @param sort Property by which to sort the destinations. (optional, default to createdAt)
1842
1843
* @param order Sort order of the response, ascending or descending. (optional, default to desc)
1843
1844
* @param requestOptions The requestOptions to send along with the query, they will be merged with
@@ -1849,11 +1850,14 @@ public ListDestinationsResponse listDestinations(
1849
1850
Integer page ,
1850
1851
List <DestinationType > type ,
1851
1852
List <String > authenticationID ,
1853
+ String transformationID ,
1852
1854
DestinationSortKeys sort ,
1853
1855
OrderKeys order ,
1854
1856
RequestOptions requestOptions
1855
1857
) throws AlgoliaRuntimeException {
1856
- return LaunderThrowable .await (listDestinationsAsync (itemsPerPage , page , type , authenticationID , sort , order , requestOptions ));
1858
+ return LaunderThrowable .await (
1859
+ listDestinationsAsync (itemsPerPage , page , type , authenticationID , transformationID , sort , order , requestOptions )
1860
+ );
1857
1861
}
1858
1862
1859
1863
/**
@@ -1863,6 +1867,7 @@ public ListDestinationsResponse listDestinations(
1863
1867
* @param page Page number of the paginated API response. (optional)
1864
1868
* @param type Destination type. (optional)
1865
1869
* @param authenticationID Authentication ID used by destinations. (optional)
1870
+ * @param transformationID Get the list of destinations used by a transformation. (optional)
1866
1871
* @param sort Property by which to sort the destinations. (optional, default to createdAt)
1867
1872
* @param order Sort order of the response, ascending or descending. (optional, default to desc)
1868
1873
* @throws AlgoliaRuntimeException If it fails to process the API call
@@ -1872,10 +1877,11 @@ public ListDestinationsResponse listDestinations(
1872
1877
Integer page ,
1873
1878
List <DestinationType > type ,
1874
1879
List <String > authenticationID ,
1880
+ String transformationID ,
1875
1881
DestinationSortKeys sort ,
1876
1882
OrderKeys order
1877
1883
) throws AlgoliaRuntimeException {
1878
- return this .listDestinations (itemsPerPage , page , type , authenticationID , sort , order , null );
1884
+ return this .listDestinations (itemsPerPage , page , type , authenticationID , transformationID , sort , order , null );
1879
1885
}
1880
1886
1881
1887
/**
@@ -1886,7 +1892,7 @@ public ListDestinationsResponse listDestinations(
1886
1892
* @throws AlgoliaRuntimeException If it fails to process the API call
1887
1893
*/
1888
1894
public ListDestinationsResponse listDestinations (RequestOptions requestOptions ) throws AlgoliaRuntimeException {
1889
- return this .listDestinations (null , null , null , null , null , null , requestOptions );
1895
+ return this .listDestinations (null , null , null , null , null , null , null , requestOptions );
1890
1896
}
1891
1897
1892
1898
/**
@@ -1895,7 +1901,7 @@ public ListDestinationsResponse listDestinations(RequestOptions requestOptions)
1895
1901
* @throws AlgoliaRuntimeException If it fails to process the API call
1896
1902
*/
1897
1903
public ListDestinationsResponse listDestinations () throws AlgoliaRuntimeException {
1898
- return this .listDestinations (null , null , null , null , null , null , null );
1904
+ return this .listDestinations (null , null , null , null , null , null , null , null );
1899
1905
}
1900
1906
1901
1907
/**
@@ -1905,6 +1911,7 @@ public ListDestinationsResponse listDestinations() throws AlgoliaRuntimeExceptio
1905
1911
* @param page Page number of the paginated API response. (optional)
1906
1912
* @param type Destination type. (optional)
1907
1913
* @param authenticationID Authentication ID used by destinations. (optional)
1914
+ * @param transformationID Get the list of destinations used by a transformation. (optional)
1908
1915
* @param sort Property by which to sort the destinations. (optional, default to createdAt)
1909
1916
* @param order Sort order of the response, ascending or descending. (optional, default to desc)
1910
1917
* @param requestOptions The requestOptions to send along with the query, they will be merged with
@@ -1916,6 +1923,7 @@ public CompletableFuture<ListDestinationsResponse> listDestinationsAsync(
1916
1923
Integer page ,
1917
1924
List <DestinationType > type ,
1918
1925
List <String > authenticationID ,
1926
+ String transformationID ,
1919
1927
DestinationSortKeys sort ,
1920
1928
OrderKeys order ,
1921
1929
RequestOptions requestOptions
@@ -1927,6 +1935,7 @@ public CompletableFuture<ListDestinationsResponse> listDestinationsAsync(
1927
1935
.addQueryParameter ("page" , page )
1928
1936
.addQueryParameter ("type" , type )
1929
1937
.addQueryParameter ("authenticationID" , authenticationID )
1938
+ .addQueryParameter ("transformationID" , transformationID )
1930
1939
.addQueryParameter ("sort" , sort )
1931
1940
.addQueryParameter ("order" , order )
1932
1941
.build ();
@@ -1940,6 +1949,7 @@ public CompletableFuture<ListDestinationsResponse> listDestinationsAsync(
1940
1949
* @param page Page number of the paginated API response. (optional)
1941
1950
* @param type Destination type. (optional)
1942
1951
* @param authenticationID Authentication ID used by destinations. (optional)
1952
+ * @param transformationID Get the list of destinations used by a transformation. (optional)
1943
1953
* @param sort Property by which to sort the destinations. (optional, default to createdAt)
1944
1954
* @param order Sort order of the response, ascending or descending. (optional, default to desc)
1945
1955
* @throws AlgoliaRuntimeException If it fails to process the API call
@@ -1949,10 +1959,11 @@ public CompletableFuture<ListDestinationsResponse> listDestinationsAsync(
1949
1959
Integer page ,
1950
1960
List <DestinationType > type ,
1951
1961
List <String > authenticationID ,
1962
+ String transformationID ,
1952
1963
DestinationSortKeys sort ,
1953
1964
OrderKeys order
1954
1965
) throws AlgoliaRuntimeException {
1955
- return this .listDestinationsAsync (itemsPerPage , page , type , authenticationID , sort , order , null );
1966
+ return this .listDestinationsAsync (itemsPerPage , page , type , authenticationID , transformationID , sort , order , null );
1956
1967
}
1957
1968
1958
1969
/**
@@ -1963,7 +1974,7 @@ public CompletableFuture<ListDestinationsResponse> listDestinationsAsync(
1963
1974
* @throws AlgoliaRuntimeException If it fails to process the API call
1964
1975
*/
1965
1976
public CompletableFuture <ListDestinationsResponse > listDestinationsAsync (RequestOptions requestOptions ) throws AlgoliaRuntimeException {
1966
- return this .listDestinationsAsync (null , null , null , null , null , null , requestOptions );
1977
+ return this .listDestinationsAsync (null , null , null , null , null , null , null , requestOptions );
1967
1978
}
1968
1979
1969
1980
/**
@@ -1972,7 +1983,7 @@ public CompletableFuture<ListDestinationsResponse> listDestinationsAsync(Request
1972
1983
* @throws AlgoliaRuntimeException If it fails to process the API call
1973
1984
*/
1974
1985
public CompletableFuture <ListDestinationsResponse > listDestinationsAsync () throws AlgoliaRuntimeException {
1975
- return this .listDestinationsAsync (null , null , null , null , null , null , null );
1986
+ return this .listDestinationsAsync (null , null , null , null , null , null , null , null );
1976
1987
}
1977
1988
1978
1989
/**
@@ -2348,7 +2359,7 @@ public CompletableFuture<RunListResponse> listRunsAsync() throws AlgoliaRuntimeE
2348
2359
* @param page Page number of the paginated API response. (optional)
2349
2360
* @param type Source type. Some sources require authentication. (optional)
2350
2361
* @param authenticationID Authentication IDs of the sources to retrieve. 'none' returns sources
2351
- * that doesn't have an authentication resource . (optional)
2362
+ * that doesn't have an authentication. (optional)
2352
2363
* @param sort Property by which to sort the list of sources. (optional, default to createdAt)
2353
2364
* @param order Sort order of the response, ascending or descending. (optional, default to desc)
2354
2365
* @param requestOptions The requestOptions to send along with the query, they will be merged with
@@ -2374,7 +2385,7 @@ public ListSourcesResponse listSources(
2374
2385
* @param page Page number of the paginated API response. (optional)
2375
2386
* @param type Source type. Some sources require authentication. (optional)
2376
2387
* @param authenticationID Authentication IDs of the sources to retrieve. 'none' returns sources
2377
- * that doesn't have an authentication resource . (optional)
2388
+ * that doesn't have an authentication. (optional)
2378
2389
* @param sort Property by which to sort the list of sources. (optional, default to createdAt)
2379
2390
* @param order Sort order of the response, ascending or descending. (optional, default to desc)
2380
2391
* @throws AlgoliaRuntimeException If it fails to process the API call
@@ -2417,7 +2428,7 @@ public ListSourcesResponse listSources() throws AlgoliaRuntimeException {
2417
2428
* @param page Page number of the paginated API response. (optional)
2418
2429
* @param type Source type. Some sources require authentication. (optional)
2419
2430
* @param authenticationID Authentication IDs of the sources to retrieve. 'none' returns sources
2420
- * that doesn't have an authentication resource . (optional)
2431
+ * that doesn't have an authentication. (optional)
2421
2432
* @param sort Property by which to sort the list of sources. (optional, default to createdAt)
2422
2433
* @param order Sort order of the response, ascending or descending. (optional, default to desc)
2423
2434
* @param requestOptions The requestOptions to send along with the query, they will be merged with
@@ -2453,7 +2464,7 @@ public CompletableFuture<ListSourcesResponse> listSourcesAsync(
2453
2464
* @param page Page number of the paginated API response. (optional)
2454
2465
* @param type Source type. Some sources require authentication. (optional)
2455
2466
* @param authenticationID Authentication IDs of the sources to retrieve. 'none' returns sources
2456
- * that doesn't have an authentication resource . (optional)
2467
+ * that doesn't have an authentication. (optional)
2457
2468
* @param sort Property by which to sort the list of sources. (optional, default to createdAt)
2458
2469
* @param order Sort order of the response, ascending or descending. (optional, default to desc)
2459
2470
* @throws AlgoliaRuntimeException If it fails to process the API call
@@ -2844,7 +2855,8 @@ public CompletableFuture<ListTasksResponseV1> listTasksV1Async() throws AlgoliaR
2844
2855
*
2845
2856
* @param itemsPerPage Number of items per page. (optional, default to 10)
2846
2857
* @param page Page number of the paginated API response. (optional)
2847
- * @param sort Property by which to sort the list. (optional, default to desc)
2858
+ * @param sort Property by which to sort the list of transformations. (optional, default to
2859
+ * createdAt)
2848
2860
* @param order Sort order of the response, ascending or descending. (optional, default to desc)
2849
2861
* @param requestOptions The requestOptions to send along with the query, they will be merged with
2850
2862
* the transporter requestOptions.
@@ -2853,7 +2865,7 @@ public CompletableFuture<ListTasksResponseV1> listTasksV1Async() throws AlgoliaR
2853
2865
public ListTransformationsResponse listTransformations (
2854
2866
Integer itemsPerPage ,
2855
2867
Integer page ,
2856
- SortKeys sort ,
2868
+ TransformationSortKeys sort ,
2857
2869
OrderKeys order ,
2858
2870
RequestOptions requestOptions
2859
2871
) throws AlgoliaRuntimeException {
@@ -2865,11 +2877,12 @@ public ListTransformationsResponse listTransformations(
2865
2877
*
2866
2878
* @param itemsPerPage Number of items per page. (optional, default to 10)
2867
2879
* @param page Page number of the paginated API response. (optional)
2868
- * @param sort Property by which to sort the list. (optional, default to desc)
2880
+ * @param sort Property by which to sort the list of transformations. (optional, default to
2881
+ * createdAt)
2869
2882
* @param order Sort order of the response, ascending or descending. (optional, default to desc)
2870
2883
* @throws AlgoliaRuntimeException If it fails to process the API call
2871
2884
*/
2872
- public ListTransformationsResponse listTransformations (Integer itemsPerPage , Integer page , SortKeys sort , OrderKeys order )
2885
+ public ListTransformationsResponse listTransformations (Integer itemsPerPage , Integer page , TransformationSortKeys sort , OrderKeys order )
2873
2886
throws AlgoliaRuntimeException {
2874
2887
return this .listTransformations (itemsPerPage , page , sort , order , null );
2875
2888
}
@@ -2899,7 +2912,8 @@ public ListTransformationsResponse listTransformations() throws AlgoliaRuntimeEx
2899
2912
*
2900
2913
* @param itemsPerPage Number of items per page. (optional, default to 10)
2901
2914
* @param page Page number of the paginated API response. (optional)
2902
- * @param sort Property by which to sort the list. (optional, default to desc)
2915
+ * @param sort Property by which to sort the list of transformations. (optional, default to
2916
+ * createdAt)
2903
2917
* @param order Sort order of the response, ascending or descending. (optional, default to desc)
2904
2918
* @param requestOptions The requestOptions to send along with the query, they will be merged with
2905
2919
* the transporter requestOptions.
@@ -2908,7 +2922,7 @@ public ListTransformationsResponse listTransformations() throws AlgoliaRuntimeEx
2908
2922
public CompletableFuture <ListTransformationsResponse > listTransformationsAsync (
2909
2923
Integer itemsPerPage ,
2910
2924
Integer page ,
2911
- SortKeys sort ,
2925
+ TransformationSortKeys sort ,
2912
2926
OrderKeys order ,
2913
2927
RequestOptions requestOptions
2914
2928
) throws AlgoliaRuntimeException {
@@ -2928,14 +2942,15 @@ public CompletableFuture<ListTransformationsResponse> listTransformationsAsync(
2928
2942
*
2929
2943
* @param itemsPerPage Number of items per page. (optional, default to 10)
2930
2944
* @param page Page number of the paginated API response. (optional)
2931
- * @param sort Property by which to sort the list. (optional, default to desc)
2945
+ * @param sort Property by which to sort the list of transformations. (optional, default to
2946
+ * createdAt)
2932
2947
* @param order Sort order of the response, ascending or descending. (optional, default to desc)
2933
2948
* @throws AlgoliaRuntimeException If it fails to process the API call
2934
2949
*/
2935
2950
public CompletableFuture <ListTransformationsResponse > listTransformationsAsync (
2936
2951
Integer itemsPerPage ,
2937
2952
Integer page ,
2938
- SortKeys sort ,
2953
+ TransformationSortKeys sort ,
2939
2954
OrderKeys order
2940
2955
) throws AlgoliaRuntimeException {
2941
2956
return this .listTransformationsAsync (itemsPerPage , page , sort , order , null );
0 commit comments