lithic 0.11.0 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/README.md +1 -1
- data/lib/lithic/models/auth_rules/conditional_authorization_action_parameters.rb +143 -1
- data/lib/lithic/models/auth_rules/rule_feature.rb +47 -1
- data/lib/lithic/models/auth_rules/typescript_code_parameters.rb +2 -2
- data/lib/lithic/models/card_authorization_challenge_response_webhook_event.rb +103 -0
- data/lib/lithic/models/event.rb +5 -0
- data/lib/lithic/models/event_list_params.rb +3 -0
- data/lib/lithic/models/event_subscription.rb +3 -0
- data/lib/lithic/models/events/subscription_create_params.rb +3 -0
- data/lib/lithic/models/events/subscription_send_simulated_example_params.rb +1 -0
- data/lib/lithic/models/events/subscription_update_params.rb +3 -0
- data/lib/lithic/models/external_bank_account_set_verification_method_params.rb +55 -0
- data/lib/lithic/models/parsed_webhook_event.rb +3 -1
- data/lib/lithic/models.rb +6 -0
- data/lib/lithic/resources/external_bank_accounts.rb +31 -0
- data/lib/lithic/resources/webhooks.rb +1 -1
- data/lib/lithic/version.rb +1 -1
- data/lib/lithic.rb +2 -0
- data/rbi/lithic/models/auth_rules/conditional_authorization_action_parameters.rbi +337 -3
- data/rbi/lithic/models/auth_rules/rule_feature.rbi +104 -1
- data/rbi/lithic/models/auth_rules/typescript_code_parameters.rbi +6 -3
- data/rbi/lithic/models/card_authorization_challenge_response_webhook_event.rbi +175 -0
- data/rbi/lithic/models/event.rbi +11 -0
- data/rbi/lithic/models/event_list_params.rbi +7 -0
- data/rbi/lithic/models/event_subscription.rbi +7 -0
- data/rbi/lithic/models/events/subscription_create_params.rbi +7 -0
- data/rbi/lithic/models/events/subscription_send_simulated_example_params.rbi +5 -0
- data/rbi/lithic/models/events/subscription_update_params.rbi +7 -0
- data/rbi/lithic/models/external_bank_account_set_verification_method_params.rbi +111 -0
- data/rbi/lithic/models/parsed_webhook_event.rbi +1 -0
- data/rbi/lithic/models.rbi +6 -0
- data/rbi/lithic/resources/external_bank_accounts.rbi +22 -0
- data/rbi/lithic/resources/webhooks.rbi +1 -0
- data/sig/lithic/models/auth_rules/conditional_authorization_action_parameters.rbs +87 -3
- data/sig/lithic/models/auth_rules/rule_feature.rbs +42 -0
- data/sig/lithic/models/card_authorization_challenge_response_webhook_event.rbs +76 -0
- data/sig/lithic/models/event.rbs +2 -0
- data/sig/lithic/models/event_list_params.rbs +2 -0
- data/sig/lithic/models/event_subscription.rbs +2 -0
- data/sig/lithic/models/events/subscription_create_params.rbs +2 -0
- data/sig/lithic/models/events/subscription_send_simulated_example_params.rbs +2 -0
- data/sig/lithic/models/events/subscription_update_params.rbs +2 -0
- data/sig/lithic/models/external_bank_account_set_verification_method_params.rbs +51 -0
- data/sig/lithic/models/parsed_webhook_event.rbs +1 -0
- data/sig/lithic/models.rbs +4 -0
- data/sig/lithic/resources/external_bank_accounts.rbs +7 -0
- data/sig/lithic/resources/webhooks.rbs +1 -0
- metadata +8 -2
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
module Lithic
|
|
2
|
+
module Models
|
|
3
|
+
type card_authorization_challenge_response_webhook_event =
|
|
4
|
+
{
|
|
5
|
+
card_token: String?,
|
|
6
|
+
challenge_method: Lithic::Models::CardAuthorizationChallengeResponseWebhookEvent::challenge_method,
|
|
7
|
+
completed: Time?,
|
|
8
|
+
created: Time,
|
|
9
|
+
event_token: String,
|
|
10
|
+
event_type: :"card_authorization.challenge_response",
|
|
11
|
+
response: Lithic::Models::CardAuthorizationChallengeResponseWebhookEvent::response,
|
|
12
|
+
transaction_token: String?
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
class CardAuthorizationChallengeResponseWebhookEvent < Lithic::Internal::Type::BaseModel
|
|
16
|
+
attr_accessor card_token: String?
|
|
17
|
+
|
|
18
|
+
attr_accessor challenge_method: Lithic::Models::CardAuthorizationChallengeResponseWebhookEvent::challenge_method
|
|
19
|
+
|
|
20
|
+
attr_accessor completed: Time?
|
|
21
|
+
|
|
22
|
+
attr_accessor created: Time
|
|
23
|
+
|
|
24
|
+
attr_accessor event_token: String
|
|
25
|
+
|
|
26
|
+
attr_accessor event_type: :"card_authorization.challenge_response"
|
|
27
|
+
|
|
28
|
+
attr_accessor response: Lithic::Models::CardAuthorizationChallengeResponseWebhookEvent::response
|
|
29
|
+
|
|
30
|
+
attr_accessor transaction_token: String?
|
|
31
|
+
|
|
32
|
+
def initialize: (
|
|
33
|
+
card_token: String?,
|
|
34
|
+
challenge_method: Lithic::Models::CardAuthorizationChallengeResponseWebhookEvent::challenge_method,
|
|
35
|
+
completed: Time?,
|
|
36
|
+
created: Time,
|
|
37
|
+
event_token: String,
|
|
38
|
+
response: Lithic::Models::CardAuthorizationChallengeResponseWebhookEvent::response,
|
|
39
|
+
transaction_token: String?,
|
|
40
|
+
?event_type: :"card_authorization.challenge_response"
|
|
41
|
+
) -> void
|
|
42
|
+
|
|
43
|
+
def to_hash: -> {
|
|
44
|
+
card_token: String?,
|
|
45
|
+
challenge_method: Lithic::Models::CardAuthorizationChallengeResponseWebhookEvent::challenge_method,
|
|
46
|
+
completed: Time?,
|
|
47
|
+
created: Time,
|
|
48
|
+
event_token: String,
|
|
49
|
+
event_type: :"card_authorization.challenge_response",
|
|
50
|
+
response: Lithic::Models::CardAuthorizationChallengeResponseWebhookEvent::response,
|
|
51
|
+
transaction_token: String?
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
type challenge_method = :SMS
|
|
55
|
+
|
|
56
|
+
module ChallengeMethod
|
|
57
|
+
extend Lithic::Internal::Type::Enum
|
|
58
|
+
|
|
59
|
+
SMS: :SMS
|
|
60
|
+
|
|
61
|
+
def self?.values: -> ::Array[Lithic::Models::CardAuthorizationChallengeResponseWebhookEvent::challenge_method]
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
type response = :APPROVE | :DECLINE
|
|
65
|
+
|
|
66
|
+
module Response
|
|
67
|
+
extend Lithic::Internal::Type::Enum
|
|
68
|
+
|
|
69
|
+
APPROVE: :APPROVE
|
|
70
|
+
DECLINE: :DECLINE
|
|
71
|
+
|
|
72
|
+
def self?.values: -> ::Array[Lithic::Models::CardAuthorizationChallengeResponseWebhookEvent::response]
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
end
|
data/sig/lithic/models/event.rbs
CHANGED
|
@@ -40,6 +40,7 @@ module Lithic
|
|
|
40
40
|
| :"balance.updated"
|
|
41
41
|
| :"book_transfer_transaction.created"
|
|
42
42
|
| :"book_transfer_transaction.updated"
|
|
43
|
+
| :"card_authorization.challenge_response"
|
|
43
44
|
| :"card_transaction.enhanced_data.created"
|
|
44
45
|
| :"card_transaction.enhanced_data.updated"
|
|
45
46
|
| :"card_transaction.updated"
|
|
@@ -96,6 +97,7 @@ module Lithic
|
|
|
96
97
|
BALANCE_UPDATED: :"balance.updated"
|
|
97
98
|
BOOK_TRANSFER_TRANSACTION_CREATED: :"book_transfer_transaction.created"
|
|
98
99
|
BOOK_TRANSFER_TRANSACTION_UPDATED: :"book_transfer_transaction.updated"
|
|
100
|
+
CARD_AUTHORIZATION_CHALLENGE_RESPONSE: :"card_authorization.challenge_response"
|
|
99
101
|
CARD_TRANSACTION_ENHANCED_DATA_CREATED: :"card_transaction.enhanced_data.created"
|
|
100
102
|
CARD_TRANSACTION_ENHANCED_DATA_UPDATED: :"card_transaction.enhanced_data.updated"
|
|
101
103
|
CARD_TRANSACTION_UPDATED: :"card_transaction.updated"
|
|
@@ -77,6 +77,7 @@ module Lithic
|
|
|
77
77
|
| :"balance.updated"
|
|
78
78
|
| :"book_transfer_transaction.created"
|
|
79
79
|
| :"book_transfer_transaction.updated"
|
|
80
|
+
| :"card_authorization.challenge_response"
|
|
80
81
|
| :"card_transaction.enhanced_data.created"
|
|
81
82
|
| :"card_transaction.enhanced_data.updated"
|
|
82
83
|
| :"card_transaction.updated"
|
|
@@ -133,6 +134,7 @@ module Lithic
|
|
|
133
134
|
BALANCE_UPDATED: :"balance.updated"
|
|
134
135
|
BOOK_TRANSFER_TRANSACTION_CREATED: :"book_transfer_transaction.created"
|
|
135
136
|
BOOK_TRANSFER_TRANSACTION_UPDATED: :"book_transfer_transaction.updated"
|
|
137
|
+
CARD_AUTHORIZATION_CHALLENGE_RESPONSE: :"card_authorization.challenge_response"
|
|
136
138
|
CARD_TRANSACTION_ENHANCED_DATA_CREATED: :"card_transaction.enhanced_data.created"
|
|
137
139
|
CARD_TRANSACTION_ENHANCED_DATA_UPDATED: :"card_transaction.enhanced_data.updated"
|
|
138
140
|
CARD_TRANSACTION_UPDATED: :"card_transaction.updated"
|
|
@@ -45,6 +45,7 @@ module Lithic
|
|
|
45
45
|
| :"balance.updated"
|
|
46
46
|
| :"book_transfer_transaction.created"
|
|
47
47
|
| :"book_transfer_transaction.updated"
|
|
48
|
+
| :"card_authorization.challenge_response"
|
|
48
49
|
| :"card_transaction.enhanced_data.created"
|
|
49
50
|
| :"card_transaction.enhanced_data.updated"
|
|
50
51
|
| :"card_transaction.updated"
|
|
@@ -101,6 +102,7 @@ module Lithic
|
|
|
101
102
|
BALANCE_UPDATED: :"balance.updated"
|
|
102
103
|
BOOK_TRANSFER_TRANSACTION_CREATED: :"book_transfer_transaction.created"
|
|
103
104
|
BOOK_TRANSFER_TRANSACTION_UPDATED: :"book_transfer_transaction.updated"
|
|
105
|
+
CARD_AUTHORIZATION_CHALLENGE_RESPONSE: :"card_authorization.challenge_response"
|
|
104
106
|
CARD_TRANSACTION_ENHANCED_DATA_CREATED: :"card_transaction.enhanced_data.created"
|
|
105
107
|
CARD_TRANSACTION_ENHANCED_DATA_UPDATED: :"card_transaction.enhanced_data.updated"
|
|
106
108
|
CARD_TRANSACTION_UPDATED: :"card_transaction.updated"
|
|
@@ -55,6 +55,7 @@ module Lithic
|
|
|
55
55
|
| :"balance.updated"
|
|
56
56
|
| :"book_transfer_transaction.created"
|
|
57
57
|
| :"book_transfer_transaction.updated"
|
|
58
|
+
| :"card_authorization.challenge_response"
|
|
58
59
|
| :"card_transaction.enhanced_data.created"
|
|
59
60
|
| :"card_transaction.enhanced_data.updated"
|
|
60
61
|
| :"card_transaction.updated"
|
|
@@ -111,6 +112,7 @@ module Lithic
|
|
|
111
112
|
BALANCE_UPDATED: :"balance.updated"
|
|
112
113
|
BOOK_TRANSFER_TRANSACTION_CREATED: :"book_transfer_transaction.created"
|
|
113
114
|
BOOK_TRANSFER_TRANSACTION_UPDATED: :"book_transfer_transaction.updated"
|
|
115
|
+
CARD_AUTHORIZATION_CHALLENGE_RESPONSE: :"card_authorization.challenge_response"
|
|
114
116
|
CARD_TRANSACTION_ENHANCED_DATA_CREATED: :"card_transaction.enhanced_data.created"
|
|
115
117
|
CARD_TRANSACTION_ENHANCED_DATA_UPDATED: :"card_transaction.enhanced_data.updated"
|
|
116
118
|
CARD_TRANSACTION_UPDATED: :"card_transaction.updated"
|
|
@@ -41,6 +41,7 @@ module Lithic
|
|
|
41
41
|
| :"balance.updated"
|
|
42
42
|
| :"book_transfer_transaction.created"
|
|
43
43
|
| :"book_transfer_transaction.updated"
|
|
44
|
+
| :"card_authorization.challenge_response"
|
|
44
45
|
| :"card_transaction.enhanced_data.created"
|
|
45
46
|
| :"card_transaction.enhanced_data.updated"
|
|
46
47
|
| :"card_transaction.updated"
|
|
@@ -97,6 +98,7 @@ module Lithic
|
|
|
97
98
|
BALANCE_UPDATED: :"balance.updated"
|
|
98
99
|
BOOK_TRANSFER_TRANSACTION_CREATED: :"book_transfer_transaction.created"
|
|
99
100
|
BOOK_TRANSFER_TRANSACTION_UPDATED: :"book_transfer_transaction.updated"
|
|
101
|
+
CARD_AUTHORIZATION_CHALLENGE_RESPONSE: :"card_authorization.challenge_response"
|
|
100
102
|
CARD_TRANSACTION_ENHANCED_DATA_CREATED: :"card_transaction.enhanced_data.created"
|
|
101
103
|
CARD_TRANSACTION_ENHANCED_DATA_UPDATED: :"card_transaction.enhanced_data.updated"
|
|
102
104
|
CARD_TRANSACTION_UPDATED: :"card_transaction.updated"
|
|
@@ -60,6 +60,7 @@ module Lithic
|
|
|
60
60
|
| :"balance.updated"
|
|
61
61
|
| :"book_transfer_transaction.created"
|
|
62
62
|
| :"book_transfer_transaction.updated"
|
|
63
|
+
| :"card_authorization.challenge_response"
|
|
63
64
|
| :"card_transaction.enhanced_data.created"
|
|
64
65
|
| :"card_transaction.enhanced_data.updated"
|
|
65
66
|
| :"card_transaction.updated"
|
|
@@ -116,6 +117,7 @@ module Lithic
|
|
|
116
117
|
BALANCE_UPDATED: :"balance.updated"
|
|
117
118
|
BOOK_TRANSFER_TRANSACTION_CREATED: :"book_transfer_transaction.created"
|
|
118
119
|
BOOK_TRANSFER_TRANSACTION_UPDATED: :"book_transfer_transaction.updated"
|
|
120
|
+
CARD_AUTHORIZATION_CHALLENGE_RESPONSE: :"card_authorization.challenge_response"
|
|
119
121
|
CARD_TRANSACTION_ENHANCED_DATA_CREATED: :"card_transaction.enhanced_data.created"
|
|
120
122
|
CARD_TRANSACTION_ENHANCED_DATA_UPDATED: :"card_transaction.enhanced_data.updated"
|
|
121
123
|
CARD_TRANSACTION_UPDATED: :"card_transaction.updated"
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
module Lithic
|
|
2
|
+
module Models
|
|
3
|
+
type external_bank_account_set_verification_method_params =
|
|
4
|
+
{
|
|
5
|
+
external_bank_account_token: String,
|
|
6
|
+
verification_method: Lithic::Models::ExternalBankAccountSetVerificationMethodParams::verification_method,
|
|
7
|
+
financial_account_token: String
|
|
8
|
+
}
|
|
9
|
+
& Lithic::Internal::Type::request_parameters
|
|
10
|
+
|
|
11
|
+
class ExternalBankAccountSetVerificationMethodParams < Lithic::Internal::Type::BaseModel
|
|
12
|
+
extend Lithic::Internal::Type::RequestParameters::Converter
|
|
13
|
+
include Lithic::Internal::Type::RequestParameters
|
|
14
|
+
|
|
15
|
+
attr_accessor external_bank_account_token: String
|
|
16
|
+
|
|
17
|
+
attr_accessor verification_method: Lithic::Models::ExternalBankAccountSetVerificationMethodParams::verification_method
|
|
18
|
+
|
|
19
|
+
attr_reader financial_account_token: String?
|
|
20
|
+
|
|
21
|
+
def financial_account_token=: (String) -> String
|
|
22
|
+
|
|
23
|
+
def initialize: (
|
|
24
|
+
external_bank_account_token: String,
|
|
25
|
+
verification_method: Lithic::Models::ExternalBankAccountSetVerificationMethodParams::verification_method,
|
|
26
|
+
?financial_account_token: String,
|
|
27
|
+
?request_options: Lithic::request_opts
|
|
28
|
+
) -> void
|
|
29
|
+
|
|
30
|
+
def to_hash: -> {
|
|
31
|
+
external_bank_account_token: String,
|
|
32
|
+
verification_method: Lithic::Models::ExternalBankAccountSetVerificationMethodParams::verification_method,
|
|
33
|
+
financial_account_token: String,
|
|
34
|
+
request_options: Lithic::RequestOptions
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
type verification_method =
|
|
38
|
+
:MICRO_DEPOSIT | :PRENOTE | :EXTERNALLY_VERIFIED
|
|
39
|
+
|
|
40
|
+
module VerificationMethod
|
|
41
|
+
extend Lithic::Internal::Type::Enum
|
|
42
|
+
|
|
43
|
+
MICRO_DEPOSIT: :MICRO_DEPOSIT
|
|
44
|
+
PRENOTE: :PRENOTE
|
|
45
|
+
EXTERNALLY_VERIFIED: :EXTERNALLY_VERIFIED
|
|
46
|
+
|
|
47
|
+
def self?.values: -> ::Array[Lithic::Models::ExternalBankAccountSetVerificationMethodParams::verification_method]
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
end
|
|
@@ -8,6 +8,7 @@ module Lithic
|
|
|
8
8
|
| Lithic::AccountHolderVerificationWebhookEvent
|
|
9
9
|
| Lithic::AccountHolderDocumentUpdatedWebhookEvent
|
|
10
10
|
| Lithic::CardAuthorizationApprovalRequestWebhookEvent
|
|
11
|
+
| Lithic::CardAuthorizationChallengeResponseWebhookEvent
|
|
11
12
|
| Lithic::AuthRulesBacktestReportCreatedWebhookEvent
|
|
12
13
|
| Lithic::BalanceUpdatedWebhookEvent
|
|
13
14
|
| Lithic::BookTransferTransactionCreatedWebhookEvent
|
data/sig/lithic/models.rbs
CHANGED
|
@@ -89,6 +89,8 @@ module Lithic
|
|
|
89
89
|
|
|
90
90
|
class CardAuthorizationApprovalRequestWebhookEvent = Lithic::Models::CardAuthorizationApprovalRequestWebhookEvent
|
|
91
91
|
|
|
92
|
+
class CardAuthorizationChallengeResponseWebhookEvent = Lithic::Models::CardAuthorizationChallengeResponseWebhookEvent
|
|
93
|
+
|
|
92
94
|
class CardBulkOrder = Lithic::Models::CardBulkOrder
|
|
93
95
|
|
|
94
96
|
class CardBulkOrderCreateParams = Lithic::Models::CardBulkOrderCreateParams
|
|
@@ -249,6 +251,8 @@ module Lithic
|
|
|
249
251
|
|
|
250
252
|
module ExternalBankAccounts = Lithic::Models::ExternalBankAccounts
|
|
251
253
|
|
|
254
|
+
class ExternalBankAccountSetVerificationMethodParams = Lithic::Models::ExternalBankAccountSetVerificationMethodParams
|
|
255
|
+
|
|
252
256
|
class ExternalBankAccountUnpauseParams = Lithic::Models::ExternalBankAccountUnpauseParams
|
|
253
257
|
|
|
254
258
|
class ExternalBankAccountUpdatedWebhookEvent = Lithic::Models::ExternalBankAccountUpdatedWebhookEvent
|
|
@@ -52,6 +52,13 @@ module Lithic
|
|
|
52
52
|
?request_options: Lithic::request_opts
|
|
53
53
|
) -> Lithic::ExternalBankAccount
|
|
54
54
|
|
|
55
|
+
def set_verification_method: (
|
|
56
|
+
String external_bank_account_token,
|
|
57
|
+
verification_method: Lithic::Models::ExternalBankAccountSetVerificationMethodParams::verification_method,
|
|
58
|
+
?financial_account_token: String,
|
|
59
|
+
?request_options: Lithic::request_opts
|
|
60
|
+
) -> Lithic::ExternalBankAccount
|
|
61
|
+
|
|
55
62
|
def unpause: (
|
|
56
63
|
String external_bank_account_token,
|
|
57
64
|
?request_options: Lithic::request_opts
|
|
@@ -12,6 +12,7 @@ module Lithic
|
|
|
12
12
|
| Lithic::AccountHolderVerificationWebhookEvent
|
|
13
13
|
| Lithic::AccountHolderDocumentUpdatedWebhookEvent
|
|
14
14
|
| Lithic::CardAuthorizationApprovalRequestWebhookEvent
|
|
15
|
+
| Lithic::CardAuthorizationChallengeResponseWebhookEvent
|
|
15
16
|
| Lithic::AuthRulesBacktestReportCreatedWebhookEvent
|
|
16
17
|
| Lithic::BalanceUpdatedWebhookEvent
|
|
17
18
|
| Lithic::BookTransferTransactionCreatedWebhookEvent
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lithic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.12.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lithic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-04-
|
|
11
|
+
date: 2026-04-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|
|
@@ -163,6 +163,7 @@ files:
|
|
|
163
163
|
- lib/lithic/models/book_transfer_transaction_updated_webhook_event.rb
|
|
164
164
|
- lib/lithic/models/card.rb
|
|
165
165
|
- lib/lithic/models/card_authorization_approval_request_webhook_event.rb
|
|
166
|
+
- lib/lithic/models/card_authorization_challenge_response_webhook_event.rb
|
|
166
167
|
- lib/lithic/models/card_bulk_order.rb
|
|
167
168
|
- lib/lithic/models/card_bulk_order_create_params.rb
|
|
168
169
|
- lib/lithic/models/card_bulk_order_list_params.rb
|
|
@@ -267,6 +268,7 @@ files:
|
|
|
267
268
|
- lib/lithic/models/external_bank_account_retry_micro_deposits_params.rb
|
|
268
269
|
- lib/lithic/models/external_bank_account_retry_micro_deposits_response.rb
|
|
269
270
|
- lib/lithic/models/external_bank_account_retry_prenote_params.rb
|
|
271
|
+
- lib/lithic/models/external_bank_account_set_verification_method_params.rb
|
|
270
272
|
- lib/lithic/models/external_bank_account_unpause_params.rb
|
|
271
273
|
- lib/lithic/models/external_bank_account_update_params.rb
|
|
272
274
|
- lib/lithic/models/external_bank_account_update_response.rb
|
|
@@ -649,6 +651,7 @@ files:
|
|
|
649
651
|
- rbi/lithic/models/book_transfer_transaction_updated_webhook_event.rbi
|
|
650
652
|
- rbi/lithic/models/card.rbi
|
|
651
653
|
- rbi/lithic/models/card_authorization_approval_request_webhook_event.rbi
|
|
654
|
+
- rbi/lithic/models/card_authorization_challenge_response_webhook_event.rbi
|
|
652
655
|
- rbi/lithic/models/card_bulk_order.rbi
|
|
653
656
|
- rbi/lithic/models/card_bulk_order_create_params.rbi
|
|
654
657
|
- rbi/lithic/models/card_bulk_order_list_params.rbi
|
|
@@ -753,6 +756,7 @@ files:
|
|
|
753
756
|
- rbi/lithic/models/external_bank_account_retry_micro_deposits_params.rbi
|
|
754
757
|
- rbi/lithic/models/external_bank_account_retry_micro_deposits_response.rbi
|
|
755
758
|
- rbi/lithic/models/external_bank_account_retry_prenote_params.rbi
|
|
759
|
+
- rbi/lithic/models/external_bank_account_set_verification_method_params.rbi
|
|
756
760
|
- rbi/lithic/models/external_bank_account_unpause_params.rbi
|
|
757
761
|
- rbi/lithic/models/external_bank_account_update_params.rbi
|
|
758
762
|
- rbi/lithic/models/external_bank_account_update_response.rbi
|
|
@@ -1134,6 +1138,7 @@ files:
|
|
|
1134
1138
|
- sig/lithic/models/book_transfer_transaction_updated_webhook_event.rbs
|
|
1135
1139
|
- sig/lithic/models/card.rbs
|
|
1136
1140
|
- sig/lithic/models/card_authorization_approval_request_webhook_event.rbs
|
|
1141
|
+
- sig/lithic/models/card_authorization_challenge_response_webhook_event.rbs
|
|
1137
1142
|
- sig/lithic/models/card_bulk_order.rbs
|
|
1138
1143
|
- sig/lithic/models/card_bulk_order_create_params.rbs
|
|
1139
1144
|
- sig/lithic/models/card_bulk_order_list_params.rbs
|
|
@@ -1238,6 +1243,7 @@ files:
|
|
|
1238
1243
|
- sig/lithic/models/external_bank_account_retry_micro_deposits_params.rbs
|
|
1239
1244
|
- sig/lithic/models/external_bank_account_retry_micro_deposits_response.rbs
|
|
1240
1245
|
- sig/lithic/models/external_bank_account_retry_prenote_params.rbs
|
|
1246
|
+
- sig/lithic/models/external_bank_account_set_verification_method_params.rbs
|
|
1241
1247
|
- sig/lithic/models/external_bank_account_unpause_params.rbs
|
|
1242
1248
|
- sig/lithic/models/external_bank_account_update_params.rbs
|
|
1243
1249
|
- sig/lithic/models/external_bank_account_update_response.rbs
|