Skip to content

Commit 31d72db

Browse files
feat(api): api update
1 parent f2f2a05 commit 31d72db

36 files changed

+4
-5967
lines changed

.stats.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 231
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-2304a782c25d2a6b9586de2f6e2b536b5abbf62735f9c18ed0551607f134b714.yml
3-
openapi_spec_hash: 67d6de7181215abe88dcc3da557a1e0d
4-
config_hash: 5a0bf28bf735edf93f36c6c808711847
1+
configured_endpoints: 227
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-60f9bca532c8805735c227730bbb14858faa64bfd5f83a1a78640f0119a3f99c.yml
3+
openapi_spec_hash: 17ddd87efe6c029f2fa660c8781ccfaf
4+
config_hash: ca52ca9a2968f330339fd50c1a386e05

increase-java-core/src/main/kotlin/com/increase/api/client/IncreaseClient.kt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ import com.increase.api.services.blocking.CheckTransferService
2424
import com.increase.api.services.blocking.DeclinedTransactionService
2525
import com.increase.api.services.blocking.DigitalCardProfileService
2626
import com.increase.api.services.blocking.DigitalWalletTokenService
27-
import com.increase.api.services.blocking.DocumentService
2827
import com.increase.api.services.blocking.EntityService
2928
import com.increase.api.services.blocking.EventService
3029
import com.increase.api.services.blocking.EventSubscriptionService
@@ -175,8 +174,6 @@ interface IncreaseClient {
175174

176175
fun fileLinks(): FileLinkService
177176

178-
fun documents(): DocumentService
179-
180177
fun exports(): ExportService
181178

182179
fun events(): EventService
@@ -315,8 +312,6 @@ interface IncreaseClient {
315312

316313
fun fileLinks(): FileLinkService.WithRawResponse
317314

318-
fun documents(): DocumentService.WithRawResponse
319-
320315
fun exports(): ExportService.WithRawResponse
321316

322317
fun events(): EventService.WithRawResponse

increase-java-core/src/main/kotlin/com/increase/api/client/IncreaseClientAsync.kt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ import com.increase.api.services.async.CheckTransferServiceAsync
2424
import com.increase.api.services.async.DeclinedTransactionServiceAsync
2525
import com.increase.api.services.async.DigitalCardProfileServiceAsync
2626
import com.increase.api.services.async.DigitalWalletTokenServiceAsync
27-
import com.increase.api.services.async.DocumentServiceAsync
2827
import com.increase.api.services.async.EntityServiceAsync
2928
import com.increase.api.services.async.EventServiceAsync
3029
import com.increase.api.services.async.EventSubscriptionServiceAsync
@@ -175,8 +174,6 @@ interface IncreaseClientAsync {
175174

176175
fun fileLinks(): FileLinkServiceAsync
177176

178-
fun documents(): DocumentServiceAsync
179-
180177
fun exports(): ExportServiceAsync
181178

182179
fun events(): EventServiceAsync
@@ -319,8 +316,6 @@ interface IncreaseClientAsync {
319316

320317
fun fileLinks(): FileLinkServiceAsync.WithRawResponse
321318

322-
fun documents(): DocumentServiceAsync.WithRawResponse
323-
324319
fun exports(): ExportServiceAsync.WithRawResponse
325320

326321
fun events(): EventServiceAsync.WithRawResponse

increase-java-core/src/main/kotlin/com/increase/api/client/IncreaseClientAsyncImpl.kt

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ import com.increase.api.services.async.DigitalCardProfileServiceAsync
4646
import com.increase.api.services.async.DigitalCardProfileServiceAsyncImpl
4747
import com.increase.api.services.async.DigitalWalletTokenServiceAsync
4848
import com.increase.api.services.async.DigitalWalletTokenServiceAsyncImpl
49-
import com.increase.api.services.async.DocumentServiceAsync
50-
import com.increase.api.services.async.DocumentServiceAsyncImpl
5149
import com.increase.api.services.async.EntityServiceAsync
5250
import com.increase.api.services.async.EntityServiceAsyncImpl
5351
import com.increase.api.services.async.EventServiceAsync
@@ -288,10 +286,6 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa
288286
FileLinkServiceAsyncImpl(clientOptionsWithUserAgent)
289287
}
290288

291-
private val documents: DocumentServiceAsync by lazy {
292-
DocumentServiceAsyncImpl(clientOptionsWithUserAgent)
293-
}
294-
295289
private val exports: ExportServiceAsync by lazy {
296290
ExportServiceAsyncImpl(clientOptionsWithUserAgent)
297291
}
@@ -454,8 +448,6 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa
454448

455449
override fun fileLinks(): FileLinkServiceAsync = fileLinks
456450

457-
override fun documents(): DocumentServiceAsync = documents
458-
459451
override fun exports(): ExportServiceAsync = exports
460452

461453
override fun events(): EventServiceAsync = events
@@ -658,10 +650,6 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa
658650
FileLinkServiceAsyncImpl.WithRawResponseImpl(clientOptions)
659651
}
660652

661-
private val documents: DocumentServiceAsync.WithRawResponse by lazy {
662-
DocumentServiceAsyncImpl.WithRawResponseImpl(clientOptions)
663-
}
664-
665653
private val exports: ExportServiceAsync.WithRawResponse by lazy {
666654
ExportServiceAsyncImpl.WithRawResponseImpl(clientOptions)
667655
}
@@ -839,8 +827,6 @@ class IncreaseClientAsyncImpl(private val clientOptions: ClientOptions) : Increa
839827

840828
override fun fileLinks(): FileLinkServiceAsync.WithRawResponse = fileLinks
841829

842-
override fun documents(): DocumentServiceAsync.WithRawResponse = documents
843-
844830
override fun exports(): ExportServiceAsync.WithRawResponse = exports
845831

846832
override fun events(): EventServiceAsync.WithRawResponse = events

increase-java-core/src/main/kotlin/com/increase/api/client/IncreaseClientImpl.kt

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ import com.increase.api.services.blocking.DigitalCardProfileService
4646
import com.increase.api.services.blocking.DigitalCardProfileServiceImpl
4747
import com.increase.api.services.blocking.DigitalWalletTokenService
4848
import com.increase.api.services.blocking.DigitalWalletTokenServiceImpl
49-
import com.increase.api.services.blocking.DocumentService
50-
import com.increase.api.services.blocking.DocumentServiceImpl
5149
import com.increase.api.services.blocking.EntityService
5250
import com.increase.api.services.blocking.EntityServiceImpl
5351
import com.increase.api.services.blocking.EventService
@@ -279,10 +277,6 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli
279277
FileLinkServiceImpl(clientOptionsWithUserAgent)
280278
}
281279

282-
private val documents: DocumentService by lazy {
283-
DocumentServiceImpl(clientOptionsWithUserAgent)
284-
}
285-
286280
private val exports: ExportService by lazy { ExportServiceImpl(clientOptionsWithUserAgent) }
287281

288282
private val events: EventService by lazy { EventServiceImpl(clientOptionsWithUserAgent) }
@@ -437,8 +431,6 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli
437431

438432
override fun fileLinks(): FileLinkService = fileLinks
439433

440-
override fun documents(): DocumentService = documents
441-
442434
override fun exports(): ExportService = exports
443435

444436
override fun events(): EventService = events
@@ -638,10 +630,6 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli
638630
FileLinkServiceImpl.WithRawResponseImpl(clientOptions)
639631
}
640632

641-
private val documents: DocumentService.WithRawResponse by lazy {
642-
DocumentServiceImpl.WithRawResponseImpl(clientOptions)
643-
}
644-
645633
private val exports: ExportService.WithRawResponse by lazy {
646634
ExportServiceImpl.WithRawResponseImpl(clientOptions)
647635
}
@@ -816,8 +804,6 @@ class IncreaseClientImpl(private val clientOptions: ClientOptions) : IncreaseCli
816804

817805
override fun fileLinks(): FileLinkService.WithRawResponse = fileLinks
818806

819-
override fun documents(): DocumentService.WithRawResponse = documents
820-
821807
override fun exports(): ExportService.WithRawResponse = exports
822808

823809
override fun events(): EventService.WithRawResponse = events

0 commit comments

Comments
 (0)