Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.516.0"
".": "0.517.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 241
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-4be650ff48cb364ea7a5b638127234a1097527c5814c232559d6157516ec1d0a.yml
openapi_spec_hash: 2acb075b897ec407db8d854467a51669
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-c073272ef500d513b8cbfb34d34df2d533037ac9154417004dc9071cbc60357e.yml
openapi_spec_hash: 45bfadd7b28234485f1064ae5bd4edfc
config_hash: cb5b8736705c06b670f6a25484622d62
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.517.0 (2026-04-15)

Full Changelog: [v0.516.0...v0.517.0](https://github.com/Increase/increase-java/compare/v0.516.0...v0.517.0)

### Features

* **api:** api update ([51925d1](https://github.com/Increase/increase-java/commit/51925d1d43b7618f757beb5317d64d9d5947fa14))
* **api:** api update ([30ee2c3](https://github.com/Increase/increase-java/commit/30ee2c3d575b43659a51996f9f5dfa1758645141))

## 0.516.0 (2026-04-14)

Full Changelog: [v0.515.0...v0.516.0](https://github.com/Increase/increase-java/compare/v0.515.0...v0.516.0)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<!-- x-release-please-start-version -->

[![Maven Central](https://img.shields.io/maven-central/v/com.increase.api/increase-java)](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.516.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.516.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.516.0)
[![Maven Central](https://img.shields.io/maven-central/v/com.increase.api/increase-java)](https://central.sonatype.com/artifact/com.increase.api/increase-java/0.517.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.517.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.517.0)

<!-- x-release-please-end -->

Expand All @@ -13,7 +13,7 @@ The Increase Java SDK is similar to the Increase Kotlin SDK but with minor diffe

<!-- x-release-please-start-version -->

The REST API documentation can be found on [increase.com](https://increase.com/documentation). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.increase.api/increase-java/0.516.0).
The REST API documentation can be found on [increase.com](https://increase.com/documentation). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.increase.api/increase-java/0.517.0).

<!-- x-release-please-end -->

Expand All @@ -24,7 +24,7 @@ The REST API documentation can be found on [increase.com](https://increase.com/d
### Gradle

```kotlin
implementation("com.increase.api:increase-java:0.516.0")
implementation("com.increase.api:increase-java:0.517.0")
```

### Maven
Expand All @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.516.0")
<dependency>
<groupId>com.increase.api</groupId>
<artifactId>increase-java</artifactId>
<version>0.516.0</version>
<version>0.517.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {

allprojects {
group = "com.increase.api"
version = "0.516.0" // x-release-please-version
version = "0.517.0" // x-release-please-version
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ internal class AchTransferCreateParamsTest {
AchTransferCreateParams.Addenda.Freeform.builder()
.addEntry(
AchTransferCreateParams.Addenda.Freeform.Entry.builder()
.paymentRelatedInformation("x")
.paymentRelatedInformation("payment_related_information")
.build()
)
.build()
Expand All @@ -32,23 +32,23 @@ internal class AchTransferCreateParamsTest {
.addInvoice(
AchTransferCreateParams.Addenda.PaymentOrderRemittanceAdvice.Invoice
.builder()
.invoiceNumber("x")
.invoiceNumber("sq")
.paidAmount(0L)
.build()
)
.build()
)
.build()
)
.companyDescriptiveDate("x")
.companyDiscretionaryData("x")
.companyEntryDescription("x")
.companyName("x")
.companyDescriptiveDate("J!")
.companyDiscretionaryData("J!")
.companyEntryDescription("J!")
.companyName("company_name")
.destinationAccountHolder(AchTransferCreateParams.DestinationAccountHolder.BUSINESS)
.externalAccountId("external_account_id")
.funding(AchTransferCreateParams.Funding.CHECKING)
.individualId("x")
.individualName("x")
.individualId("individual_id")
.individualName("individual_name")
.preferredEffectiveDate(
AchTransferCreateParams.PreferredEffectiveDate.builder()
.date(LocalDate.parse("2019-12-27"))
Expand Down Expand Up @@ -81,7 +81,7 @@ internal class AchTransferCreateParamsTest {
AchTransferCreateParams.Addenda.Freeform.builder()
.addEntry(
AchTransferCreateParams.Addenda.Freeform.Entry.builder()
.paymentRelatedInformation("x")
.paymentRelatedInformation("payment_related_information")
.build()
)
.build()
Expand All @@ -92,23 +92,23 @@ internal class AchTransferCreateParamsTest {
AchTransferCreateParams.Addenda.PaymentOrderRemittanceAdvice
.Invoice
.builder()
.invoiceNumber("x")
.invoiceNumber("sq")
.paidAmount(0L)
.build()
)
.build()
)
.build()
)
.companyDescriptiveDate("x")
.companyDiscretionaryData("x")
.companyEntryDescription("x")
.companyName("x")
.companyDescriptiveDate("J!")
.companyDiscretionaryData("J!")
.companyEntryDescription("J!")
.companyName("company_name")
.destinationAccountHolder(AchTransferCreateParams.DestinationAccountHolder.BUSINESS)
.externalAccountId("external_account_id")
.funding(AchTransferCreateParams.Funding.CHECKING)
.individualId("x")
.individualName("x")
.individualId("individual_id")
.individualName("individual_name")
.preferredEffectiveDate(
AchTransferCreateParams.PreferredEffectiveDate.builder()
.date(LocalDate.parse("2019-12-27"))
Expand Down Expand Up @@ -140,7 +140,7 @@ internal class AchTransferCreateParamsTest {
AchTransferCreateParams.Addenda.Freeform.builder()
.addEntry(
AchTransferCreateParams.Addenda.Freeform.Entry.builder()
.paymentRelatedInformation("x")
.paymentRelatedInformation("payment_related_information")
.build()
)
.build()
Expand All @@ -150,24 +150,24 @@ internal class AchTransferCreateParamsTest {
.addInvoice(
AchTransferCreateParams.Addenda.PaymentOrderRemittanceAdvice.Invoice
.builder()
.invoiceNumber("x")
.invoiceNumber("sq")
.paidAmount(0L)
.build()
)
.build()
)
.build()
)
assertThat(body.companyDescriptiveDate()).contains("x")
assertThat(body.companyDiscretionaryData()).contains("x")
assertThat(body.companyEntryDescription()).contains("x")
assertThat(body.companyName()).contains("x")
assertThat(body.companyDescriptiveDate()).contains("J!")
assertThat(body.companyDiscretionaryData()).contains("J!")
assertThat(body.companyEntryDescription()).contains("J!")
assertThat(body.companyName()).contains("company_name")
assertThat(body.destinationAccountHolder())
.contains(AchTransferCreateParams.DestinationAccountHolder.BUSINESS)
assertThat(body.externalAccountId()).contains("external_account_id")
assertThat(body.funding()).contains(AchTransferCreateParams.Funding.CHECKING)
assertThat(body.individualId()).contains("x")
assertThat(body.individualName()).contains("x")
assertThat(body.individualId()).contains("individual_id")
assertThat(body.individualName()).contains("individual_name")
assertThat(body.preferredEffectiveDate())
.contains(
AchTransferCreateParams.PreferredEffectiveDate.builder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ internal class CardPushTransferCreateParamsTest {
.senderAddressState("NY")
.senderName("Ian Crease")
.sourceAccountNumberId("account_number_v18nkfqm6afpsrvy82b2")
.merchantLegalBusinessName("x")
.merchantStreetAddress("x")
.recipientAddressCity("x")
.recipientAddressLine1("x")
.recipientAddressPostalCode("x")
.recipientAddressState("x")
.merchantLegalBusinessName("x6")
.merchantStreetAddress("merchant_street_address")
.recipientAddressCity("recipient_address_city")
.recipientAddressLine1("recipient_address_line1")
.recipientAddressPostalCode("x6")
.recipientAddressState("x6")
.requireApproval(true)
.build()
}
Expand Down Expand Up @@ -70,12 +70,12 @@ internal class CardPushTransferCreateParamsTest {
.senderAddressState("NY")
.senderName("Ian Crease")
.sourceAccountNumberId("account_number_v18nkfqm6afpsrvy82b2")
.merchantLegalBusinessName("x")
.merchantStreetAddress("x")
.recipientAddressCity("x")
.recipientAddressLine1("x")
.recipientAddressPostalCode("x")
.recipientAddressState("x")
.merchantLegalBusinessName("x6")
.merchantStreetAddress("merchant_street_address")
.recipientAddressCity("recipient_address_city")
.recipientAddressLine1("recipient_address_line1")
.recipientAddressPostalCode("x6")
.recipientAddressState("x6")
.requireApproval(true)
.build()

Expand Down Expand Up @@ -106,12 +106,12 @@ internal class CardPushTransferCreateParamsTest {
assertThat(body.senderAddressState()).isEqualTo("NY")
assertThat(body.senderName()).isEqualTo("Ian Crease")
assertThat(body.sourceAccountNumberId()).isEqualTo("account_number_v18nkfqm6afpsrvy82b2")
assertThat(body.merchantLegalBusinessName()).contains("x")
assertThat(body.merchantStreetAddress()).contains("x")
assertThat(body.recipientAddressCity()).contains("x")
assertThat(body.recipientAddressLine1()).contains("x")
assertThat(body.recipientAddressPostalCode()).contains("x")
assertThat(body.recipientAddressState()).contains("x")
assertThat(body.merchantLegalBusinessName()).contains("x6")
assertThat(body.merchantStreetAddress()).contains("merchant_street_address")
assertThat(body.recipientAddressCity()).contains("recipient_address_city")
assertThat(body.recipientAddressLine1()).contains("recipient_address_line1")
assertThat(body.recipientAddressPostalCode()).contains("x6")
assertThat(body.recipientAddressState()).contains("x6")
assertThat(body.requireApproval()).contains(true)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ internal class CardCreateParamsTest {
.addAllowed(
CardCreateParams.AuthorizationControls.MerchantCategoryCode.Allowed
.builder()
.code("xxxx")
.code("0253")
.build()
)
.addBlocked(
CardCreateParams.AuthorizationControls.MerchantCategoryCode.Blocked
.builder()
.code("xxxx")
.code("0253")
.build()
)
.build()
Expand Down Expand Up @@ -172,14 +172,14 @@ internal class CardCreateParamsTest {
CardCreateParams.AuthorizationControls.MerchantCategoryCode
.Allowed
.builder()
.code("xxxx")
.code("0253")
.build()
)
.addBlocked(
CardCreateParams.AuthorizationControls.MerchantCategoryCode
.Blocked
.builder()
.code("xxxx")
.code("0253")
.build()
)
.build()
Expand Down Expand Up @@ -303,13 +303,13 @@ internal class CardCreateParamsTest {
.addAllowed(
CardCreateParams.AuthorizationControls.MerchantCategoryCode.Allowed
.builder()
.code("xxxx")
.code("0253")
.build()
)
.addBlocked(
CardCreateParams.AuthorizationControls.MerchantCategoryCode.Blocked
.builder()
.code("xxxx")
.code("0253")
.build()
)
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ internal class CardUpdateParamsTest {
.addAllowed(
CardUpdateParams.AuthorizationControls.MerchantCategoryCode.Allowed
.builder()
.code("xxxx")
.code("0253")
.build()
)
.addBlocked(
CardUpdateParams.AuthorizationControls.MerchantCategoryCode.Blocked
.builder()
.code("xxxx")
.code("0253")
.build()
)
.build()
Expand Down Expand Up @@ -182,14 +182,14 @@ internal class CardUpdateParamsTest {
CardUpdateParams.AuthorizationControls.MerchantCategoryCode
.Allowed
.builder()
.code("xxxx")
.code("0253")
.build()
)
.addBlocked(
CardUpdateParams.AuthorizationControls.MerchantCategoryCode
.Blocked
.builder()
.code("xxxx")
.code("0253")
.build()
)
.build()
Expand Down Expand Up @@ -313,13 +313,13 @@ internal class CardUpdateParamsTest {
.addAllowed(
CardUpdateParams.AuthorizationControls.MerchantCategoryCode.Allowed
.builder()
.code("xxxx")
.code("0253")
.build()
)
.addBlocked(
CardUpdateParams.AuthorizationControls.MerchantCategoryCode.Blocked
.builder()
.code("xxxx")
.code("0253")
.build()
)
.build()
Expand Down
Loading
Loading