Skip to content
Open
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.117.0"
".": "0.118.0"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -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
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-f85b60190db68921a3a877d0dd931670c27933ba1f5031fcdd27365e99adb5c9.yml
openapi_spec_hash: 4828c2dc7543ce2a39774a9921c73c80
config_hash: fbc424e01cca916048d63adcadaa8750
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
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.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)

<!-- x-release-please-end -->

Expand All @@ -22,7 +22,7 @@ Use the Lithic MCP Server to enable AI assistants to interact with this API, all

<!-- x-release-please-start-version -->

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).

<!-- x-release-please-end -->

Expand All @@ -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
Expand All @@ -42,7 +42,7 @@ implementation("com.lithic.api:lithic-java:0.117.0")
<dependency>
<groupId>com.lithic.api</groupId>
<artifactId>lithic-java</artifactId>
<version>0.117.0</version>
<version>0.118.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.lithic.api"
version = "0.117.0" // x-release-please-version
version = "0.118.0" // x-release-please-version
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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))
}

Expand All @@ -1416,6 +1418,7 @@ private constructor(
END_USER_REQUEST,
BANK_REQUEST,
DELINQUENT,
INTEREST_AND_FEES_PAUSED,
}

/**
Expand All @@ -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.
Expand All @@ -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
}

Expand All @@ -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")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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))
}

Expand All @@ -786,6 +788,7 @@ private constructor(
END_USER_REQUEST,
BANK_REQUEST,
CHARGED_OFF_DELINQUENT,
INTEREST_AND_FEES_PAUSED,
}

/**
Expand All @@ -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.
Expand All @@ -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
}

Expand All @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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))
}
Expand All @@ -1880,6 +1882,7 @@ private constructor(
END_USER_REQUEST,
BANK_REQUEST,
DELINQUENT,
INTEREST_AND_FEES_PAUSED,
}

/**
Expand All @@ -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.
Expand All @@ -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
}

Expand All @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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))
}
Expand All @@ -1913,6 +1915,7 @@ private constructor(
END_USER_REQUEST,
BANK_REQUEST,
DELINQUENT,
INTEREST_AND_FEES_PAUSED,
}

/**
Expand All @@ -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.
Expand All @@ -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
}

Expand All @@ -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"
Expand Down
Loading