Skip to content

Commit 89203e3

Browse files
feat(api): api update (#756)
1 parent e7a001f commit 89203e3

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 201
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-28ffd3b61bd618b2a60b46dd2afb8f52370c43e02cab2e9106465c3cffafb95a.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-ce741f23d99b551b38099da78d730af0cf9019e3b51e61bc988a5e5979c26143.yml

increase-java-core/src/main/kotlin/com/increase/api/models/Account.kt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -548,6 +548,9 @@ private constructor(
548548
/** Blue Ridge Bank, N.A. */
549549
@JvmField val BLUE_RIDGE_BANK = of("blue_ridge_bank")
550550

551+
/** Core Bank */
552+
@JvmField val CORE_BANK = of("core_bank")
553+
551554
/** First Internet Bank of Indiana */
552555
@JvmField val FIRST_INTERNET_BANK = of("first_internet_bank")
553556

@@ -561,6 +564,8 @@ private constructor(
561564
enum class Known {
562565
/** Blue Ridge Bank, N.A. */
563566
BLUE_RIDGE_BANK,
567+
/** Core Bank */
568+
CORE_BANK,
564569
/** First Internet Bank of Indiana */
565570
FIRST_INTERNET_BANK,
566571
/** Grasshopper Bank */
@@ -579,6 +584,8 @@ private constructor(
579584
enum class Value {
580585
/** Blue Ridge Bank, N.A. */
581586
BLUE_RIDGE_BANK,
587+
/** Core Bank */
588+
CORE_BANK,
582589
/** First Internet Bank of Indiana */
583590
FIRST_INTERNET_BANK,
584591
/** Grasshopper Bank */
@@ -597,6 +604,7 @@ private constructor(
597604
fun value(): Value =
598605
when (this) {
599606
BLUE_RIDGE_BANK -> Value.BLUE_RIDGE_BANK
607+
CORE_BANK -> Value.CORE_BANK
600608
FIRST_INTERNET_BANK -> Value.FIRST_INTERNET_BANK
601609
GRASSHOPPER_BANK -> Value.GRASSHOPPER_BANK
602610
else -> Value._UNKNOWN
@@ -614,6 +622,7 @@ private constructor(
614622
fun known(): Known =
615623
when (this) {
616624
BLUE_RIDGE_BANK -> Known.BLUE_RIDGE_BANK
625+
CORE_BANK -> Known.CORE_BANK
617626
FIRST_INTERNET_BANK -> Known.FIRST_INTERNET_BANK
618627
GRASSHOPPER_BANK -> Known.GRASSHOPPER_BANK
619628
else -> throw IncreaseInvalidDataException("Unknown Bank: $value")

increase-java-core/src/main/kotlin/com/increase/api/models/Program.kt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,9 @@ private constructor(
344344
/** Blue Ridge Bank, N.A. */
345345
@JvmField val BLUE_RIDGE_BANK = of("blue_ridge_bank")
346346

347+
/** Core Bank */
348+
@JvmField val CORE_BANK = of("core_bank")
349+
347350
/** First Internet Bank of Indiana */
348351
@JvmField val FIRST_INTERNET_BANK = of("first_internet_bank")
349352

@@ -357,6 +360,8 @@ private constructor(
357360
enum class Known {
358361
/** Blue Ridge Bank, N.A. */
359362
BLUE_RIDGE_BANK,
363+
/** Core Bank */
364+
CORE_BANK,
360365
/** First Internet Bank of Indiana */
361366
FIRST_INTERNET_BANK,
362367
/** Grasshopper Bank */
@@ -375,6 +380,8 @@ private constructor(
375380
enum class Value {
376381
/** Blue Ridge Bank, N.A. */
377382
BLUE_RIDGE_BANK,
383+
/** Core Bank */
384+
CORE_BANK,
378385
/** First Internet Bank of Indiana */
379386
FIRST_INTERNET_BANK,
380387
/** Grasshopper Bank */
@@ -393,6 +400,7 @@ private constructor(
393400
fun value(): Value =
394401
when (this) {
395402
BLUE_RIDGE_BANK -> Value.BLUE_RIDGE_BANK
403+
CORE_BANK -> Value.CORE_BANK
396404
FIRST_INTERNET_BANK -> Value.FIRST_INTERNET_BANK
397405
GRASSHOPPER_BANK -> Value.GRASSHOPPER_BANK
398406
else -> Value._UNKNOWN
@@ -410,6 +418,7 @@ private constructor(
410418
fun known(): Known =
411419
when (this) {
412420
BLUE_RIDGE_BANK -> Known.BLUE_RIDGE_BANK
421+
CORE_BANK -> Known.CORE_BANK
413422
FIRST_INTERNET_BANK -> Known.FIRST_INTERNET_BANK
414423
GRASSHOPPER_BANK -> Known.GRASSHOPPER_BANK
415424
else -> throw IncreaseInvalidDataException("Unknown Bank: $value")

0 commit comments

Comments
 (0)