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.130.0"
".": "0.130.1"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 214
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic/lithic-47e9f78d22682623e313f1689f5fa7e3420575ff285a14a2f4704c49ffb6b72e.yml
openapi_spec_hash: 4797fe46d942cb32e648a79015783d01
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic/lithic-d83e3ddb148bc0c81ff97bd31b82027d5b37efc110f5981103e7b9a2ae281c86.yml
openapi_spec_hash: f607b0571c4ed82a93a3df7bc9e9351b
config_hash: 5bb913c05ebeb301ec925b16e75bb251
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.130.1 (2026-06-25)

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

### Documentation

* **types:** clarify cash_amount description in CardAuthorization models ([900a6b2](https://github.com/lithic-com/lithic-java/commit/900a6b205597d95620df418d01cd5cf43ccbaa04))

## 0.130.0 (2026-06-23)

Full Changelog: [v0.129.0...v0.130.0](https://github.com/lithic-com/lithic-java/compare/v0.129.0...v0.130.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.130.0)
[![javadoc](https://javadoc.io/badge2/com.lithic.api/lithic-java/0.130.0/javadoc.svg)](https://javadoc.io/doc/com.lithic.api/lithic-java/0.130.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.130.1)
[![javadoc](https://javadoc.io/badge2/com.lithic.api/lithic-java/0.130.1/javadoc.svg)](https://javadoc.io/doc/com.lithic.api/lithic-java/0.130.1)

<!-- 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.130.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.130.1).

<!-- 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.130.0")
implementation("com.lithic.api:lithic-java:0.130.1")
```

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

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -243,12 +243,12 @@ private constructor(
fun cardholderCurrency(): String = cardholderCurrency.getRequired("cardholder_currency")

/**
* The portion of the transaction requested as cash back by the cardholder, and does not include
* any acquirer fees. The amount field includes the purchase amount, the requested cash back
* amount, and any acquirer fees.
* The amount of cash requested by the cardholder, in the cardholder billing currency's smallest
* unit. For purchase-with-cashback transactions this is the cashback portion only; for ATM
* transactions this is the full amount. This amount includes all acquirer fees.
*
* If no cash back was requested, the value of this field will be 0, and the field will always
* be present.
* If no cash was requested, the value of this field will be 0, and the field will always be
* present.
*
* @throws LithicInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
Expand Down Expand Up @@ -957,12 +957,12 @@ private constructor(
}

/**
* The portion of the transaction requested as cash back by the cardholder, and does not
* include any acquirer fees. The amount field includes the purchase amount, the requested
* cash back amount, and any acquirer fees.
* The amount of cash requested by the cardholder, in the cardholder billing currency's
* smallest unit. For purchase-with-cashback transactions this is the cashback portion only;
* for ATM transactions this is the full amount. This amount includes all acquirer fees.
*
* If no cash back was requested, the value of this field will be 0, and the field will
* always be present.
* If no cash was requested, the value of this field will be 0, and the field will always be
* present.
*/
fun cashAmount(cashAmount: Long) = cashAmount(JsonField.of(cashAmount))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -291,12 +291,12 @@ private constructor(
fun cardholderCurrency(): String = cardholderCurrency.getRequired("cardholder_currency")

/**
* The portion of the transaction requested as cash back by the cardholder, and does not include
* any acquirer fees. The amount field includes the purchase amount, the requested cash back
* amount, and any acquirer fees.
* The amount of cash requested by the cardholder, in the cardholder billing currency's smallest
* unit. For purchase-with-cashback transactions this is the cashback portion only; for ATM
* transactions this is the full amount. This amount includes all acquirer fees.
*
* If no cash back was requested, the value of this field will be 0, and the field will always
* be present.
* If no cash was requested, the value of this field will be 0, and the field will always be
* present.
*
* @throws LithicInvalidDataException if the JSON field has an unexpected type or is
* unexpectedly missing or null (e.g. if the server responded with an unexpected value).
Expand Down Expand Up @@ -1045,12 +1045,12 @@ private constructor(
}

/**
* The portion of the transaction requested as cash back by the cardholder, and does not
* include any acquirer fees. The amount field includes the purchase amount, the requested
* cash back amount, and any acquirer fees.
* The amount of cash requested by the cardholder, in the cardholder billing currency's
* smallest unit. For purchase-with-cashback transactions this is the cashback portion only;
* for ATM transactions this is the full amount. This amount includes all acquirer fees.
*
* If no cash back was requested, the value of this field will be 0, and the field will
* always be present.
* If no cash was requested, the value of this field will be 0, and the field will always be
* present.
*/
fun cashAmount(cashAmount: Long) = cashAmount(JsonField.of(cashAmount))

Expand Down
Loading