Skip to content

Commit bb93367

Browse files
fix(api): [breaking] unify webhook schemas for digital_wallet.tokenization_approval_request webhooks
1 parent 3d97da0 commit bb93367

55 files changed

Lines changed: 1048 additions & 10069 deletions

File tree

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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 190
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-d67717d651ba08e30f82e42f4468cfb46f87470f970ae1e19a7c0dc16c275a87.yml
3-
openapi_spec_hash: 969a03848267a110e83a696547b7f2a8
4-
config_hash: 2e69ca9699ec18d9d7337604821d3091
1+
configured_endpoints: 189
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-c37843d1525e87f47a292bf11a6fdcc277157556da21c923cc1b4a4473147ef0.yml
3+
openapi_spec_hash: 29a8c4637c8a00339aa0095a929a6096
4+
config_hash: 8799cfd589579f105ef8696a6d664c71

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

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

389389
@JvmField val ACH = of("ACH")
390390

391-
@JvmField val WIRE = of("WIRE")
392-
393391
@JvmField val BALANCE_OR_FUNDING = of("BALANCE_OR_FUNDING")
394392

395393
@JvmField val FEE = of("FEE")
@@ -436,7 +434,6 @@ private constructor(
436434
/** An enum containing [TransactionCategory]'s known values. */
437435
enum class Known {
438436
ACH,
439-
WIRE,
440437
BALANCE_OR_FUNDING,
441438
FEE,
442439
REWARD,
@@ -470,7 +467,6 @@ private constructor(
470467
*/
471468
enum class Value {
472469
ACH,
473-
WIRE,
474470
BALANCE_OR_FUNDING,
475471
FEE,
476472
REWARD,
@@ -508,7 +504,6 @@ private constructor(
508504
fun value(): Value =
509505
when (this) {
510506
ACH -> Value.ACH
511-
WIRE -> Value.WIRE
512507
BALANCE_OR_FUNDING -> Value.BALANCE_OR_FUNDING
513508
FEE -> Value.FEE
514509
REWARD -> Value.REWARD
@@ -544,7 +539,6 @@ private constructor(
544539
fun known(): Known =
545540
when (this) {
546541
ACH -> Known.ACH
547-
WIRE -> Known.WIRE
548542
BALANCE_OR_FUNDING -> Known.BALANCE_OR_FUNDING
549543
FEE -> Known.FEE
550544
REWARD -> Known.REWARD

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

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

10651065
@JvmField val ACH = of("ACH")
10661066

1067-
@JvmField val WIRE = of("WIRE")
1068-
10691067
@JvmField val BALANCE_OR_FUNDING = of("BALANCE_OR_FUNDING")
10701068

10711069
@JvmField val FEE = of("FEE")
@@ -1112,7 +1110,6 @@ private constructor(
11121110
/** An enum containing [TransactionCategory]'s known values. */
11131111
enum class Known {
11141112
ACH,
1115-
WIRE,
11161113
BALANCE_OR_FUNDING,
11171114
FEE,
11181115
REWARD,
@@ -1148,7 +1145,6 @@ private constructor(
11481145
*/
11491146
enum class Value {
11501147
ACH,
1151-
WIRE,
11521148
BALANCE_OR_FUNDING,
11531149
FEE,
11541150
REWARD,
@@ -1186,7 +1182,6 @@ private constructor(
11861182
fun value(): Value =
11871183
when (this) {
11881184
ACH -> Value.ACH
1189-
WIRE -> Value.WIRE
11901185
BALANCE_OR_FUNDING -> Value.BALANCE_OR_FUNDING
11911186
FEE -> Value.FEE
11921187
REWARD -> Value.REWARD
@@ -1222,7 +1217,6 @@ private constructor(
12221217
fun known(): Known =
12231218
when (this) {
12241219
ACH -> Known.ACH
1225-
WIRE -> Known.WIRE
12261220
BALANCE_OR_FUNDING -> Known.BALANCE_OR_FUNDING
12271221
FEE -> Known.FEE
12281222
REWARD -> Known.REWARD

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

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

10871087
@JvmField val ACH = of("ACH")
10881088

1089-
@JvmField val WIRE = of("WIRE")
1090-
10911089
@JvmField val BALANCE_OR_FUNDING = of("BALANCE_OR_FUNDING")
10921090

10931091
@JvmField val FEE = of("FEE")
@@ -1134,7 +1132,6 @@ private constructor(
11341132
/** An enum containing [TransactionCategory]'s known values. */
11351133
enum class Known {
11361134
ACH,
1137-
WIRE,
11381135
BALANCE_OR_FUNDING,
11391136
FEE,
11401137
REWARD,
@@ -1170,7 +1167,6 @@ private constructor(
11701167
*/
11711168
enum class Value {
11721169
ACH,
1173-
WIRE,
11741170
BALANCE_OR_FUNDING,
11751171
FEE,
11761172
REWARD,
@@ -1208,7 +1204,6 @@ private constructor(
12081204
fun value(): Value =
12091205
when (this) {
12101206
ACH -> Value.ACH
1211-
WIRE -> Value.WIRE
12121207
BALANCE_OR_FUNDING -> Value.BALANCE_OR_FUNDING
12131208
FEE -> Value.FEE
12141209
REWARD -> Value.REWARD
@@ -1244,7 +1239,6 @@ private constructor(
12441239
fun known(): Known =
12451240
when (this) {
12461241
ACH -> Known.ACH
1247-
WIRE -> Known.WIRE
12481242
BALANCE_OR_FUNDING -> Known.BALANCE_OR_FUNDING
12491243
FEE -> Known.FEE
12501244
REWARD -> Known.REWARD

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

Lines changed: 0 additions & 197 deletions
This file was deleted.

0 commit comments

Comments
 (0)