Skip to content

Commit 6242df8

Browse files
feat(api)!: add tokenization decisioning endpoints and remove unused funding sources API
feat(api)!: add tokenization decisioning endpoints and remove unused funding sources API
1 parent 3bf2e07 commit 6242df8

43 files changed

Lines changed: 1196 additions & 3143 deletions

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: 64
1+
configured_endpoints: 62

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ interface LithicClient {
1616

1717
fun authStreamEnrollment(): AuthStreamEnrollmentService
1818

19+
fun tokenizationDecisioning(): TokenizationDecisioningService
20+
1921
fun cards(): CardService
2022

2123
fun disputes(): DisputeService
2224

2325
fun events(): EventService
2426

25-
fun fundingSources(): FundingSourceService
26-
2727
fun transactions(): TransactionService
2828

2929
fun webhooks(): WebhookService

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ interface LithicClientAsync {
1717

1818
fun authStreamEnrollment(): AuthStreamEnrollmentServiceAsync
1919

20+
fun tokenizationDecisioning(): TokenizationDecisioningServiceAsync
21+
2022
fun cards(): CardServiceAsync
2123

2224
fun disputes(): DisputeServiceAsync
2325

2426
fun events(): EventServiceAsync
2527

26-
fun fundingSources(): FundingSourceServiceAsync
27-
2828
fun transactions(): TransactionServiceAsync
2929

3030
fun webhooks(): WebhookServiceAsync

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

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@ constructor(
3232
AuthStreamEnrollmentServiceAsyncImpl(clientOptions)
3333
}
3434

35+
private val tokenizationDecisioning: TokenizationDecisioningServiceAsync by lazy {
36+
TokenizationDecisioningServiceAsyncImpl(clientOptions)
37+
}
38+
3539
private val cards: CardServiceAsync by lazy { CardServiceAsyncImpl(clientOptions) }
3640

3741
private val disputes: DisputeServiceAsync by lazy { DisputeServiceAsyncImpl(clientOptions) }
3842

3943
private val events: EventServiceAsync by lazy { EventServiceAsyncImpl(clientOptions) }
4044

41-
private val fundingSources: FundingSourceServiceAsync by lazy {
42-
FundingSourceServiceAsyncImpl(clientOptions)
43-
}
44-
4545
private val transactions: TransactionServiceAsync by lazy {
4646
TransactionServiceAsyncImpl(clientOptions)
4747
}
@@ -56,14 +56,15 @@ constructor(
5656

5757
override fun authStreamEnrollment(): AuthStreamEnrollmentServiceAsync = authStreamEnrollment
5858

59+
override fun tokenizationDecisioning(): TokenizationDecisioningServiceAsync =
60+
tokenizationDecisioning
61+
5962
override fun cards(): CardServiceAsync = cards
6063

6164
override fun disputes(): DisputeServiceAsync = disputes
6265

6366
override fun events(): EventServiceAsync = events
6467

65-
override fun fundingSources(): FundingSourceServiceAsync = fundingSources
66-
6768
override fun transactions(): TransactionServiceAsync = transactions
6869

6970
override fun webhooks(): WebhookServiceAsync = webhooks

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,16 @@ constructor(
3131
AuthStreamEnrollmentServiceImpl(clientOptions)
3232
}
3333

34+
private val tokenizationDecisioning: TokenizationDecisioningService by lazy {
35+
TokenizationDecisioningServiceImpl(clientOptions)
36+
}
37+
3438
private val cards: CardService by lazy { CardServiceImpl(clientOptions) }
3539

3640
private val disputes: DisputeService by lazy { DisputeServiceImpl(clientOptions) }
3741

3842
private val events: EventService by lazy { EventServiceImpl(clientOptions) }
3943

40-
private val fundingSources: FundingSourceService by lazy {
41-
FundingSourceServiceImpl(clientOptions)
42-
}
43-
4444
private val transactions: TransactionService by lazy { TransactionServiceImpl(clientOptions) }
4545

4646
private val webhooks: WebhookService by lazy { WebhookServiceImpl(clientOptions) }
@@ -53,14 +53,14 @@ constructor(
5353

5454
override fun authStreamEnrollment(): AuthStreamEnrollmentService = authStreamEnrollment
5555

56+
override fun tokenizationDecisioning(): TokenizationDecisioningService = tokenizationDecisioning
57+
5658
override fun cards(): CardService = cards
5759

5860
override fun disputes(): DisputeService = disputes
5961

6062
override fun events(): EventService = events
6163

62-
override fun fundingSources(): FundingSourceService = fundingSources
63-
6464
override fun transactions(): TransactionService = transactions
6565

6666
override fun webhooks(): WebhookService = webhooks

0 commit comments

Comments
 (0)