Skip to content

Commit

Permalink
Update content of the OAS file and documentation - 2023-12-06.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bitbucket-automation committed Dec 6, 2023
1 parent 547728d commit 57b4aa7
Show file tree
Hide file tree
Showing 3 changed files with 416 additions and 15 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ All notable changes to the API definition will be recorded here.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)

## [2.28.1] - 2023-12-06
### Added
- Added `recurringPaymentCategory` for Non Sweeping VRPs. Add support for additional non sweeping VRP changes.

## [2.28.0] - 2023-12-01
### Added
- Added recurringPaymentCategory, maximumCumulativeAmount and maximumCumulativeNumberOfPayments fields for applications VRP configuration (Application Management)

## [2.27.0] - 2023-11-16
### Added
- Added endpoints to manage applications VRP configurations (Application Management)

## [2.26.0] - 2023-11-15
### Added
- Refactor ValidationError enum
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ public class SuiteTest {
private static final String CONSENT = "consentToken";


private final ApiClient defaultClient = Configuration.getDefaultApiClient();
private final ApiClient defaultClient = Configuration.getDefaultApiClient()
.setConnectTimeout(60000)
.setReadTimeout(60000)
.setWriteTimeout(60000);
private final HttpBasicAuth basicAuth = (HttpBasicAuth) defaultClient.getAuthentication("basicAuth");

private UserService userService;
Expand Down Expand Up @@ -123,6 +126,7 @@ void testPaymentsFlow() {
}

private static void handleException(Exception e) {
System.out.println(e);
if (e instanceof ApiException) {
fail("Should not have thrown APIException: " + ((ApiException) e).getResponseBody());
} else {
Expand Down
Loading

0 comments on commit 57b4aa7

Please sign in to comment.