From 221f6d4a958f41f8b905629ff3b8407b9f3d3415 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 19 Feb 2026 15:01:31 +0000 Subject: [PATCH 1/3] codegen metadata --- .stats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index 5a93d129..b0b4f76e 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 177 openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-c24eebe942f400bff8922a6fbef1ce551ad14f61eb4da21b50d823a62ca42586.yml openapi_spec_hash: b79ed927e625dedff69cea29131a34d9 -config_hash: 693dddc4721eef512d75ab6c60897794 +config_hash: fbc424e01cca916048d63adcadaa8750 From b5335809bcdb615e5f8b22f5b7f2b5ea81581219 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 19 Feb 2026 17:49:38 +0000 Subject: [PATCH 2/3] feat(api): Add INTEREST_AND_FEES_PAUSED substatus to financial account --- .stats.yml | 4 ++-- .../main/kotlin/com/lithic/api/models/FinancialAccount.kt | 6 ++++++ .../lithic/api/models/FinancialAccountUpdateStatusParams.kt | 6 ++++++ .../src/main/kotlin/com/lithic/api/models/LoanTape.kt | 6 ++++++ .../src/main/kotlin/com/lithic/api/models/Statement.kt | 6 ++++++ 5 files changed, 26 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index b0b4f76e..1862b2d1 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 177 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-c24eebe942f400bff8922a6fbef1ce551ad14f61eb4da21b50d823a62ca42586.yml -openapi_spec_hash: b79ed927e625dedff69cea29131a34d9 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-f85b60190db68921a3a877d0dd931670c27933ba1f5031fcdd27365e99adb5c9.yml +openapi_spec_hash: 4828c2dc7543ce2a39774a9921c73c80 config_hash: fbc424e01cca916048d63adcadaa8750 diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccount.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccount.kt index 9d2201cf..1980c5a5 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccount.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccount.kt @@ -1406,6 +1406,8 @@ private constructor( @JvmField val DELINQUENT = of("DELINQUENT") + @JvmField val INTEREST_AND_FEES_PAUSED = of("INTEREST_AND_FEES_PAUSED") + @JvmStatic fun of(value: String) = FinancialAccountSubstatus(JsonField.of(value)) } @@ -1416,6 +1418,7 @@ private constructor( END_USER_REQUEST, BANK_REQUEST, DELINQUENT, + INTEREST_AND_FEES_PAUSED, } /** @@ -1435,6 +1438,7 @@ private constructor( END_USER_REQUEST, BANK_REQUEST, DELINQUENT, + INTEREST_AND_FEES_PAUSED, /** * An enum member indicating that [FinancialAccountSubstatus] was instantiated with an * unknown value. @@ -1456,6 +1460,7 @@ private constructor( END_USER_REQUEST -> Value.END_USER_REQUEST BANK_REQUEST -> Value.BANK_REQUEST DELINQUENT -> Value.DELINQUENT + INTEREST_AND_FEES_PAUSED -> Value.INTEREST_AND_FEES_PAUSED else -> Value._UNKNOWN } @@ -1475,6 +1480,7 @@ private constructor( END_USER_REQUEST -> Known.END_USER_REQUEST BANK_REQUEST -> Known.BANK_REQUEST DELINQUENT -> Known.DELINQUENT + INTEREST_AND_FEES_PAUSED -> Known.INTEREST_AND_FEES_PAUSED else -> throw LithicInvalidDataException("Unknown FinancialAccountSubstatus: $value") } diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountUpdateStatusParams.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountUpdateStatusParams.kt index e51d0e37..73595a71 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountUpdateStatusParams.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccountUpdateStatusParams.kt @@ -777,6 +777,8 @@ private constructor( @JvmField val CHARGED_OFF_DELINQUENT = of("CHARGED_OFF_DELINQUENT") + @JvmField val INTEREST_AND_FEES_PAUSED = of("INTEREST_AND_FEES_PAUSED") + @JvmStatic fun of(value: String) = UpdateFinancialAccountSubstatus(JsonField.of(value)) } @@ -786,6 +788,7 @@ private constructor( END_USER_REQUEST, BANK_REQUEST, CHARGED_OFF_DELINQUENT, + INTEREST_AND_FEES_PAUSED, } /** @@ -804,6 +807,7 @@ private constructor( END_USER_REQUEST, BANK_REQUEST, CHARGED_OFF_DELINQUENT, + INTEREST_AND_FEES_PAUSED, /** * An enum member indicating that [UpdateFinancialAccountSubstatus] was instantiated * with an unknown value. @@ -824,6 +828,7 @@ private constructor( END_USER_REQUEST -> Value.END_USER_REQUEST BANK_REQUEST -> Value.BANK_REQUEST CHARGED_OFF_DELINQUENT -> Value.CHARGED_OFF_DELINQUENT + INTEREST_AND_FEES_PAUSED -> Value.INTEREST_AND_FEES_PAUSED else -> Value._UNKNOWN } @@ -842,6 +847,7 @@ private constructor( END_USER_REQUEST -> Known.END_USER_REQUEST BANK_REQUEST -> Known.BANK_REQUEST CHARGED_OFF_DELINQUENT -> Known.CHARGED_OFF_DELINQUENT + INTEREST_AND_FEES_PAUSED -> Known.INTEREST_AND_FEES_PAUSED else -> throw LithicInvalidDataException( "Unknown UpdateFinancialAccountSubstatus: $value" diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/LoanTape.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/LoanTape.kt index 274e35e3..de8899a7 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/LoanTape.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/LoanTape.kt @@ -1869,6 +1869,8 @@ private constructor( @JvmField val DELINQUENT = of("DELINQUENT") + @JvmField val INTEREST_AND_FEES_PAUSED = of("INTEREST_AND_FEES_PAUSED") + @JvmStatic fun of(value: String) = FinancialAccountSubstatus(JsonField.of(value)) } @@ -1880,6 +1882,7 @@ private constructor( END_USER_REQUEST, BANK_REQUEST, DELINQUENT, + INTEREST_AND_FEES_PAUSED, } /** @@ -1899,6 +1902,7 @@ private constructor( END_USER_REQUEST, BANK_REQUEST, DELINQUENT, + INTEREST_AND_FEES_PAUSED, /** * An enum member indicating that [FinancialAccountSubstatus] was instantiated * with an unknown value. @@ -1920,6 +1924,7 @@ private constructor( END_USER_REQUEST -> Value.END_USER_REQUEST BANK_REQUEST -> Value.BANK_REQUEST DELINQUENT -> Value.DELINQUENT + INTEREST_AND_FEES_PAUSED -> Value.INTEREST_AND_FEES_PAUSED else -> Value._UNKNOWN } @@ -1939,6 +1944,7 @@ private constructor( END_USER_REQUEST -> Known.END_USER_REQUEST BANK_REQUEST -> Known.BANK_REQUEST DELINQUENT -> Known.DELINQUENT + INTEREST_AND_FEES_PAUSED -> Known.INTEREST_AND_FEES_PAUSED else -> throw LithicInvalidDataException( "Unknown FinancialAccountSubstatus: $value" diff --git a/lithic-java-core/src/main/kotlin/com/lithic/api/models/Statement.kt b/lithic-java-core/src/main/kotlin/com/lithic/api/models/Statement.kt index de6ca12a..c4cc252d 100644 --- a/lithic-java-core/src/main/kotlin/com/lithic/api/models/Statement.kt +++ b/lithic-java-core/src/main/kotlin/com/lithic/api/models/Statement.kt @@ -1902,6 +1902,8 @@ private constructor( @JvmField val DELINQUENT = of("DELINQUENT") + @JvmField val INTEREST_AND_FEES_PAUSED = of("INTEREST_AND_FEES_PAUSED") + @JvmStatic fun of(value: String) = FinancialAccountSubstatus(JsonField.of(value)) } @@ -1913,6 +1915,7 @@ private constructor( END_USER_REQUEST, BANK_REQUEST, DELINQUENT, + INTEREST_AND_FEES_PAUSED, } /** @@ -1932,6 +1935,7 @@ private constructor( END_USER_REQUEST, BANK_REQUEST, DELINQUENT, + INTEREST_AND_FEES_PAUSED, /** * An enum member indicating that [FinancialAccountSubstatus] was instantiated * with an unknown value. @@ -1953,6 +1957,7 @@ private constructor( END_USER_REQUEST -> Value.END_USER_REQUEST BANK_REQUEST -> Value.BANK_REQUEST DELINQUENT -> Value.DELINQUENT + INTEREST_AND_FEES_PAUSED -> Value.INTEREST_AND_FEES_PAUSED else -> Value._UNKNOWN } @@ -1972,6 +1977,7 @@ private constructor( END_USER_REQUEST -> Known.END_USER_REQUEST BANK_REQUEST -> Known.BANK_REQUEST DELINQUENT -> Known.DELINQUENT + INTEREST_AND_FEES_PAUSED -> Known.INTEREST_AND_FEES_PAUSED else -> throw LithicInvalidDataException( "Unknown FinancialAccountSubstatus: $value" From e48d32270113b1a969119e10781704ce563e3924 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 19 Feb 2026 17:50:04 +0000 Subject: [PATCH 3/3] release: 0.118.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 10 +++++----- build.gradle.kts | 2 +- 4 files changed, 15 insertions(+), 7 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b6700282..617f7502 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.117.0" + ".": "0.118.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bc58031..ed0c13c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.118.0 (2026-02-19) + +Full Changelog: [v0.117.0...v0.118.0](https://github.com/lithic-com/lithic-java/compare/v0.117.0...v0.118.0) + +### Features + +* **api:** Add INTEREST_AND_FEES_PAUSED substatus to financial account ([b533580](https://github.com/lithic-com/lithic-java/commit/b5335809bcdb615e5f8b22f5b7f2b5ea81581219)) + ## 0.117.0 (2026-02-18) Full Changelog: [v0.116.0...v0.117.0](https://github.com/lithic-com/lithic-java/compare/v0.116.0...v0.117.0) diff --git a/README.md b/README.md index 5b40c425..dfe23ed4 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ -[![Maven Central](https://img.shields.io/maven-central/v/com.lithic.api/lithic-java)](https://central.sonatype.com/artifact/com.lithic.api/lithic-java/0.117.0) -[![javadoc](https://javadoc.io/badge2/com.lithic.api/lithic-java/0.117.0/javadoc.svg)](https://javadoc.io/doc/com.lithic.api/lithic-java/0.117.0) +[![Maven Central](https://img.shields.io/maven-central/v/com.lithic.api/lithic-java)](https://central.sonatype.com/artifact/com.lithic.api/lithic-java/0.118.0) +[![javadoc](https://javadoc.io/badge2/com.lithic.api/lithic-java/0.118.0/javadoc.svg)](https://javadoc.io/doc/com.lithic.api/lithic-java/0.118.0) @@ -22,7 +22,7 @@ Use the Lithic MCP Server to enable AI assistants to interact with this API, all -The REST API documentation can be found on [docs.lithic.com](https://docs.lithic.com). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.lithic.api/lithic-java/0.117.0). +The REST API documentation can be found on [docs.lithic.com](https://docs.lithic.com). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.lithic.api/lithic-java/0.118.0). @@ -33,7 +33,7 @@ The REST API documentation can be found on [docs.lithic.com](https://docs.lithic ### Gradle ```kotlin -implementation("com.lithic.api:lithic-java:0.117.0") +implementation("com.lithic.api:lithic-java:0.118.0") ``` ### Maven @@ -42,7 +42,7 @@ implementation("com.lithic.api:lithic-java:0.117.0") com.lithic.api lithic-java - 0.117.0 + 0.118.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 3371f3d6..433e6f12 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.lithic.api" - version = "0.117.0" // x-release-please-version + version = "0.118.0" // x-release-please-version } subprojects {