Skip to content

Commit adea050

Browse files
committed
feat(api): add card renew endpoint (#138)
1 parent 877c783 commit adea050

110 files changed

Lines changed: 5323 additions & 4126 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
configured_endpoints: 104
1+
configured_endpoints: 105

lithic-java-core/src/main/kotlin/com/lithic/api/client/LithicClient.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ interface LithicClient {
5858

5959
fun digitalCardArt(): DigitalCardArtService
6060

61-
/** API status check */
61+
/** Status of api */
6262
@JvmOverloads
6363
fun apiStatus(
6464
params: ClientApiStatusParams,

lithic-java-core/src/main/kotlin/com/lithic/api/client/LithicClientAsync.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ interface LithicClientAsync {
5959

6060
fun digitalCardArt(): DigitalCardArtServiceAsync
6161

62-
/** API status check */
62+
/** Status of api */
6363
@JvmOverloads
6464
fun apiStatus(
6565
params: ClientApiStatusParams,

lithic-java-core/src/main/kotlin/com/lithic/api/client/LithicClientAsyncImpl.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ constructor(
146146
private val apiStatusHandler: Handler<ApiStatus> =
147147
jsonHandler<ApiStatus>(clientOptions.jsonMapper).withErrorHandler(errorHandler)
148148

149-
/** API status check */
149+
/** Status of api */
150150
override fun apiStatus(
151151
params: ClientApiStatusParams,
152152
requestOptions: RequestOptions

lithic-java-core/src/main/kotlin/com/lithic/api/client/LithicClientImpl.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ constructor(
138138
private val apiStatusHandler: Handler<ApiStatus> =
139139
jsonHandler<ApiStatus>(clientOptions.jsonMapper).withErrorHandler(errorHandler)
140140

141-
/** API status check */
141+
/** Status of api */
142142
override fun apiStatus(
143143
params: ClientApiStatusParams,
144144
requestOptions: RequestOptions

0 commit comments

Comments
 (0)