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
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.107.0"
".": "0.108.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: 170
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-1a0e3a42c88b88140af0f9ad05ab0026fc87f0a500d6879c86b93dfa7f923810.yml
openapi_spec_hash: 2b4db6185c6e4ab3626461a448c97d4b
config_hash: 7a6a0c0bab3306093c6c171cd7407a45
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-b1839661d8405911184d5cb7230f16e626a616e5b744634bd7f0bb4e730bf899.yml
openapi_spec_hash: c1c2c5a5c2a4067a714b35f873e3846f
config_hash: 98214f2eab6804b5c0048331e32c08e3
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.108.0 (2025-10-08)

Full Changelog: [v0.107.0...v0.108.0](https://github.com/lithic-com/lithic-java/compare/v0.107.0...v0.108.0)

### Features

* **api:** adds support for Auto-Collections ([bb9d1ec](https://github.com/lithic-com/lithic-java/commit/bb9d1ec1dd0d6af1a14d60c13504722d7f4d49fe))

## 0.107.0 (2025-09-30)

Full Changelog: [v0.106.0...v0.107.0](https://github.com/lithic-com/lithic-java/compare/v0.106.0...v0.107.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.107.0)
[![javadoc](https://javadoc.io/badge2/com.lithic.api/lithic-java/0.107.0/javadoc.svg)](https://javadoc.io/doc/com.lithic.api/lithic-java/0.107.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.108.0)
[![javadoc](https://javadoc.io/badge2/com.lithic.api/lithic-java/0.108.0/javadoc.svg)](https://javadoc.io/doc/com.lithic.api/lithic-java/0.108.0)

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

Expand All @@ -13,7 +13,7 @@ The Lithic Java SDK is similar to the Lithic Kotlin SDK but with minor differenc

<!-- 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.107.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.108.0).

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

Expand All @@ -24,7 +24,7 @@ The REST API documentation can be found on [docs.lithic.com](https://docs.lithic
### Gradle

```kotlin
implementation("com.lithic.api:lithic-java:0.107.0")
implementation("com.lithic.api:lithic-java:0.108.0")
```

### Maven
Expand All @@ -33,7 +33,7 @@ implementation("com.lithic.api:lithic-java:0.107.0")
<dependency>
<groupId>com.lithic.api</groupId>
<artifactId>lithic-java</artifactId>
<version>0.107.0</version>
<version>0.108.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.107.0" // x-release-please-version
version = "0.108.0" // x-release-please-version
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,16 @@ private constructor(

@JvmField val BALANCE_OR_FUNDING = of("BALANCE_OR_FUNDING")

@JvmField val FEE = of("FEE")

@JvmField val REWARD = of("REWARD")

@JvmField val ADJUSTMENT = of("ADJUSTMENT")

@JvmField val DERECOGNITION = of("DERECOGNITION")

@JvmField val DISPUTE = of("DISPUTE")

@JvmField val CARD = of("CARD")

@JvmField val EXTERNAL_ACH = of("EXTERNAL_ACH")
Expand Down Expand Up @@ -419,6 +429,11 @@ private constructor(
enum class Known {
ACH,
BALANCE_OR_FUNDING,
FEE,
REWARD,
ADJUSTMENT,
DERECOGNITION,
DISPUTE,
CARD,
EXTERNAL_ACH,
EXTERNAL_CHECK,
Expand All @@ -444,6 +459,11 @@ private constructor(
enum class Value {
ACH,
BALANCE_OR_FUNDING,
FEE,
REWARD,
ADJUSTMENT,
DERECOGNITION,
DISPUTE,
CARD,
EXTERNAL_ACH,
EXTERNAL_CHECK,
Expand Down Expand Up @@ -473,6 +493,11 @@ private constructor(
when (this) {
ACH -> Value.ACH
BALANCE_OR_FUNDING -> Value.BALANCE_OR_FUNDING
FEE -> Value.FEE
REWARD -> Value.REWARD
ADJUSTMENT -> Value.ADJUSTMENT
DERECOGNITION -> Value.DERECOGNITION
DISPUTE -> Value.DISPUTE
CARD -> Value.CARD
EXTERNAL_ACH -> Value.EXTERNAL_ACH
EXTERNAL_CHECK -> Value.EXTERNAL_CHECK
Expand Down Expand Up @@ -500,6 +525,11 @@ private constructor(
when (this) {
ACH -> Known.ACH
BALANCE_OR_FUNDING -> Known.BALANCE_OR_FUNDING
FEE -> Known.FEE
REWARD -> Known.REWARD
ADJUSTMENT -> Known.ADJUSTMENT
DERECOGNITION -> Known.DERECOGNITION
DISPUTE -> Known.DISPUTE
CARD -> Known.CARD
EXTERNAL_ACH -> Known.EXTERNAL_ACH
EXTERNAL_CHECK -> Known.EXTERNAL_CHECK
Expand Down
Loading
Loading