diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1f086c070..569b2bd8a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.545.0" + ".": "0.546.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 7cd756e20..f08fdee05 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 238 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-6484d90ce90f64f000ef24b6582fb2c5b75496c3c61748425fd581b910940d43.yml -openapi_spec_hash: fc75851d75e458b3d108f7641db28f04 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase/increase-b6168f5ea09213fe8a507a6b13ac02357a31fff02d2801be24c35f8f495142cd.yml +openapi_spec_hash: c0e12e8e60af1893509f4dea2ea2feae config_hash: ac050010e5453883d5e5fa603554a2e0 diff --git a/CHANGELOG.md b/CHANGELOG.md index db69801f7..5dc8daf71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.546.0 (2026-05-08) + +Full Changelog: [v0.545.0...v0.546.0](https://github.com/Increase/increase-java/compare/v0.545.0...v0.546.0) + +### Features + +* **api:** api update ([271b044](https://github.com/Increase/increase-java/commit/271b044279bda7ba1c579456d800b1053285417b)) + ## 0.545.0 (2026-05-07) Full Changelog: [v0.544.0...v0.545.0](https://github.com/Increase/increase-java/compare/v0.544.0...v0.545.0) diff --git a/README.md b/README.md index 6034cd6eb..26001c78b 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ -[![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.545.0) -[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.545.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.545.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.546.0) +[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.546.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.546.0) @@ -13,7 +13,7 @@ The Increase Java SDK is similar to the Increase Kotlin SDK but with minor diffe -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.545.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.546.0). @@ -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.545.0") +implementation("com.increase.api:increase-java:0.546.0") ``` ### Maven @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.545.0") com.increase.api increase-java - 0.545.0 + 0.546.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index f00669b96..1e014ad2f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.increase.api" - version = "0.545.0" // x-release-please-version + version = "0.546.0" // x-release-please-version } subprojects { diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/Export.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/Export.kt index 553887932..0eb13414c 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/Export.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/Export.kt @@ -2953,7 +2953,10 @@ private constructor( /** Export a CSV of all transactions for a given time range. */ @JvmField val TRANSACTION_CSV = of("transaction_csv") - /** Export a CSV of account balances for the dates in a given range. */ + /** + * Export a CSV of account balances for the dates in a given range. (deprecated, use + * `daily_account_balance_csv` instead) + */ @JvmField val BALANCE_CSV = of("balance_csv") /** Export a CSV of bookkeeping account balances for the dates in a given range. */ @@ -3015,7 +3018,10 @@ private constructor( ACCOUNT_STATEMENT_BAI2, /** Export a CSV of all transactions for a given time range. */ TRANSACTION_CSV, - /** Export a CSV of account balances for the dates in a given range. */ + /** + * Export a CSV of account balances for the dates in a given range. (deprecated, use + * `daily_account_balance_csv` instead) + */ BALANCE_CSV, /** Export a CSV of bookkeeping account balances for the dates in a given range. */ BOOKKEEPING_ACCOUNT_BALANCE_CSV, @@ -3072,7 +3078,10 @@ private constructor( ACCOUNT_STATEMENT_BAI2, /** Export a CSV of all transactions for a given time range. */ TRANSACTION_CSV, - /** Export a CSV of account balances for the dates in a given range. */ + /** + * Export a CSV of account balances for the dates in a given range. (deprecated, use + * `daily_account_balance_csv` instead) + */ BALANCE_CSV, /** Export a CSV of bookkeeping account balances for the dates in a given range. */ BOOKKEEPING_ACCOUNT_BALANCE_CSV, diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportCreateParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportCreateParams.kt index d9c983db6..b25bf0b41 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportCreateParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportCreateParams.kt @@ -1281,7 +1281,10 @@ private constructor( /** Export a CSV of all transactions for a given time range. */ @JvmField val TRANSACTION_CSV = of("transaction_csv") - /** Export a CSV of account balances for the dates in a given range. */ + /** + * Export a CSV of account balances for the dates in a given range. (deprecated, use + * `daily_account_balance_csv` instead) + */ @JvmField val BALANCE_CSV = of("balance_csv") /** Export a CSV of bookkeeping account balances for the dates in a given range. */ @@ -1325,7 +1328,10 @@ private constructor( ACCOUNT_STATEMENT_BAI2, /** Export a CSV of all transactions for a given time range. */ TRANSACTION_CSV, - /** Export a CSV of account balances for the dates in a given range. */ + /** + * Export a CSV of account balances for the dates in a given range. (deprecated, use + * `daily_account_balance_csv` instead) + */ BALANCE_CSV, /** Export a CSV of bookkeeping account balances for the dates in a given range. */ BOOKKEEPING_ACCOUNT_BALANCE_CSV, @@ -1368,7 +1374,10 @@ private constructor( ACCOUNT_STATEMENT_BAI2, /** Export a CSV of all transactions for a given time range. */ TRANSACTION_CSV, - /** Export a CSV of account balances for the dates in a given range. */ + /** + * Export a CSV of account balances for the dates in a given range. (deprecated, use + * `daily_account_balance_csv` instead) + */ BALANCE_CSV, /** Export a CSV of bookkeeping account balances for the dates in a given range. */ BOOKKEEPING_ACCOUNT_BALANCE_CSV, diff --git a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListParams.kt b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListParams.kt index cb97d878b..79e308a4a 100644 --- a/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListParams.kt +++ b/increase-java-core/src/main/kotlin/com/increase/api/models/exports/ExportListParams.kt @@ -369,7 +369,10 @@ private constructor( /** Export a CSV of all transactions for a given time range. */ @JvmField val TRANSACTION_CSV = of("transaction_csv") - /** Export a CSV of account balances for the dates in a given range. */ + /** + * Export a CSV of account balances for the dates in a given range. (deprecated, use + * `daily_account_balance_csv` instead) + */ @JvmField val BALANCE_CSV = of("balance_csv") /** Export a CSV of bookkeeping account balances for the dates in a given range. */ @@ -431,7 +434,10 @@ private constructor( ACCOUNT_STATEMENT_BAI2, /** Export a CSV of all transactions for a given time range. */ TRANSACTION_CSV, - /** Export a CSV of account balances for the dates in a given range. */ + /** + * Export a CSV of account balances for the dates in a given range. (deprecated, use + * `daily_account_balance_csv` instead) + */ BALANCE_CSV, /** Export a CSV of bookkeeping account balances for the dates in a given range. */ BOOKKEEPING_ACCOUNT_BALANCE_CSV, @@ -488,7 +494,10 @@ private constructor( ACCOUNT_STATEMENT_BAI2, /** Export a CSV of all transactions for a given time range. */ TRANSACTION_CSV, - /** Export a CSV of account balances for the dates in a given range. */ + /** + * Export a CSV of account balances for the dates in a given range. (deprecated, use + * `daily_account_balance_csv` instead) + */ BALANCE_CSV, /** Export a CSV of bookkeeping account balances for the dates in a given range. */ BOOKKEEPING_ACCOUNT_BALANCE_CSV,