Releases: pluggyai/pluggy-java
Releases · pluggyai/pluggy-java
v0.3.1
- Hotfix: add getters & setters to
CreditDataresponse object. - improve Asserts.assertValidDateString() validation error message.
- Reenable disabled test
getTransactions_byExistingAccountId_withPageFilters_ok()& fix createItem + updateItem test errors by using the newly required 'https://'webhookUrlparam.
v0.3.0
Changes for this version:
- Method
PluggyClientService::getTransactions()now implementsTransactionsSearchRequestparam, instead of previousDateFilters. This new param adds support forpageandpageSizequery params, while keeping support for previously definedfromandtoparams. Usage example:
TransactionsSearchRequest firstPageParams = new TransactionsSearchRequest()
.page(1)
.pageSize(10);
Response<TransactionsResponse> firstPageResponse = client.service()
.getTransactions(firstAccountId, firstPageParams)
.execute();- New options for
PluggyClientBuilderinstance:noAuthInterceptor()option excludes default usage of providedApiKeyAuthInterceptorinstance. You'll need to then provide your own auth interceptor instance using the following:okHttpClientBuilder()public method that provides access toOkHttpClient.Builder, for advanced configurability such as timeouts, interceptors, etc.
Usage example:
PluggyClientBuilder clientBuilder = PluggyClient.builder()
.baseUrl(BASE_URL)
.clientIdAndSecret(CLIENT_ID, CLIENT_SECRET)
.noAuthInterceptor();
Builder okHttpBuilder = clientBuilder.okHttpClientBuilder();
okHttpBuilder.addInterceptor(new HttpLoggingInterceptor());
PluggyClient pluggyClient = clientBuilder.build();v0.2.0
v0.2.0-SNAPSHOT
config(ci): skip test in publish -> 'deploy' job (they are done in pr…
First release v0.1.0
Initial implementation of the Pluggy API SDK.
Contains an implementation for all current endpoints of the API, and all of them have at least one passing integration test.
0.1.0-SNAPSHOT
first release