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
The table of contents is too big for display.
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.279.0"
".": "0.280.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: 202
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-2ed4af5a2141f4524ffc8306c747f21c77e00fc5d478e08df7cbe53c92764038.yml
openapi_spec_hash: f693361a7fb14090da484e6a02b86021
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-86536168d84b951766d3c56adf7b371f15e15de83fff1de4b8052f55bb98034d.yml
openapi_spec_hash: 28053671bf8df1b93086dbe6123f8163
config_hash: a185e9a72778cc4658ea73fb3a7f1354
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 0.280.0 (2025-08-13)

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

### Features

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


### Chores

* **internal:** dynamically determine included projects ([0fad6c0](https://github.com/Increase/increase-java/commit/0fad6c031f857f27dc46110debea0cf9f6729b61))
* **internal:** format identity methods ([ef96bfd](https://github.com/Increase/increase-java/commit/ef96bfd6da05b1bad073e31054d6b37e9e0bd6fc))
* **internal:** support passing arguments to test script ([20f4b3f](https://github.com/Increase/increase-java/commit/20f4b3fd0bdaa1a44c9ee151797ceffbea197ef4))

## 0.279.0 (2025-08-12)

Full Changelog: [v0.278.0...v0.279.0](https://github.com/Increase/increase-java/compare/v0.278.0...v0.279.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.279.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.279.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.279.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.280.0)
[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.280.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.280.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.279.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.280.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.279.0")
implementation("com.increase.api:increase-java:0.280.0")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,14 @@ private constructor(
return true
}

return /* spotless:off */ other is Timeout && connect == other.connect && read == other.read && write == other.write && request == other.request /* spotless:on */
return other is Timeout &&
connect == other.connect &&
read == other.read &&
write == other.write &&
request == other.request
}

override fun hashCode(): Int = /* spotless:off */ Objects.hash(connect, read, write, request) /* spotless:on */
override fun hashCode(): Int = Objects.hash(connect, read, write, request)

override fun toString() =
"Timeout{connect=$connect, read=$read, write=$write, request=$request}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ private constructor(
return true
}

return /* spotless:off */ other is DebitStatus && value == other.value /* spotless:on */
return other is DebitStatus && value == other.value
}

override fun hashCode() = value.hashCode()
Expand All @@ -886,12 +886,12 @@ private constructor(
return true
}

return /* spotless:off */ other is InboundAch && debitStatus == other.debitStatus && additionalProperties == other.additionalProperties /* spotless:on */
return other is InboundAch &&
debitStatus == other.debitStatus &&
additionalProperties == other.additionalProperties
}

/* spotless:off */
private val hashCode: Int by lazy { Objects.hash(debitStatus, additionalProperties) }
/* spotless:on */

override fun hashCode(): Int = hashCode

Expand Down Expand Up @@ -1183,7 +1183,7 @@ private constructor(
return true
}

return /* spotless:off */ other is Status && value == other.value /* spotless:on */
return other is Status && value == other.value
}

override fun hashCode() = value.hashCode()
Expand All @@ -1196,12 +1196,12 @@ private constructor(
return true
}

return /* spotless:off */ other is InboundChecks && status == other.status && additionalProperties == other.additionalProperties /* spotless:on */
return other is InboundChecks &&
status == other.status &&
additionalProperties == other.additionalProperties
}

/* spotless:off */
private val hashCode: Int by lazy { Objects.hash(status, additionalProperties) }
/* spotless:on */

override fun hashCode(): Int = hashCode

Expand Down Expand Up @@ -1344,7 +1344,7 @@ private constructor(
return true
}

return /* spotless:off */ other is Status && value == other.value /* spotless:on */
return other is Status && value == other.value
}

override fun hashCode() = value.hashCode()
Expand Down Expand Up @@ -1469,7 +1469,7 @@ private constructor(
return true
}

return /* spotless:off */ other is Type && value == other.value /* spotless:on */
return other is Type && value == other.value
}

override fun hashCode() = value.hashCode()
Expand All @@ -1482,12 +1482,37 @@ private constructor(
return true
}

return /* spotless:off */ other is AccountNumber && id == other.id && accountId == other.accountId && accountNumber == other.accountNumber && createdAt == other.createdAt && idempotencyKey == other.idempotencyKey && inboundAch == other.inboundAch && inboundChecks == other.inboundChecks && name == other.name && routingNumber == other.routingNumber && status == other.status && type == other.type && additionalProperties == other.additionalProperties /* spotless:on */
return other is AccountNumber &&
id == other.id &&
accountId == other.accountId &&
accountNumber == other.accountNumber &&
createdAt == other.createdAt &&
idempotencyKey == other.idempotencyKey &&
inboundAch == other.inboundAch &&
inboundChecks == other.inboundChecks &&
name == other.name &&
routingNumber == other.routingNumber &&
status == other.status &&
type == other.type &&
additionalProperties == other.additionalProperties
}

/* spotless:off */
private val hashCode: Int by lazy { Objects.hash(id, accountId, accountNumber, createdAt, idempotencyKey, inboundAch, inboundChecks, name, routingNumber, status, type, additionalProperties) }
/* spotless:on */
private val hashCode: Int by lazy {
Objects.hash(
id,
accountId,
accountNumber,
createdAt,
idempotencyKey,
inboundAch,
inboundChecks,
name,
routingNumber,
status,
type,
additionalProperties,
)
}

