Skip to content

Commit 163c9a0

Browse files
author
ttembou
committedJun 18, 2024
[240618] Automatic update of SDK.
1 parent d4ac4a6 commit 163c9a0

File tree

15 files changed

+55
-95
lines changed

15 files changed

+55
-95
lines changed
 

‎sdks/retailmedia_2023-04/api/openapi.yaml

+1-4
Original file line numberDiff line numberDiff line change
@@ -915,10 +915,7 @@ paths:
915915
responses:
916916
"200":
917917
content:
918-
application/x-json-stream:
919-
schema:
920-
format: binary
921-
type: string
918+
application/x-json-stream: {}
922919
application/json: {}
923920
description: Catalog download initiated.
924921
"400":

‎sdks/retailmedia_2023-04/docs/CampaignApi.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -2455,7 +2455,7 @@ public class Example {
24552455

24562456
## getApiV1ExternalCatalogOutputByCatalogId
24572457

2458-
> File getApiV1ExternalCatalogOutputByCatalogId(catalogId)
2458+
> getApiV1ExternalCatalogOutputByCatalogId(catalogId)
24592459
24602460

24612461

@@ -2502,8 +2502,7 @@ public class Example {
25022502
CampaignApi apiInstance = new CampaignApi(defaultClient);
25032503
String catalogId = "catalogId_example"; // String | A catalog ID returned from an account catalog request.
25042504
try {
2505-
File result = apiInstance.getApiV1ExternalCatalogOutputByCatalogId(catalogId);
2506-
System.out.println(result);
2505+
apiInstance.getApiV1ExternalCatalogOutputByCatalogId(catalogId);
25072506
} catch (ApiException e) {
25082507
System.err.println("Exception when calling CampaignApi#getApiV1ExternalCatalogOutputByCatalogId");
25092508
System.err.println("Status code: " + e.getCode());
@@ -2524,7 +2523,7 @@ public class Example {
25242523

25252524
### Return type
25262525

2527-
[**File**](File.md)
2526+
null (empty response body)
25282527

25292528
### Authorization
25302529

‎sdks/retailmedia_2023-04/src/main/java/com/criteo/api/retailmedia/v2023_04/api/CampaignApi.java

+7-11
Original file line numberDiff line numberDiff line change
@@ -3684,7 +3684,6 @@ private okhttp3.Call getApiV1ExternalCatalogOutputByCatalogIdValidateBeforeCall(
36843684
*
36853685
* Output the indicated catalog. Catalogs are only available for retrieval when their associated status request is at a Success status. Produces application/x-json-stream of v2021_07 CatalogProduct json objects.
36863686
* @param catalogId A catalog ID returned from an account catalog request. (required)
3687-
* @return File
36883687
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
36893688
* @http.response.details
36903689
<table summary="Response Details" border="1">
@@ -3693,16 +3692,15 @@ private okhttp3.Call getApiV1ExternalCatalogOutputByCatalogIdValidateBeforeCall(
36933692
<tr><td> 400 </td><td> The indicated catalog is not available for retrieval, wait for a success status. </td><td> - </td></tr>
36943693
</table>
36953694
*/
3696-
public File getApiV1ExternalCatalogOutputByCatalogId(String catalogId) throws ApiException {
3697-
ApiResponse<File> localVarResp = getApiV1ExternalCatalogOutputByCatalogIdWithHttpInfo(catalogId);
3698-
return localVarResp.getData();
3695+
public void getApiV1ExternalCatalogOutputByCatalogId(String catalogId) throws ApiException {
3696+
getApiV1ExternalCatalogOutputByCatalogIdWithHttpInfo(catalogId);
36993697
}
37003698

37013699
/**
37023700
*
37033701
* Output the indicated catalog. Catalogs are only available for retrieval when their associated status request is at a Success status. Produces application/x-json-stream of v2021_07 CatalogProduct json objects.
37043702
* @param catalogId A catalog ID returned from an account catalog request. (required)
3705-
* @return ApiResponse&lt;File&gt;
3703+
* @return ApiResponse&lt;Void&gt;
37063704
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
37073705
* @http.response.details
37083706
<table summary="Response Details" border="1">
@@ -3711,10 +3709,9 @@ public File getApiV1ExternalCatalogOutputByCatalogId(String catalogId) throws Ap
37113709
<tr><td> 400 </td><td> The indicated catalog is not available for retrieval, wait for a success status. </td><td> - </td></tr>
37123710
</table>
37133711
*/
3714-
public ApiResponse<File> getApiV1ExternalCatalogOutputByCatalogIdWithHttpInfo(String catalogId) throws ApiException {
3712+
public ApiResponse<Void> getApiV1ExternalCatalogOutputByCatalogIdWithHttpInfo(String catalogId) throws ApiException {
37153713
okhttp3.Call localVarCall = getApiV1ExternalCatalogOutputByCatalogIdValidateBeforeCall(catalogId, null);
3716-
Type localVarReturnType = new TypeToken<File>(){}.getType();
3717-
return localVarApiClient.execute(localVarCall, localVarReturnType);
3714+
return localVarApiClient.execute(localVarCall);
37183715
}
37193716

37203717
/**
@@ -3731,11 +3728,10 @@ public ApiResponse<File> getApiV1ExternalCatalogOutputByCatalogIdWithHttpInfo(St
37313728
<tr><td> 400 </td><td> The indicated catalog is not available for retrieval, wait for a success status. </td><td> - </td></tr>
37323729
</table>
37333730
*/
3734-
public okhttp3.Call getApiV1ExternalCatalogOutputByCatalogIdAsync(String catalogId, final ApiCallback<File> _callback) throws ApiException {
3731+
public okhttp3.Call getApiV1ExternalCatalogOutputByCatalogIdAsync(String catalogId, final ApiCallback<Void> _callback) throws ApiException {
37353732

37363733
okhttp3.Call localVarCall = getApiV1ExternalCatalogOutputByCatalogIdValidateBeforeCall(catalogId, _callback);
3737-
Type localVarReturnType = new TypeToken<File>(){}.getType();
3738-
localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback);
3734+
localVarApiClient.executeAsync(localVarCall, _callback);
37393735
return localVarCall;
37403736
}
37413737
/**

‎sdks/retailmedia_2023-07/api/openapi.yaml

+1-4
Original file line numberDiff line numberDiff line change
@@ -915,10 +915,7 @@ paths:
915915
responses:
916916
"200":
917917
content:
918-
application/x-json-stream:
919-
schema:
920-
format: binary
921-
type: string
918+
application/x-json-stream: {}
922919
application/json: {}
923920
description: Catalog download initiated.
924921
"400":

‎sdks/retailmedia_2023-07/docs/CampaignApi.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -2455,7 +2455,7 @@ public class Example {
24552455

24562456
## getApiV1ExternalCatalogOutputByCatalogId
24572457

2458-
> File getApiV1ExternalCatalogOutputByCatalogId(catalogId)
2458+
> getApiV1ExternalCatalogOutputByCatalogId(catalogId)
24592459
24602460

24612461

@@ -2502,8 +2502,7 @@ public class Example {
25022502
CampaignApi apiInstance = new CampaignApi(defaultClient);
25032503
String catalogId = "catalogId_example"; // String | A catalog ID returned from an account catalog request.
25042504
try {
2505-
File result = apiInstance.getApiV1ExternalCatalogOutputByCatalogId(catalogId);
2506-
System.out.println(result);
2505+
apiInstance.getApiV1ExternalCatalogOutputByCatalogId(catalogId);
25072506
} catch (ApiException e) {
25082507
System.err.println("Exception when calling CampaignApi#getApiV1ExternalCatalogOutputByCatalogId");
25092508
System.err.println("Status code: " + e.getCode());
@@ -2524,7 +2523,7 @@ public class Example {
25242523

25252524
### Return type
25262525

2527-
[**File**](File.md)
2526+
null (empty response body)
25282527

25292528
### Authorization
25302529

‎sdks/retailmedia_2023-07/src/main/java/com/criteo/api/retailmedia/v2023_07/api/CampaignApi.java

+7-11
Original file line numberDiff line numberDiff line change
@@ -3684,7 +3684,6 @@ private okhttp3.Call getApiV1ExternalCatalogOutputByCatalogIdValidateBeforeCall(
36843684
*
36853685
* Output the indicated catalog. Catalogs are only available for retrieval when their associated status request is at a Success status. Produces application/x-json-stream of v2021_07 CatalogProduct json objects.
36863686
* @param catalogId A catalog ID returned from an account catalog request. (required)
3687-
* @return File
36883687
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
36893688
* @http.response.details
36903689
<table summary="Response Details" border="1">
@@ -3693,16 +3692,15 @@ private okhttp3.Call getApiV1ExternalCatalogOutputByCatalogIdValidateBeforeCall(
36933692
<tr><td> 400 </td><td> The indicated catalog is not available for retrieval, wait for a success status. </td><td> - </td></tr>
36943693
</table>
36953694
*/
3696-
public File getApiV1ExternalCatalogOutputByCatalogId(String catalogId) throws ApiException {
3697-
ApiResponse<File> localVarResp = getApiV1ExternalCatalogOutputByCatalogIdWithHttpInfo(catalogId);
3698-
return localVarResp.getData();
3695+
public void getApiV1ExternalCatalogOutputByCatalogId(String catalogId) throws ApiException {
3696+
getApiV1ExternalCatalogOutputByCatalogIdWithHttpInfo(catalogId);
36993697
}
37003698

37013699
/**
37023700
*
37033701
* Output the indicated catalog. Catalogs are only available for retrieval when their associated status request is at a Success status. Produces application/x-json-stream of v2021_07 CatalogProduct json objects.
37043702
* @param catalogId A catalog ID returned from an account catalog request. (required)
3705-
* @return ApiResponse&lt;File&gt;
3703+
* @return ApiResponse&lt;Void&gt;
37063704
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
37073705
* @http.response.details
37083706
<table summary="Response Details" border="1">
@@ -3711,10 +3709,9 @@ public File getApiV1ExternalCatalogOutputByCatalogId(String catalogId) throws Ap
37113709
<tr><td> 400 </td><td> The indicated catalog is not available for retrieval, wait for a success status. </td><td> - </td></tr>
37123710
</table>
37133711
*/
3714-
public ApiResponse<File> getApiV1ExternalCatalogOutputByCatalogIdWithHttpInfo(String catalogId) throws ApiException {
3712+
public ApiResponse<Void> getApiV1ExternalCatalogOutputByCatalogIdWithHttpInfo(String catalogId) throws ApiException {
37153713
okhttp3.Call localVarCall = getApiV1ExternalCatalogOutputByCatalogIdValidateBeforeCall(catalogId, null);
3716-
Type localVarReturnType = new TypeToken<File>(){}.getType();
3717-
return localVarApiClient.execute(localVarCall, localVarReturnType);
3714+
return localVarApiClient.execute(localVarCall);
37183715
}
37193716

37203717
/**
@@ -3731,11 +3728,10 @@ public ApiResponse<File> getApiV1ExternalCatalogOutputByCatalogIdWithHttpInfo(St
37313728
<tr><td> 400 </td><td> The indicated catalog is not available for retrieval, wait for a success status. </td><td> - </td></tr>
37323729
</table>
37333730
*/
3734-
public okhttp3.Call getApiV1ExternalCatalogOutputByCatalogIdAsync(String catalogId, final ApiCallback<File> _callback) throws ApiException {
3731+
public okhttp3.Call getApiV1ExternalCatalogOutputByCatalogIdAsync(String catalogId, final ApiCallback<Void> _callback) throws ApiException {
37353732

37363733
okhttp3.Call localVarCall = getApiV1ExternalCatalogOutputByCatalogIdValidateBeforeCall(catalogId, _callback);
3737-
Type localVarReturnType = new TypeToken<File>(){}.getType();
3738-
localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback);
3734+
localVarApiClient.executeAsync(localVarCall, _callback);
37393735
return localVarCall;
37403736
}
37413737
/**

‎sdks/retailmedia_2023-10/api/openapi.yaml

+1-4
Original file line numberDiff line numberDiff line change
@@ -915,10 +915,7 @@ paths:
915915
responses:
916916
"200":
917917
content:
918-
application/x-json-stream:
919-
schema:
920-
format: binary
921-
type: string
918+
application/x-json-stream: {}
922919
application/json: {}
923920
description: Catalog download initiated.
924921
"400":

‎sdks/retailmedia_2023-10/docs/CampaignApi.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -2551,7 +2551,7 @@ public class Example {
25512551

25522552
## getApiV1ExternalCatalogOutputByCatalogId
25532553

2554-
> File getApiV1ExternalCatalogOutputByCatalogId(catalogId)
2554+
> getApiV1ExternalCatalogOutputByCatalogId(catalogId)
25552555

25562556

25572557

@@ -2598,8 +2598,7 @@ public class Example {
25982598
CampaignApi apiInstance = new CampaignApi(defaultClient);
25992599
String catalogId = "catalogId_example"; // String | A catalog ID returned from an account catalog request.
26002600
try {
2601-
File result = apiInstance.getApiV1ExternalCatalogOutputByCatalogId(catalogId);
2602-
System.out.println(result);
2601+
apiInstance.getApiV1ExternalCatalogOutputByCatalogId(catalogId);
26032602
} catch (ApiException e) {
26042603
System.err.println("Exception when calling CampaignApi#getApiV1ExternalCatalogOutputByCatalogId");
26052604
System.err.println("Status code: " + e.getCode());
@@ -2620,7 +2619,7 @@ public class Example {
26202619

26212620
### Return type
26222621

2623-
[**File**](File.md)
2622+
null (empty response body)
26242623

26252624
### Authorization
26262625

‎sdks/retailmedia_2023-10/src/main/java/com/criteo/api/retailmedia/v2023_10/api/CampaignApi.java

+7-11
Original file line numberDiff line numberDiff line change
@@ -3822,7 +3822,6 @@ private okhttp3.Call getApiV1ExternalCatalogOutputByCatalogIdValidateBeforeCall(
38223822
*
38233823
* Output the indicated catalog. Catalogs are only available for retrieval when their associated status request is at a Success status. Produces application/x-json-stream of v2021_07 CatalogProduct json objects.
38243824
* @param catalogId A catalog ID returned from an account catalog request. (required)
3825-
* @return File
38263825
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
38273826
* @http.response.details
38283827
<table summary="Response Details" border="1">
@@ -3831,16 +3830,15 @@ private okhttp3.Call getApiV1ExternalCatalogOutputByCatalogIdValidateBeforeCall(
38313830
<tr><td> 400 </td><td> The indicated catalog is not available for retrieval, wait for a success status. </td><td> - </td></tr>
38323831
</table>
38333832
*/
3834-
public File getApiV1ExternalCatalogOutputByCatalogId(String catalogId) throws ApiException {
3835-
ApiResponse<File> localVarResp = getApiV1ExternalCatalogOutputByCatalogIdWithHttpInfo(catalogId);
3836-
return localVarResp.getData();
3833+
public void getApiV1ExternalCatalogOutputByCatalogId(String catalogId) throws ApiException {
3834+
getApiV1ExternalCatalogOutputByCatalogIdWithHttpInfo(catalogId);
38373835
}
38383836

38393837
/**
38403838
*
38413839
* Output the indicated catalog. Catalogs are only available for retrieval when their associated status request is at a Success status. Produces application/x-json-stream of v2021_07 CatalogProduct json objects.
38423840
* @param catalogId A catalog ID returned from an account catalog request. (required)
3843-
* @return ApiResponse&lt;File&gt;
3841+
* @return ApiResponse&lt;Void&gt;
38443842
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
38453843
* @http.response.details
38463844
<table summary="Response Details" border="1">
@@ -3849,10 +3847,9 @@ public File getApiV1ExternalCatalogOutputByCatalogId(String catalogId) throws Ap
38493847
<tr><td> 400 </td><td> The indicated catalog is not available for retrieval, wait for a success status. </td><td> - </td></tr>
38503848
</table>
38513849
*/
3852-
public ApiResponse<File> getApiV1ExternalCatalogOutputByCatalogIdWithHttpInfo(String catalogId) throws ApiException {
3850+
public ApiResponse<Void> getApiV1ExternalCatalogOutputByCatalogIdWithHttpInfo(String catalogId) throws ApiException {
38533851
okhttp3.Call localVarCall = getApiV1ExternalCatalogOutputByCatalogIdValidateBeforeCall(catalogId, null);
3854-
Type localVarReturnType = new TypeToken<File>(){}.getType();
3855-
return localVarApiClient.execute(localVarCall, localVarReturnType);
3852+
return localVarApiClient.execute(localVarCall);
38563853
}
38573854

38583855
/**
@@ -3869,11 +3866,10 @@ public ApiResponse<File> getApiV1ExternalCatalogOutputByCatalogIdWithHttpInfo(St
38693866
<tr><td> 400 </td><td> The indicated catalog is not available for retrieval, wait for a success status. </td><td> - </td></tr>
38703867
</table>
38713868
*/
3872-
public okhttp3.Call getApiV1ExternalCatalogOutputByCatalogIdAsync(String catalogId, final ApiCallback<File> _callback) throws ApiException {
3869+
public okhttp3.Call getApiV1ExternalCatalogOutputByCatalogIdAsync(String catalogId, final ApiCallback<Void> _callback) throws ApiException {
38733870

38743871
okhttp3.Call localVarCall = getApiV1ExternalCatalogOutputByCatalogIdValidateBeforeCall(catalogId, _callback);
3875-
Type localVarReturnType = new TypeToken<File>(){}.getType();
3876-
localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback);
3872+
localVarApiClient.executeAsync(localVarCall, _callback);
38773873
return localVarCall;
38783874
}
38793875
/**

‎sdks/retailmedia_2024-01/api/openapi.yaml

+1-4
Original file line numberDiff line numberDiff line change
@@ -915,10 +915,7 @@ paths:
915915
responses:
916916
"200":
917917
content:
918-
application/x-json-stream:
919-
schema:
920-
format: binary
921-
type: string
918+
application/x-json-stream: {}
922919
application/json: {}
923920
description: Catalog download initiated.
924921
"400":

‎sdks/retailmedia_2024-01/docs/CampaignApi.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -2555,7 +2555,7 @@ public class Example {
25552555

25562556
## getApiV1ExternalCatalogOutputByCatalogId
25572557

2558-
> File getApiV1ExternalCatalogOutputByCatalogId(catalogId)
2558+
> getApiV1ExternalCatalogOutputByCatalogId(catalogId)
25592559

25602560

25612561

@@ -2602,8 +2602,7 @@ public class Example {
26022602
CampaignApi apiInstance = new CampaignApi(defaultClient);
26032603
String catalogId = "catalogId_example"; // String | A catalog ID returned from an account catalog request.
26042604
try {
2605-
File result = apiInstance.getApiV1ExternalCatalogOutputByCatalogId(catalogId);
2606-
System.out.println(result);
2605+
apiInstance.getApiV1ExternalCatalogOutputByCatalogId(catalogId);
26072606
} catch (ApiException e) {
26082607
System.err.println("Exception when calling CampaignApi#getApiV1ExternalCatalogOutputByCatalogId");
26092608
System.err.println("Status code: " + e.getCode());
@@ -2624,7 +2623,7 @@ public class Example {
26242623

26252624
### Return type
26262625

2627-
[**File**](File.md)
2626+
null (empty response body)
26282627

26292628
### Authorization
26302629

‎sdks/retailmedia_2024-01/src/main/java/com/criteo/api/retailmedia/v2024_01/api/CampaignApi.java

+7-11
Original file line numberDiff line numberDiff line change
@@ -3826,7 +3826,6 @@ private okhttp3.Call getApiV1ExternalCatalogOutputByCatalogIdValidateBeforeCall(
38263826
*
38273827
* Output the indicated catalog. Catalogs are only available for retrieval when their associated status request is at a Success status. Produces application/x-json-stream of v2021_07 CatalogProduct json objects.
38283828
* @param catalogId A catalog ID returned from an account catalog request. (required)
3829-
* @return File
38303829
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
38313830
* @http.response.details
38323831
<table summary="Response Details" border="1">
@@ -3835,16 +3834,15 @@ private okhttp3.Call getApiV1ExternalCatalogOutputByCatalogIdValidateBeforeCall(
38353834
<tr><td> 400 </td><td> The indicated catalog is not available for retrieval, wait for a success status. </td><td> - </td></tr>
38363835
</table>
38373836
*/
3838-
public File getApiV1ExternalCatalogOutputByCatalogId(String catalogId) throws ApiException {
3839-
ApiResponse<File> localVarResp = getApiV1ExternalCatalogOutputByCatalogIdWithHttpInfo(catalogId);
3840-
return localVarResp.getData();
3837+
public void getApiV1ExternalCatalogOutputByCatalogId(String catalogId) throws ApiException {
3838+
getApiV1ExternalCatalogOutputByCatalogIdWithHttpInfo(catalogId);
38413839
}
38423840

38433841
/**
38443842
*
38453843
* Output the indicated catalog. Catalogs are only available for retrieval when their associated status request is at a Success status. Produces application/x-json-stream of v2021_07 CatalogProduct json objects.
38463844
* @param catalogId A catalog ID returned from an account catalog request. (required)
3847-
* @return ApiResponse&lt;File&gt;
3845+
* @return ApiResponse&lt;Void&gt;
38483846
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
38493847
* @http.response.details
38503848
<table summary="Response Details" border="1">
@@ -3853,10 +3851,9 @@ public File getApiV1ExternalCatalogOutputByCatalogId(String catalogId) throws Ap
38533851
<tr><td> 400 </td><td> The indicated catalog is not available for retrieval, wait for a success status. </td><td> - </td></tr>
38543852
</table>
38553853
*/
3856-
public ApiResponse<File> getApiV1ExternalCatalogOutputByCatalogIdWithHttpInfo(String catalogId) throws ApiException {
3854+
public ApiResponse<Void> getApiV1ExternalCatalogOutputByCatalogIdWithHttpInfo(String catalogId) throws ApiException {
38573855
okhttp3.Call localVarCall = getApiV1ExternalCatalogOutputByCatalogIdValidateBeforeCall(catalogId, null);
3858-
Type localVarReturnType = new TypeToken<File>(){}.getType();
3859-
return localVarApiClient.execute(localVarCall, localVarReturnType);
3856+
return localVarApiClient.execute(localVarCall);
38603857
}
38613858

38623859
/**
@@ -3873,11 +3870,10 @@ public ApiResponse<File> getApiV1ExternalCatalogOutputByCatalogIdWithHttpInfo(St
38733870
<tr><td> 400 </td><td> The indicated catalog is not available for retrieval, wait for a success status. </td><td> - </td></tr>
38743871
</table>
38753872
*/
3876-
public okhttp3.Call getApiV1ExternalCatalogOutputByCatalogIdAsync(String catalogId, final ApiCallback<File> _callback) throws ApiException {
3873+
public okhttp3.Call getApiV1ExternalCatalogOutputByCatalogIdAsync(String catalogId, final ApiCallback<Void> _callback) throws ApiException {
38773874

38783875
okhttp3.Call localVarCall = getApiV1ExternalCatalogOutputByCatalogIdValidateBeforeCall(catalogId, _callback);
3879-
Type localVarReturnType = new TypeToken<File>(){}.getType();
3880-
localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback);
3876+
localVarApiClient.executeAsync(localVarCall, _callback);
38813877
return localVarCall;
38823878
}
38833879
/**

0 commit comments

Comments
 (0)