Skip to content

Commit 6122ecc

Browse files
feat(api): make filter optional for Spend Velocity Auth Rules
fix(api): rename WIRE_DRAWDOWN_REQUEST to WIRE_INBOUND_DRAWDOWN_REQUEST
1 parent da51092 commit 6122ecc

File tree

5 files changed

+202
-213
lines changed

5 files changed

+202
-213
lines changed

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 176
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-4ecc06edca2cfad4eaf11573611e89823fda5f56370bac5cd02a498a6b277d09.yml
3-
openapi_spec_hash: 8f4a30bec4348cbde85b1e65bef9189a
4-
config_hash: 751a4cc75aa0276b40cc2c7879b24dea
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-c06c4d54858775fef1de57e33d471e997cb28fe0c925fd7b08ba45fdd335e938.yml
3+
openapi_spec_hash: 23745357b2171bcdfb5d30bfef1df48d
4+
config_hash: 9dddee5f7af579864599849cb28a0770

README.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,6 @@ The Lithic Java SDK provides convenient access to the [Lithic REST API](https://
1111

1212
The Lithic Java SDK is similar to the Lithic Kotlin SDK but with minor differences that make it more ergonomic for use in Java, such as `Optional` instead of nullable values, `Stream` instead of `Sequence`, and `CompletableFuture` instead of suspend functions.
1313

14-
## MCP Server
15-
16-
Use the Lithic MCP Server to enable AI assistants to interact with this API, allowing them to explore endpoints, make test requests, and use documentation to help integrate this SDK into your application.
17-
18-
[![Add to Cursor](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/en-US/install-mcp?name=lithic-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsImxpdGhpYy1tY3AiXX0)
19-
[![Install in VS Code](https://img.shields.io/badge/_-Add_to_VS_Code-blue?style=for-the-badge&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCA0MCA0MCI+PHBhdGggZmlsbD0iI0VFRSIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMzAuMjM1IDM5Ljg4NGEyLjQ5MSAyLjQ5MSAwIDAgMS0xLjc4MS0uNzNMMTIuNyAyNC43OGwtMy40NiAyLjYyNC0zLjQwNiAyLjU4MmExLjY2NSAxLjY2NSAwIDAgMS0xLjA4Mi4zMzggMS42NjQgMS42NjQgMCAwIDEtMS4wNDYtLjQzMWwtMi4yLTJhMS42NjYgMS42NjYgMCAwIDEgMC0yLjQ2M0w3LjQ1OCAyMCA0LjY3IDE3LjQ1MyAxLjUwNyAxNC41N2ExLjY2NSAxLjY2NSAwIDAgMSAwLTIuNDYzbDIuMi0yYTEuNjY1IDEuNjY1IDAgMCAxIDIuMTMtLjA5N2w2Ljg2MyA1LjIwOUwyOC40NTIuODQ0YTIuNDg4IDIuNDg4IDAgMCAxIDEuODQxLS43MjljLjM1MS4wMDkuNjk5LjA5MSAxLjAxOS4yNDVsOC4yMzYgMy45NjFhMi41IDIuNSAwIDAgMSAxLjQxNSAyLjI1M3YuMDk5LS4wNDVWMzMuMzd2LS4wNDUuMDk1YTIuNTAxIDIuNTAxIDAgMCAxLTEuNDE2IDIuMjU3bC04LjIzNSAzLjk2MWEyLjQ5MiAyLjQ5MiAwIDAgMS0xLjA3Ny4yNDZabS43MTYtMjguOTQ3LTExLjk0OCA5LjA2MiAxMS45NTIgOS4wNjUtLjAwNC0xOC4xMjdaIi8+PC9zdmc+)](https://vscode.stainless.com/mcp/%7B%22name%22%3A%22lithic-mcp%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22lithic-mcp%22%5D%7D)
20-
21-
> Note: You may need to set environment variables in your MCP client.
22-
2314
<!-- x-release-please-start-version -->
2415

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

lithic-java-core/src/main/kotlin/com/lithic/api/models/Payment.kt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4769,7 +4769,7 @@ private constructor(
47694769

47704770
@JvmField val WIRE_OUTBOUND_ADMIN = of("WIRE_OUTBOUND_ADMIN")
47714771

4772-
@JvmField val WIRE_DRAWDOWN_REQUEST = of("WIRE_DRAWDOWN_REQUEST")
4772+
@JvmField val WIRE_INBOUND_DRAWDOWN_REQUEST = of("WIRE_INBOUND_DRAWDOWN_REQUEST")
47734773

47744774
@JvmStatic fun of(value: String) = TransferType(JsonField.of(value))
47754775
}
@@ -4784,7 +4784,7 @@ private constructor(
47844784
WIRE_INBOUND_ADMIN,
47854785
WIRE_OUTBOUND_PAYMENT,
47864786
WIRE_OUTBOUND_ADMIN,
4787-
WIRE_DRAWDOWN_REQUEST,
4787+
WIRE_INBOUND_DRAWDOWN_REQUEST,
47884788
}
47894789

47904790
/**
@@ -4805,7 +4805,7 @@ private constructor(
48054805
WIRE_INBOUND_ADMIN,
48064806
WIRE_OUTBOUND_PAYMENT,
48074807
WIRE_OUTBOUND_ADMIN,
4808-
WIRE_DRAWDOWN_REQUEST,
4808+
WIRE_INBOUND_DRAWDOWN_REQUEST,
48094809
/**
48104810
* An enum member indicating that [TransferType] was instantiated with an unknown value.
48114811
*/
@@ -4829,7 +4829,7 @@ private constructor(
48294829
WIRE_INBOUND_ADMIN -> Value.WIRE_INBOUND_ADMIN
48304830
WIRE_OUTBOUND_PAYMENT -> Value.WIRE_OUTBOUND_PAYMENT
48314831
WIRE_OUTBOUND_ADMIN -> Value.WIRE_OUTBOUND_ADMIN
4832-
WIRE_DRAWDOWN_REQUEST -> Value.WIRE_DRAWDOWN_REQUEST
4832+
WIRE_INBOUND_DRAWDOWN_REQUEST -> Value.WIRE_INBOUND_DRAWDOWN_REQUEST
48334833
else -> Value._UNKNOWN
48344834
}
48354835

@@ -4852,7 +4852,7 @@ private constructor(
48524852
WIRE_INBOUND_ADMIN -> Known.WIRE_INBOUND_ADMIN
48534853
WIRE_OUTBOUND_PAYMENT -> Known.WIRE_OUTBOUND_PAYMENT
48544854
WIRE_OUTBOUND_ADMIN -> Known.WIRE_OUTBOUND_ADMIN
4855-
WIRE_DRAWDOWN_REQUEST -> Known.WIRE_DRAWDOWN_REQUEST
4855+
WIRE_INBOUND_DRAWDOWN_REQUEST -> Known.WIRE_INBOUND_DRAWDOWN_REQUEST
48564856
else -> throw LithicInvalidDataException("Unknown TransferType: $value")
48574857
}
48584858

0 commit comments

Comments
 (0)