override fun hashCode(): Int = hashCode

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -603,12 +603,17 @@ private constructor(
return true
}

return /* spotless:off */ other is Body && accountId == other.accountId && name == other.name && inboundAch == other.inboundAch && inboundChecks == other.inboundChecks && additionalProperties == other.additionalProperties /* spotless:on */
return other is Body &&
accountId == other.accountId &&
name == other.name &&
inboundAch == other.inboundAch &&
inboundChecks == other.inboundChecks &&
additionalProperties == other.additionalProperties
}

/* spotless:off */
private val hashCode: Int by lazy { Objects.hash(accountId, name, inboundAch, inboundChecks, additionalProperties) }
/* spotless:on */
private val hashCode: Int by lazy {
Objects.hash(accountId, name, inboundAch, inboundChecks, additionalProperties)
}

override fun hashCode(): Int = hashCode

Expand Down Expand Up @@ -904,7 +909,7 @@ private constructor(
return true
}

return /* spotless:off */ other is DebitStatus && value == other.value /* spotless:on */
return other is DebitStatus && value == other.value
}

override fun hashCode() = value.hashCode()
Expand All @@ -917,12 +922,12 @@ private constructor(
return true
}

return /* spotless:off */ other is InboundAch && debitStatus == other.debitStatus && additionalProperties == other.additionalProperties /* spotless:on */
return other is InboundAch &&
debitStatus == other.debitStatus &&
additionalProperties == other.additionalProperties
}

/* spotless:off */
private val hashCode: Int by lazy { Objects.hash(debitStatus, additionalProperties) }
/* spotless:on */

override fun hashCode(): Int = hashCode

Expand Down Expand Up @@ -1221,7 +1226,7 @@ private constructor(
return true
}

return /* spotless:off */ other is Status && value == other.value /* spotless:on */
return other is Status && value == other.value
}

override fun hashCode() = value.hashCode()
Expand All @@ -1234,12 +1239,12 @@ private constructor(
return true
}

return /* spotless:off */ other is InboundChecks && status == other.status && additionalProperties == other.additionalProperties /* spotless:on */
return other is InboundChecks &&
status == other.status &&
additionalProperties == other.additionalProperties
}

/* spotless:off */
private val hashCode: Int by lazy { Objects.hash(status, additionalProperties) }
/* spotless:on */

override fun hashCode(): Int = hashCode

Expand All @@ -1252,10 +1257,13 @@ private constructor(
return true
}

return /* spotless:off */ other is AccountNumberCreateParams && body == other.body && additionalHeaders == other.additionalHeaders && additionalQueryParams == other.additionalQueryParams /* spotless:on */
return other is AccountNumberCreateParams &&
body == other.body &&
additionalHeaders == other.additionalHeaders &&
additionalQueryParams == other.additionalQueryParams
}

override fun hashCode(): Int = /* spotless:off */ Objects.hash(body, additionalHeaders, additionalQueryParams) /* spotless:on */
override fun hashCode(): Int = Objects.hash(body, additionalHeaders, additionalQueryParams)

override fun toString() =
"AccountNumberCreateParams{body=$body, additionalHeaders=$additionalHeaders, additionalQueryParams=$additionalQueryParams}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,13 @@ private constructor(
return true
}

return /* spotless:off */ other is AccountNumberListPage && service == other.service && params == other.params && response == other.response /* spotless:on */
return other is AccountNumberListPage &&
service == other.service &&
params == other.params &&
response == other.response
}

override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, params, response) /* spotless:on */
override fun hashCode(): Int = Objects.hash(service, params, response)

override fun toString() =
"AccountNumberListPage{service=$service, params=$params, response=$response}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,14 @@ private constructor(
return true
}

return /* spotless:off */ other is AccountNumberListPageAsync && service == other.service && streamHandlerExecutor == other.streamHandlerExecutor && params == other.params && response == other.response /* spotless:on */
return other is AccountNumberListPageAsync &&
service == other.service &&
streamHandlerExecutor == other.streamHandlerExecutor &&
params == other.params &&
response == other.response
}

override fun hashCode(): Int = /* spotless:off */ Objects.hash(service, streamHandlerExecutor, params, response) /* spotless:on */
override fun hashCode(): Int = Objects.hash(service, streamHandlerExecutor, params, response)

override fun toString() =
"AccountNumberListPageAsync{service=$service, streamHandlerExecutor=$streamHandlerExecutor, params=$params, response=$response}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,12 +224,13 @@ private constructor(
return true
}

return /* spotless:off */ other is AccountNumberListPageResponse && data == other.data && nextCursor == other.nextCursor && additionalProperties == other.additionalProperties /* spotless:on */
return other is AccountNumberListPageResponse &&
data == other.data &&
nextCursor == other.nextCursor &&
additionalProperties == other.additionalProperties
}

/* spotless:off */
private val hashCode: Int by lazy { Objects.hash(data, nextCursor, additionalProperties) }
/* spotless:on */

override fun hashCode(): Int = hashCode

Expand Down
Loading
Loading