Skip to content

Commit

Permalink
feat(api): add card renew endpoint (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-bot committed Jan 9, 2024
1 parent 877c783 commit adea050
Show file tree
Hide file tree
Showing 110 changed files with 5,323 additions and 4,126 deletions.
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
configured_endpoints: 104
configured_endpoints: 105
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ interface LithicClient {

fun digitalCardArt(): DigitalCardArtService

/** API status check */
/** Status of api */
@JvmOverloads
fun apiStatus(
params: ClientApiStatusParams,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ interface LithicClientAsync {

fun digitalCardArt(): DigitalCardArtServiceAsync

/** API status check */
/** Status of api */
@JvmOverloads
fun apiStatus(
params: ClientApiStatusParams,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ constructor(
private val apiStatusHandler: Handler<ApiStatus> =
jsonHandler<ApiStatus>(clientOptions.jsonMapper).withErrorHandler(errorHandler)

/** API status check */
/** Status of api */
override fun apiStatus(
params: ClientApiStatusParams,
requestOptions: RequestOptions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ constructor(
private val apiStatusHandler: Handler<ApiStatus> =
jsonHandler<ApiStatus>(clientOptions.jsonMapper).withErrorHandler(errorHandler)

/** API status check */
/** Status of api */
override fun apiStatus(
params: ClientApiStatusParams,
requestOptions: RequestOptions
Expand Down
Loading

0 comments on commit adea050

Please sign in to comment.