diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a72f9fd4f..be2cee26e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.245.0" + ".": "0.246.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 9417f9412..43af81d37 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 201 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-ec09866b27548ccd02de1307a9444b383128950ae3e9b6d7f9664a0681807603.yml -openapi_spec_hash: f420ad94cfcf2d7b9409d4a84734a497 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-0a7a38daa75e8f8cfceaa02d9d184fef11de6d4ebdd0d3d703d50a0a425f8979.yml +openapi_spec_hash: f0e1b6278b338a2b3b4334f78cb16095 config_hash: 97774f946585cecb19181a1817870d0b diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fb836743..f4b059866 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.246.0 (2025-06-16) + +Full Changelog: [v0.245.0...v0.246.0](https://github.com/Increase/increase-java/compare/v0.245.0...v0.246.0) + +### Features + +* **api:** api update ([1eef95f](https://github.com/Increase/increase-java/commit/1eef95f4cbd0e6cc42b813d76d32f3c5b0860f92)) + ## 0.245.0 (2025-06-16) Full Changelog: [v0.244.0...v0.245.0](https://github.com/Increase/increase-java/compare/v0.244.0...v0.245.0) diff --git a/README.md b/README.md index 242e24c3d..b68b19f94 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.245.0) -[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.245.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.245.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.246.0) +[![javadoc](https://javadoc.io/badge2/com.increase.api/increase-java/0.246.0/javadoc.svg)](https://javadoc.io/doc/com.increase.api/increase-java/0.246.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.245.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.246.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.245.0") +implementation("com.increase.api:increase-java:0.246.0") ``` ### Maven @@ -33,7 +33,7 @@ implementation("com.increase.api:increase-java:0.245.0") com.increase.api increase-java - 0.245.0 + 0.246.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 3886f3890..664188e72 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.increase.api" - version = "0.245.0" // x-release-please-version + version = "0.246.0" // x-release-please-version } subprojects { diff --git a/increase-java-core/src/test/kotlin/com/increase/api/models/documents/DocumentListPageResponseTest.kt b/increase-java-core/src/test/kotlin/com/increase/api/models/documents/DocumentListPageResponseTest.kt index 687df2f15..f11c080fd 100644 --- a/increase-java-core/src/test/kotlin/com/increase/api/models/documents/DocumentListPageResponseTest.kt +++ b/increase-java-core/src/test/kotlin/com/increase/api/models/documents/DocumentListPageResponseTest.kt @@ -22,7 +22,7 @@ internal class DocumentListPageResponseTest { .accountNumberId("account_number_v18nkfqm6afpsrvy82b2") .build() ) - .category(Document.Category.FORM_1099_INT) + .category(Document.Category.ACCOUNT_VERIFICATION_LETTER) .createdAt(OffsetDateTime.parse("2020-01-31T23:59:59Z")) .entityId("entity_n8y8tnk2p9339ti393yi") .fileId("file_makxrc67oh9l6sg7w9yc") @@ -42,7 +42,7 @@ internal class DocumentListPageResponseTest { .accountNumberId("account_number_v18nkfqm6afpsrvy82b2") .build() ) - .category(Document.Category.FORM_1099_INT) + .category(Document.Category.ACCOUNT_VERIFICATION_LETTER) .createdAt(OffsetDateTime.parse("2020-01-31T23:59:59Z")) .entityId("entity_n8y8tnk2p9339ti393yi") .fileId("file_makxrc67oh9l6sg7w9yc") @@ -66,7 +66,7 @@ internal class DocumentListPageResponseTest { .accountNumberId("account_number_v18nkfqm6afpsrvy82b2") .build() ) - .category(Document.Category.FORM_1099_INT) + .category(Document.Category.ACCOUNT_VERIFICATION_LETTER) .createdAt(OffsetDateTime.parse("2020-01-31T23:59:59Z")) .entityId("entity_n8y8tnk2p9339ti393yi") .fileId("file_makxrc67oh9l6sg7w9yc") diff --git a/increase-java-core/src/test/kotlin/com/increase/api/models/documents/DocumentTest.kt b/increase-java-core/src/test/kotlin/com/increase/api/models/documents/DocumentTest.kt index baa9427ac..873666795 100644 --- a/increase-java-core/src/test/kotlin/com/increase/api/models/documents/DocumentTest.kt +++ b/increase-java-core/src/test/kotlin/com/increase/api/models/documents/DocumentTest.kt @@ -20,7 +20,7 @@ internal class DocumentTest { .accountNumberId("account_number_v18nkfqm6afpsrvy82b2") .build() ) - .category(Document.Category.FORM_1099_INT) + .category(Document.Category.ACCOUNT_VERIFICATION_LETTER) .createdAt(OffsetDateTime.parse("2020-01-31T23:59:59Z")) .entityId("entity_n8y8tnk2p9339ti393yi") .fileId("file_makxrc67oh9l6sg7w9yc") @@ -35,7 +35,7 @@ internal class DocumentTest { .accountNumberId("account_number_v18nkfqm6afpsrvy82b2") .build() ) - assertThat(document.category()).isEqualTo(Document.Category.FORM_1099_INT) + assertThat(document.category()).isEqualTo(Document.Category.ACCOUNT_VERIFICATION_LETTER) assertThat(document.createdAt()).isEqualTo(OffsetDateTime.parse("2020-01-31T23:59:59Z")) assertThat(document.entityId()).contains("entity_n8y8tnk2p9339ti393yi") assertThat(document.fileId()).isEqualTo("file_makxrc67oh9l6sg7w9yc") @@ -54,7 +54,7 @@ internal class DocumentTest { .accountNumberId("account_number_v18nkfqm6afpsrvy82b2") .build() ) - .category(Document.Category.FORM_1099_INT) + .category(Document.Category.ACCOUNT_VERIFICATION_LETTER) .createdAt(OffsetDateTime.parse("2020-01-31T23:59:59Z")) .entityId("entity_n8y8tnk2p9339ti393yi") .fileId("file_makxrc67oh9l6sg7w9yc")