Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions sdk-generation-log/transactionwebhooks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"service": "transactionwebhooks",
"project": "java",
"generatedAt": "2026-04-23T11:37:44Z",
"openapiCommitSha": "ae28b691b7da78d2abedb5fa8baff05c59b00ae0",
"automationCommitSha": "4ad0c0c7e87bc0e5994a9a3350a991d0691350bb",
"libraryCommitSha": "039fe6c5dfc76f775fbda396c7ac54498aa73770"
}
Comment on lines +1 to +8
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The pull request title and description indicate that this PR contains automated changes for the transactionwebhooks service, including updates to services and models. However, the actual Java service and model files for transactionwebhooks (typically expected in com.adyen.service.transactionwebhooks and com.adyen.model.transactionwebhooks) are missing from the changes.

Only the generation log and some unrelated formatting changes in the clouddevice service are present. Please verify if the code generation for transactionwebhooks was successful and if the resulting files should be included in this PR.

4 changes: 2 additions & 2 deletions src/main/java/com/adyen/service/TerminalCloudAPI.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
import java.io.IOException;

/**
* Terminal API for cloud integrations.
* You should consider migrating to {@link com.adyen.service.clouddevice.CloudDeviceApi}.
* Terminal API for cloud integrations. You should consider migrating to {@link
* com.adyen.service.clouddevice.CloudDeviceApi}.
*/
public class TerminalCloudAPI extends ApiKeyAuthenticatedService {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import com.adyen.Client;
import com.adyen.Service;
import com.adyen.constants.ApiConstants;
import com.adyen.model.RequestOptions;
import com.adyen.model.clouddevice.*;
import com.adyen.model.clouddevice.CloudDeviceApiAsyncResponse;
import com.adyen.service.exception.ApiException;
Expand Down Expand Up @@ -142,7 +141,8 @@ public CloudDeviceApiAsyncResponse async(
/**
* Get a list of connected devices
*
* @param merchantAccount {@link String } The unique identifier of the merchant account. (required)
* @param merchantAccount {@link String } The unique identifier of the merchant account.
* (required)
* @return {@link ConnectedDevicesResponse }
* @throws ApiException if fails to make API call
*/
Expand All @@ -154,7 +154,8 @@ public ConnectedDevicesResponse getConnectedDevices(String merchantAccount)
/**
* Get a list of connected devices
*
* @param merchantAccount {@link String } The unique identifier of the merchant account. (required)
* @param merchantAccount {@link String } The unique identifier of the merchant account.
* (required)
* @param store {@link String } Query: The store ID of the store belonging to the merchant account
* specified in the path. (optional)
* @return {@link ConnectedDevicesResponse }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,7 @@ public CloudDeviceApiResponse sync(
return CloudDeviceApiResponse.fromJson(response);
}

return CloudDeviceApiResponse.fromJson(
nexoSecurityManager.decrypt(saleToPOISecuredResponse));
return CloudDeviceApiResponse.fromJson(nexoSecurityManager.decrypt(saleToPOISecuredResponse));
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ public void sendSync() throws Exception {

Assertions.assertNotNull(response);
Assertions.assertNotNull(response.getSaleToPOIResponse());
Assertions.assertEquals(getTerminalDeviceId(), response.getSaleToPOIResponse().getMessageHeader().getPOIID());
Assertions.assertEquals(
getTerminalDeviceId(), response.getSaleToPOIResponse().getMessageHeader().getPOIID());
}

@Disabled("Enable when you want to test with the Terminal")
Expand Down Expand Up @@ -96,7 +97,8 @@ public void sendEncryptedSync() throws Exception {

Assertions.assertNotNull(response);
Assertions.assertNotNull(response.getSaleToPOIResponse());
Assertions.assertEquals(getTerminalDeviceId(), response.getSaleToPOIResponse().getMessageHeader().getPOIID());
Assertions.assertEquals(
getTerminalDeviceId(), response.getSaleToPOIResponse().getMessageHeader().getPOIID());
}

@Disabled("Enable when you want to test with the Terminal")
Expand Down