Skip to content

Commit 7da29e6

Browse files
feat(client): adds endpoint to register an account number on a Financial Account
- Add YEAR to Spend Velocity windows - Add CUSTOMER_RULES to decision_made_by enum for 3DS authentication - Add COLLECTION to financial account types
1 parent b75917a commit 7da29e6

18 files changed

Lines changed: 795 additions & 9 deletions

.stats.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 161
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-89dfdedd460a673d9addf6d763389f59895e986036296d99baf89366ba622034.yml
3-
openapi_spec_hash: b6183fb775fc8bfa3d40ed7130b17976
4-
config_hash: fa3481d1d8505e4157f6cebe93211bd0
1+
configured_endpoints: 162
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-0c08d769e7a549e40ed9ab9b0298c687cc14e6c2fbe4fdd4544467906a05a613.yml
3+
openapi_spec_hash: 2ea548eacd1af68ec19e847250a65b7d
4+
config_hash: 227ad54062905d4ae964b24cef0505b0

lithic-java-core/src/main/kotlin/com/lithic/api/models/FinancialAccount.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1536,6 +1536,8 @@ private constructor(
15361536

15371537
@JvmField val PROGRAM_RECEIVABLES = of("PROGRAM_RECEIVABLES")
15381538

1539+
@JvmField val COLLECTION = of("COLLECTION")
1540+
15391541
@JvmStatic fun of(value: String) = Type(JsonField.of(value))
15401542
}
15411543

@@ -1549,6 +1551,7 @@ private constructor(
15491551
CHARGED_OFF_PRINCIPAL,
15501552
SECURITY,
15511553
PROGRAM_RECEIVABLES,
1554+
COLLECTION,
15521555
}
15531556

15541557
/**
@@ -1569,6 +1572,7 @@ private constructor(
15691572
CHARGED_OFF_PRINCIPAL,
15701573
SECURITY,
15711574
PROGRAM_RECEIVABLES,
1575+
COLLECTION,
15721576
/** An enum member indicating that [Type] was instantiated with an unknown value. */
15731577
_UNKNOWN,
15741578
}
@@ -1590,6 +1594,7 @@ private constructor(
15901594
CHARGED_OFF_PRINCIPAL -> Value.CHARGED_OFF_PRINCIPAL
15911595
SECURITY -> Value.SECURITY
15921596
PROGRAM_RECEIVABLES -> Value.PROGRAM_RECEIVABLES
1597+
COLLECTION -> Value.COLLECTION
15931598
else -> Value._UNKNOWN
15941599
}
15951600

@@ -1612,6 +1617,7 @@ private constructor(
16121617
CHARGED_OFF_PRINCIPAL -> Known.CHARGED_OFF_PRINCIPAL
16131618
SECURITY -> Known.SECURITY
16141619
PROGRAM_RECEIVABLES -> Known.PROGRAM_RECEIVABLES
1620+
COLLECTION -> Known.COLLECTION
16151621
else -> throw LithicInvalidDataException("Unknown Type: $value")
16161622
}
16171623

0 commit comments

Comments
 (0)