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.258.0"
".": "0.259.0"
}
8 changes: 4 additions & 4 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 201
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-e25bdcd9c9cd987962f1507200b619dc7c32f91b940e5ca9110f24bdb294b14a.yml
openapi_spec_hash: 693a205b039e410d9a6b49a5b0ccc72c
config_hash: 97774f946585cecb19181a1817870d0b
configured_endpoints: 202
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-a7e0e17a385ddfb049d0fe4e5d05785901cf40f464c51399d7c2cd1f863696c0.yml
openapi_spec_hash: b4bca6edf466e9061a72c98207f92c6d
config_hash: a185e9a72778cc4658ea73fb3a7f1354
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.259.0 (2025-07-09)

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

### Features

* **api:** api update ([cfd4529](https://github.com/Increase/increase-java/commit/cfd452993df828b39ad9b2b3587a87cea7db5220))

## 0.258.0 (2025-07-08)

Full Changelog: [v0.257.0...v0.258.0](https://github.com/Increase/increase-java/compare/v0.257.0...v0.258.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.258.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.258.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.258.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.259.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.259.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.259.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.258.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.259.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.258.0")
implementation("com.increase.api:increase-java:0.259.0")
```

### Maven
Expand All @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.258.0")
<dependency>
<groupId>com.increase.api</groupId>
<artifactId>increase-java</artifactId>
<version>0.258.0</version>
<version>0.259.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.258.0" // x-release-please-version
version = "0.259.0" // x-release-please-version
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ private constructor(
private val cursor: String?,
private val limit: Long?,
private val status: Status?,
private val wireDrawdownRequestId: String?,
private val additionalHeaders: Headers,
private val additionalQueryParams: QueryParams,
) : Params {
Expand All @@ -45,6 +46,9 @@ private constructor(

fun status(): Optional<Status> = Optional.ofNullable(status)

/** Filter Inbound Wire Transfers to ones belonging to the specified Wire Drawdown Request. */
fun wireDrawdownRequestId(): Optional<String> = Optional.ofNullable(wireDrawdownRequestId)

fun _additionalHeaders(): Headers = additionalHeaders

fun _additionalQueryParams(): QueryParams = additionalQueryParams
Expand All @@ -71,6 +75,7 @@ private constructor(
private var cursor: String? = null
private var limit: Long? = null
private var status: Status? = null
private var wireDrawdownRequestId: String? = null
private var additionalHeaders: Headers.Builder = Headers.builder()
private var additionalQueryParams: QueryParams.Builder = QueryParams.builder()

Expand All @@ -82,6 +87,7 @@ private constructor(
cursor = inboundWireTransferListParams.cursor
limit = inboundWireTransferListParams.limit
status = inboundWireTransferListParams.status
wireDrawdownRequestId = inboundWireTransferListParams.wireDrawdownRequestId
additionalHeaders = inboundWireTransferListParams.additionalHeaders.toBuilder()
additionalQueryParams = inboundWireTransferListParams.additionalQueryParams.toBuilder()
}
Expand Down Expand Up @@ -132,6 +138,20 @@ private constructor(
/** Alias for calling [Builder.status] with `status.orElse(null)`. */
fun status(status: Optional<Status>) = status(status.getOrNull())

/**
* Filter Inbound Wire Transfers to ones belonging to the specified Wire Drawdown Request.
*/
fun wireDrawdownRequestId(wireDrawdownRequestId: String?) = apply {
this.wireDrawdownRequestId = wireDrawdownRequestId
}

/**
* Alias for calling [Builder.wireDrawdownRequestId] with
* `wireDrawdownRequestId.orElse(null)`.
*/
fun wireDrawdownRequestId(wireDrawdownRequestId: Optional<String>) =
wireDrawdownRequestId(wireDrawdownRequestId.getOrNull())

fun additionalHeaders(additionalHeaders: Headers) = apply {
this.additionalHeaders.clear()
putAllAdditionalHeaders(additionalHeaders)
Expand Down Expand Up @@ -243,6 +263,7 @@ private constructor(
cursor,
limit,
status,
wireDrawdownRequestId,
additionalHeaders.build(),
additionalQueryParams.build(),
)
Expand Down Expand Up @@ -290,6 +311,7 @@ private constructor(
}
}
}
wireDrawdownRequestId?.let { put("wire_drawdown_request_id", it) }
putAll(additionalQueryParams)
}
.build()
Expand Down Expand Up @@ -754,11 +776,11 @@ private constructor(
return true
}

return /* spotless:off */ other is InboundWireTransferListParams && accountId == other.accountId && accountNumberId == other.accountNumberId && createdAt == other.createdAt && cursor == other.cursor && limit == other.limit && status == other.status && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */
return /* spotless:off */ other is InboundWireTransferListParams && accountId == other.accountId && accountNumberId == other.accountNumberId && createdAt == other.createdAt && cursor == other.cursor && limit == other.limit && status == other.status && wireDrawdownRequestId == other.wireDrawdownRequestId && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */
}

override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, accountNumberId, createdAt, cursor, limit, status, additionalHeaders, additionalQueryParams) /* spotless:on */
override fun hashCode(): Int = /* spotless:off */ Objects.hash(accountId, accountNumberId, createdAt, cursor, limit, status, wireDrawdownRequestId, additionalHeaders, additionalQueryParams) /* spotless:on */

override fun toString() =
"InboundWireTransferListParams{accountId=$accountId, accountNumberId=$accountNumberId, createdAt=$createdAt, cursor=$cursor, limit=$limit, status=$status, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}"
"InboundWireTransferListParams{accountId=$accountId, accountNumberId=$accountNumberId, createdAt=$createdAt, cursor=$cursor, limit=$limit, status=$status, wireDrawdownRequestId=$wireDrawdownRequestId, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}"
}
Loading
Loading