lithic 0.1.0.pre.alpha.56 → 0.1.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 +33 -0
- data/README.md +1 -1
- data/lib/lithic/client.rb +8 -0
- data/lib/lithic/models/account_activity_list_params.rb +2 -0
- data/lib/lithic/models/account_activity_list_response.rb +2 -0
- data/lib/lithic/models/account_activity_retrieve_transaction_response.rb +2 -0
- data/lib/lithic/models/auth_rules/auth_rule.rb +208 -49
- data/lib/lithic/models/auth_rules/auth_rule_condition.rb +2 -2
- data/lib/lithic/models/auth_rules/conditional_3ds_action_parameters.rb +2 -2
- data/lib/lithic/models/auth_rules/conditional_ach_action_parameters.rb +2 -2
- data/lib/lithic/models/auth_rules/conditional_authorization_action_parameters.rb +2 -2
- data/lib/lithic/models/auth_rules/conditional_operation.rb +5 -0
- data/lib/lithic/models/auth_rules/conditional_tokenization_action_parameters.rb +19 -2
- data/lib/lithic/models/auth_rules/conditional_value.rb +4 -1
- data/lib/lithic/models/auth_rules/event_stream.rb +21 -0
- data/lib/lithic/models/auth_rules/v2_create_params.rb +3 -17
- data/lib/lithic/models/auth_rules/v2_list_params.rb +16 -19
- data/lib/lithic/models/card_bulk_order.rb +106 -0
- data/lib/lithic/models/card_bulk_order_create_params.rb +52 -0
- data/lib/lithic/models/card_bulk_order_list_params.rb +61 -0
- data/lib/lithic/models/card_bulk_order_retrieve_params.rb +14 -0
- data/lib/lithic/models/card_bulk_order_update_params.rb +32 -0
- data/lib/lithic/models/card_convert_physical_params.rb +3 -0
- data/lib/lithic/models/card_create_params.rb +14 -1
- data/lib/lithic/models/card_program.rb +10 -10
- data/lib/lithic/models/card_reissue_params.rb +3 -0
- data/lib/lithic/models/card_renew_params.rb +3 -0
- data/lib/lithic/models/card_web_provision_params.rb +32 -1
- data/lib/lithic/models/card_web_provision_response.rb +98 -60
- data/lib/lithic/models/cardholder_authentication.rb +132 -0
- data/lib/lithic/models/device.rb +37 -0
- data/lib/lithic/models/digital_wallet_token_metadata.rb +141 -0
- data/lib/lithic/models/{external_bank_account_unpause_response.rb → external_bank_account.rb} +15 -16
- data/lib/lithic/models/external_payment.rb +12 -0
- data/lib/lithic/models/external_payment_create_params.rb +2 -0
- data/lib/lithic/models/external_payment_list_params.rb +2 -0
- data/lib/lithic/models/financial_account_balance.rb +112 -0
- data/lib/lithic/models/financial_accounts/statement.rb +9 -9
- data/lib/lithic/models/financial_accounts/statements/statement_line_items.rb +18 -0
- data/lib/lithic/models/financial_event.rb +16 -0
- data/lib/lithic/models/{funding_event_retrieve_response.rb → funding_event.rb} +9 -10
- data/lib/lithic/models/internal_transaction.rb +166 -0
- data/lib/lithic/models/management_operation_create_params.rb +6 -0
- data/lib/lithic/models/management_operation_transaction.rb +6 -0
- data/lib/lithic/models/network_total.rb +169 -0
- data/lib/lithic/models/non_pci_card.rb +10 -1
- data/lib/lithic/models/payment.rb +11 -1
- data/lib/lithic/models/payment_create_params.rb +10 -1
- data/lib/lithic/models/three_ds_authentication.rb +1259 -0
- data/lib/lithic/models/token_info.rb +42 -0
- data/lib/lithic/models/tokenization.rb +9 -111
- data/lib/lithic/models/tokenization_decline_reason.rb +27 -0
- data/lib/lithic/models/tokenization_rule_result.rb +61 -0
- data/lib/lithic/models/tokenization_tfa_reason.rb +29 -0
- data/lib/lithic/models/transaction.rb +6 -174
- data/lib/lithic/models/wallet_decisioning_info.rb +44 -0
- data/lib/lithic/models.rb +38 -0
- data/lib/lithic/resources/auth_rules/v2.rb +17 -15
- data/lib/lithic/resources/card_bulk_orders.rb +127 -0
- data/lib/lithic/resources/cards/balances.rb +2 -2
- data/lib/lithic/resources/cards.rb +14 -3
- data/lib/lithic/resources/external_bank_accounts.rb +4 -4
- data/lib/lithic/resources/financial_accounts/balances.rb +2 -2
- data/lib/lithic/resources/funding_events.rb +4 -4
- data/lib/lithic/resources/internal_transaction.rb +14 -0
- data/lib/lithic/resources/reports/settlement/network_totals.rb +4 -4
- data/lib/lithic/resources/three_ds/authentication.rb +2 -2
- data/lib/lithic/resources/tokenizations.rb +4 -4
- data/lib/lithic/version.rb +1 -1
- data/lib/lithic.rb +23 -17
- data/manifest.yaml +1 -0
- data/rbi/lithic/client.rbi +6 -0
- data/rbi/lithic/models/account_activity_list_params.rbi +10 -0
- data/rbi/lithic/models/account_activity_list_response.rbi +10 -0
- data/rbi/lithic/models/account_activity_retrieve_transaction_response.rbi +10 -0
- data/rbi/lithic/models/auth_rules/auth_rule.rbi +339 -80
- data/rbi/lithic/models/auth_rules/conditional_operation.rbi +25 -0
- data/rbi/lithic/models/auth_rules/conditional_tokenization_action_parameters.rbi +29 -0
- data/rbi/lithic/models/auth_rules/conditional_value.rbi +2 -1
- data/rbi/lithic/models/auth_rules/event_stream.rbi +44 -0
- data/rbi/lithic/models/auth_rules/v2_create_params.rbi +4 -60
- data/rbi/lithic/models/auth_rules/v2_list_params.rbi +27 -59
- data/rbi/lithic/models/card_bulk_order.rbi +141 -0
- data/rbi/lithic/models/card_bulk_order_create_params.rbi +92 -0
- data/rbi/lithic/models/card_bulk_order_list_params.rbi +98 -0
- data/rbi/lithic/models/card_bulk_order_retrieve_params.rbi +27 -0
- data/rbi/lithic/models/card_bulk_order_update_params.rbi +68 -0
- data/rbi/lithic/models/card_convert_physical_params.rbi +8 -0
- data/rbi/lithic/models/card_create_params.rbi +23 -0
- data/rbi/lithic/models/card_program.rbi +10 -13
- data/rbi/lithic/models/card_reissue_params.rbi +8 -0
- data/rbi/lithic/models/card_renew_params.rbi +8 -0
- data/rbi/lithic/models/card_web_provision_params.rbi +44 -0
- data/rbi/lithic/models/card_web_provision_response.rbi +182 -102
- data/rbi/lithic/models/cardholder_authentication.rbi +296 -0
- data/rbi/lithic/models/device.rbi +54 -0
- data/rbi/lithic/models/digital_wallet_token_metadata.rbi +290 -0
- data/rbi/lithic/models/{external_bank_account_unpause_response.rbi → external_bank_account.rbi} +26 -75
- data/rbi/lithic/models/external_payment.rbi +57 -0
- data/rbi/lithic/models/external_payment_create_params.rbi +10 -0
- data/rbi/lithic/models/external_payment_list_params.rbi +10 -0
- data/rbi/lithic/models/financial_account_balance.rbi +144 -0
- data/rbi/lithic/models/financial_accounts/statement.rbi +9 -9
- data/rbi/lithic/models/financial_accounts/statements/statement_line_items.rbi +90 -0
- data/rbi/lithic/models/financial_event.rbi +60 -0
- data/rbi/lithic/models/{funding_event_list_response.rbi → funding_event.rbi} +13 -35
- data/rbi/lithic/models/internal_transaction.rbi +277 -0
- data/rbi/lithic/models/management_operation_create_params.rbi +30 -0
- data/rbi/lithic/models/management_operation_transaction.rbi +30 -0
- data/rbi/lithic/models/network_total.rbi +226 -0
- data/rbi/lithic/models/non_pci_card.rbi +10 -0
- data/rbi/lithic/models/payment.rbi +12 -0
- data/rbi/lithic/models/payment_create_params.rbi +15 -1
- data/rbi/lithic/models/three_ds_authentication.rbi +2432 -0
- data/rbi/lithic/models/token_info.rbi +70 -0
- data/rbi/lithic/models/tokenization.rbi +12 -335
- data/rbi/lithic/models/tokenization_decline_reason.rbi +73 -0
- data/rbi/lithic/models/tokenization_rule_result.rbi +96 -0
- data/rbi/lithic/models/tokenization_tfa_reason.rbi +74 -0
- data/rbi/lithic/models/transaction.rbi +8 -410
- data/rbi/lithic/models/wallet_decisioning_info.rbi +63 -0
- data/rbi/lithic/models.rbi +38 -0
- data/rbi/lithic/resources/auth_rules/v2.rbi +15 -15
- data/rbi/lithic/resources/card_bulk_orders.rbi +101 -0
- data/rbi/lithic/resources/cards/balances.rbi +1 -3
- data/rbi/lithic/resources/cards.rbi +22 -1
- data/rbi/lithic/resources/external_bank_accounts.rbi +2 -2
- data/rbi/lithic/resources/financial_accounts/balances.rbi +1 -3
- data/rbi/lithic/resources/funding_events.rbi +2 -4
- data/rbi/lithic/resources/internal_transaction.rbi +12 -0
- data/rbi/lithic/resources/reports/settlement/network_totals.rbi +2 -8
- data/rbi/lithic/resources/three_ds/authentication.rbi +1 -1
- data/rbi/lithic/resources/tokenizations.rbi +2 -2
- data/sig/lithic/client.rbs +4 -0
- data/sig/lithic/models/account_activity_list_params.rbs +4 -0
- data/sig/lithic/models/account_activity_list_response.rbs +4 -0
- data/sig/lithic/models/account_activity_retrieve_transaction_response.rbs +4 -0
- data/sig/lithic/models/auth_rules/auth_rule.rbs +135 -36
- data/sig/lithic/models/auth_rules/conditional_operation.rbs +10 -0
- data/sig/lithic/models/auth_rules/conditional_tokenization_action_parameters.rbs +2 -0
- data/sig/lithic/models/auth_rules/conditional_value.rbs +1 -1
- data/sig/lithic/models/auth_rules/event_stream.rbs +24 -0
- data/sig/lithic/models/auth_rules/v2_create_params.rbs +6 -25
- data/sig/lithic/models/auth_rules/v2_list_params.rbs +15 -25
- data/sig/lithic/models/card_bulk_order.rbs +76 -0
- data/sig/lithic/models/card_bulk_order_create_params.rbs +46 -0
- data/sig/lithic/models/card_bulk_order_list_params.rbs +56 -0
- data/sig/lithic/models/card_bulk_order_retrieve_params.rbs +15 -0
- data/sig/lithic/models/card_bulk_order_update_params.rbs +34 -0
- data/sig/lithic/models/card_convert_physical_params.rbs +2 -0
- data/sig/lithic/models/card_create_params.rbs +9 -0
- data/sig/lithic/models/card_program.rbs +5 -7
- data/sig/lithic/models/card_reissue_params.rbs +2 -0
- data/sig/lithic/models/card_renew_params.rbs +2 -0
- data/sig/lithic/models/card_web_provision_params.rbs +26 -2
- data/sig/lithic/models/card_web_provision_response.rbs +81 -51
- data/sig/lithic/models/cardholder_authentication.rbs +98 -0
- data/sig/lithic/models/device.rbs +21 -0
- data/sig/lithic/models/digital_wallet_token_metadata.rbs +119 -0
- data/sig/lithic/models/{external_bank_account_unpause_response.rbs → external_bank_account.rbs} +17 -17
- data/sig/lithic/models/external_payment.rbs +28 -1
- data/sig/lithic/models/external_payment_create_params.rbs +8 -1
- data/sig/lithic/models/external_payment_list_params.rbs +8 -1
- data/sig/lithic/models/financial_account_balance.rbs +78 -0
- data/sig/lithic/models/financial_accounts/statement.rbs +12 -12
- data/sig/lithic/models/financial_accounts/statements/statement_line_items.rbs +36 -0
- data/sig/lithic/models/financial_event.rbs +32 -0
- data/sig/lithic/models/{funding_event_list_response.rbs → funding_event.rbs} +11 -11
- data/sig/lithic/models/internal_transaction.rbs +165 -0
- data/sig/lithic/models/management_operation_create_params.rbs +12 -0
- data/sig/lithic/models/management_operation_transaction.rbs +12 -0
- data/sig/lithic/models/network_total.rbs +125 -0
- data/sig/lithic/models/non_pci_card.rbs +5 -0
- data/sig/lithic/models/payment.rbs +9 -0
- data/sig/lithic/models/payment_create_params.rbs +7 -0
- data/sig/lithic/models/three_ds_authentication.rbs +911 -0
- data/sig/lithic/models/token_info.rbs +36 -0
- data/sig/lithic/models/tokenization.rbs +18 -137
- data/sig/lithic/models/tokenization_decline_reason.rbs +38 -0
- data/sig/lithic/models/tokenization_rule_result.rbs +48 -0
- data/sig/lithic/models/tokenization_tfa_reason.rbs +42 -0
- data/sig/lithic/models/transaction.rbs +8 -140
- data/sig/lithic/models/wallet_decisioning_info.rbs +35 -0
- data/sig/lithic/models.rbs +38 -0
- data/sig/lithic/resources/auth_rules/v2.rbs +9 -8
- data/sig/lithic/resources/card_bulk_orders.rbs +34 -0
- data/sig/lithic/resources/cards/balances.rbs +1 -1
- data/sig/lithic/resources/cards.rbs +5 -1
- data/sig/lithic/resources/external_bank_accounts.rbs +2 -2
- data/sig/lithic/resources/financial_accounts/balances.rbs +1 -1
- data/sig/lithic/resources/funding_events.rbs +2 -2
- data/sig/lithic/resources/internal_transaction.rbs +7 -0
- data/sig/lithic/resources/reports/settlement/network_totals.rbs +2 -2
- data/sig/lithic/resources/three_ds/authentication.rbs +1 -1
- data/sig/lithic/resources/tokenizations.rbs +2 -2
- metadata +70 -55
- data/lib/lithic/models/auth_rules/v2_create_response.rb +0 -280
- data/lib/lithic/models/auth_rules/v2_draft_response.rb +0 -279
- data/lib/lithic/models/auth_rules/v2_list_response.rb +0 -279
- data/lib/lithic/models/auth_rules/v2_promote_response.rb +0 -280
- data/lib/lithic/models/auth_rules/v2_retrieve_response.rb +0 -284
- data/lib/lithic/models/auth_rules/v2_update_response.rb +0 -280
- data/lib/lithic/models/cards/balance_list_response.rb +0 -115
- data/lib/lithic/models/external_bank_account_retry_prenote_response.rb +0 -242
- data/lib/lithic/models/financial_accounts/balance_list_response.rb +0 -115
- data/lib/lithic/models/funding_event_list_response.rb +0 -108
- data/lib/lithic/models/reports/settlement/network_total_list_response.rb +0 -176
- data/lib/lithic/models/reports/settlement/network_total_retrieve_response.rb +0 -176
- data/lib/lithic/models/three_ds/authentication_retrieve_response.rb +0 -1288
- data/lib/lithic/models/tokenization_simulate_response.rb +0 -16
- data/lib/lithic/models/tokenization_update_digital_card_art_response.rb +0 -16
- data/rbi/lithic/models/auth_rules/v2_create_response.rbi +0 -522
- data/rbi/lithic/models/auth_rules/v2_draft_response.rbi +0 -522
- data/rbi/lithic/models/auth_rules/v2_list_response.rbi +0 -518
- data/rbi/lithic/models/auth_rules/v2_promote_response.rbi +0 -525
- data/rbi/lithic/models/auth_rules/v2_retrieve_response.rbi +0 -528
- data/rbi/lithic/models/auth_rules/v2_update_response.rbi +0 -522
- data/rbi/lithic/models/cards/balance_list_response.rbi +0 -170
- data/rbi/lithic/models/external_bank_account_retry_prenote_response.rbi +0 -375
- data/rbi/lithic/models/financial_accounts/balance_list_response.rbi +0 -174
- data/rbi/lithic/models/funding_event_retrieve_response.rbi +0 -184
- data/rbi/lithic/models/reports/settlement/network_total_list_response.rbi +0 -280
- data/rbi/lithic/models/reports/settlement/network_total_retrieve_response.rbi +0 -280
- data/rbi/lithic/models/three_ds/authentication_retrieve_response.rbi +0 -2580
- data/rbi/lithic/models/tokenization_simulate_response.rbi +0 -33
- data/rbi/lithic/models/tokenization_update_digital_card_art_response.rbi +0 -31
- data/sig/lithic/models/auth_rules/v2_create_response.rbs +0 -205
- data/sig/lithic/models/auth_rules/v2_draft_response.rbs +0 -205
- data/sig/lithic/models/auth_rules/v2_list_response.rbs +0 -205
- data/sig/lithic/models/auth_rules/v2_promote_response.rbs +0 -205
- data/sig/lithic/models/auth_rules/v2_retrieve_response.rbs +0 -205
- data/sig/lithic/models/auth_rules/v2_update_response.rbs +0 -205
- data/sig/lithic/models/cards/balance_list_response.rbs +0 -80
- data/sig/lithic/models/external_bank_account_retry_prenote_response.rbs +0 -162
- data/sig/lithic/models/financial_accounts/balance_list_response.rbs +0 -80
- data/sig/lithic/models/funding_event_retrieve_response.rbs +0 -85
- data/sig/lithic/models/reports/settlement/network_total_list_response.rbs +0 -129
- data/sig/lithic/models/reports/settlement/network_total_retrieve_response.rbs +0 -129
- data/sig/lithic/models/three_ds/authentication_retrieve_response.rbs +0 -913
- data/sig/lithic/models/tokenization_simulate_response.rbs +0 -18
- data/sig/lithic/models/tokenization_update_digital_card_art_response.rbs +0 -16
data/rbi/lithic/models.rbi
CHANGED
|
@@ -82,12 +82,24 @@ module Lithic
|
|
|
82
82
|
|
|
83
83
|
Card = Lithic::Models::Card
|
|
84
84
|
|
|
85
|
+
CardBulkOrder = Lithic::Models::CardBulkOrder
|
|
86
|
+
|
|
87
|
+
CardBulkOrderCreateParams = Lithic::Models::CardBulkOrderCreateParams
|
|
88
|
+
|
|
89
|
+
CardBulkOrderListParams = Lithic::Models::CardBulkOrderListParams
|
|
90
|
+
|
|
91
|
+
CardBulkOrderRetrieveParams = Lithic::Models::CardBulkOrderRetrieveParams
|
|
92
|
+
|
|
93
|
+
CardBulkOrderUpdateParams = Lithic::Models::CardBulkOrderUpdateParams
|
|
94
|
+
|
|
85
95
|
CardConvertPhysicalParams = Lithic::Models::CardConvertPhysicalParams
|
|
86
96
|
|
|
87
97
|
CardCreateParams = Lithic::Models::CardCreateParams
|
|
88
98
|
|
|
89
99
|
CardEmbedParams = Lithic::Models::CardEmbedParams
|
|
90
100
|
|
|
101
|
+
CardholderAuthentication = Lithic::Models::CardholderAuthentication
|
|
102
|
+
|
|
91
103
|
CardListParams = Lithic::Models::CardListParams
|
|
92
104
|
|
|
93
105
|
CardProgram = Lithic::Models::CardProgram
|
|
@@ -126,12 +138,16 @@ module Lithic
|
|
|
126
138
|
|
|
127
139
|
Currency = Lithic::Models::Currency
|
|
128
140
|
|
|
141
|
+
Device = Lithic::Models::Device
|
|
142
|
+
|
|
129
143
|
DigitalCardArtAPI = Lithic::Models::DigitalCardArtAPI
|
|
130
144
|
|
|
131
145
|
DigitalCardArtListParams = Lithic::Models::DigitalCardArtListParams
|
|
132
146
|
|
|
133
147
|
DigitalCardArtRetrieveParams = Lithic::Models::DigitalCardArtRetrieveParams
|
|
134
148
|
|
|
149
|
+
DigitalWalletTokenMetadata = Lithic::Models::DigitalWalletTokenMetadata
|
|
150
|
+
|
|
135
151
|
Dispute = Lithic::Models::Dispute
|
|
136
152
|
|
|
137
153
|
DisputeCreateParams = Lithic::Models::DisputeCreateParams
|
|
@@ -175,6 +191,8 @@ module Lithic
|
|
|
175
191
|
|
|
176
192
|
EventSubscription = Lithic::Models::EventSubscription
|
|
177
193
|
|
|
194
|
+
ExternalBankAccount = Lithic::Models::ExternalBankAccount
|
|
195
|
+
|
|
178
196
|
ExternalBankAccountAddress = Lithic::Models::ExternalBankAccountAddress
|
|
179
197
|
|
|
180
198
|
ExternalBankAccountCreateParams =
|
|
@@ -221,6 +239,8 @@ module Lithic
|
|
|
221
239
|
|
|
222
240
|
FinancialAccount = Lithic::Models::FinancialAccount
|
|
223
241
|
|
|
242
|
+
FinancialAccountBalance = Lithic::Models::FinancialAccountBalance
|
|
243
|
+
|
|
224
244
|
FinancialAccountCreateParams = Lithic::Models::FinancialAccountCreateParams
|
|
225
245
|
|
|
226
246
|
FinancialAccountListParams = Lithic::Models::FinancialAccountListParams
|
|
@@ -244,6 +264,8 @@ module Lithic
|
|
|
244
264
|
|
|
245
265
|
Fraud = Lithic::Models::Fraud
|
|
246
266
|
|
|
267
|
+
FundingEvent = Lithic::Models::FundingEvent
|
|
268
|
+
|
|
247
269
|
FundingEventListParams = Lithic::Models::FundingEventListParams
|
|
248
270
|
|
|
249
271
|
FundingEventRetrieveDetailsParams =
|
|
@@ -253,6 +275,8 @@ module Lithic
|
|
|
253
275
|
|
|
254
276
|
InstanceFinancialAccountType = Lithic::Models::InstanceFinancialAccountType
|
|
255
277
|
|
|
278
|
+
InternalTransactionAPI = Lithic::Models::InternalTransactionAPI
|
|
279
|
+
|
|
256
280
|
KYB = Lithic::Models::KYB
|
|
257
281
|
|
|
258
282
|
KYBBusinessEntity = Lithic::Models::KYBBusinessEntity
|
|
@@ -285,6 +309,8 @@ module Lithic
|
|
|
285
309
|
|
|
286
310
|
NetworkProgramRetrieveParams = Lithic::Models::NetworkProgramRetrieveParams
|
|
287
311
|
|
|
312
|
+
NetworkTotal = Lithic::Models::NetworkTotal
|
|
313
|
+
|
|
288
314
|
NonPCICard = Lithic::Models::NonPCICard
|
|
289
315
|
|
|
290
316
|
OwnerType = Lithic::Models::OwnerType
|
|
@@ -338,6 +364,10 @@ module Lithic
|
|
|
338
364
|
|
|
339
365
|
ThreeDS = Lithic::Models::ThreeDS
|
|
340
366
|
|
|
367
|
+
ThreeDSAuthentication = Lithic::Models::ThreeDSAuthentication
|
|
368
|
+
|
|
369
|
+
TokenInfo = Lithic::Models::TokenInfo
|
|
370
|
+
|
|
341
371
|
Tokenization = Lithic::Models::Tokenization
|
|
342
372
|
|
|
343
373
|
TokenizationActivateParams = Lithic::Models::TokenizationActivateParams
|
|
@@ -350,6 +380,8 @@ module Lithic
|
|
|
350
380
|
TokenizationDecisioningRotateSecretParams =
|
|
351
381
|
Lithic::Models::TokenizationDecisioningRotateSecretParams
|
|
352
382
|
|
|
383
|
+
TokenizationDeclineReason = Lithic::Models::TokenizationDeclineReason
|
|
384
|
+
|
|
353
385
|
TokenizationListParams = Lithic::Models::TokenizationListParams
|
|
354
386
|
|
|
355
387
|
TokenizationPauseParams = Lithic::Models::TokenizationPauseParams
|
|
@@ -359,10 +391,14 @@ module Lithic
|
|
|
359
391
|
|
|
360
392
|
TokenizationRetrieveParams = Lithic::Models::TokenizationRetrieveParams
|
|
361
393
|
|
|
394
|
+
TokenizationRuleResult = Lithic::Models::TokenizationRuleResult
|
|
395
|
+
|
|
362
396
|
TokenizationSecret = Lithic::Models::TokenizationSecret
|
|
363
397
|
|
|
364
398
|
TokenizationSimulateParams = Lithic::Models::TokenizationSimulateParams
|
|
365
399
|
|
|
400
|
+
TokenizationTfaReason = Lithic::Models::TokenizationTfaReason
|
|
401
|
+
|
|
366
402
|
TokenizationUnpauseParams = Lithic::Models::TokenizationUnpauseParams
|
|
367
403
|
|
|
368
404
|
TokenizationUpdateDigitalCardArtParams =
|
|
@@ -405,5 +441,7 @@ module Lithic
|
|
|
405
441
|
|
|
406
442
|
VerificationMethod = Lithic::Models::VerificationMethod
|
|
407
443
|
|
|
444
|
+
WalletDecisioningInfo = Lithic::Models::WalletDecisioningInfo
|
|
445
|
+
|
|
408
446
|
WirePartyDetails = Lithic::Models::WirePartyDetails
|
|
409
447
|
end
|
|
@@ -25,12 +25,11 @@ module Lithic
|
|
|
25
25
|
program_level: T::Boolean,
|
|
26
26
|
account_tokens: T::Array[String],
|
|
27
27
|
business_account_tokens: T::Array[String],
|
|
28
|
-
event_stream:
|
|
29
|
-
Lithic::AuthRules::V2CreateParams::EventStream::OrSymbol,
|
|
28
|
+
event_stream: Lithic::AuthRules::EventStream::OrSymbol,
|
|
30
29
|
name: T.nilable(String),
|
|
31
30
|
excluded_card_tokens: T::Array[String],
|
|
32
31
|
request_options: Lithic::RequestOptions::OrHash
|
|
33
|
-
).returns(Lithic::
|
|
32
|
+
).returns(Lithic::AuthRules::AuthRule)
|
|
34
33
|
end
|
|
35
34
|
def create(
|
|
36
35
|
# Parameters for the Auth Rule
|
|
@@ -69,7 +68,7 @@ module Lithic
|
|
|
69
68
|
params(
|
|
70
69
|
auth_rule_token: String,
|
|
71
70
|
request_options: Lithic::RequestOptions::OrHash
|
|
72
|
-
).returns(Lithic::
|
|
71
|
+
).returns(Lithic::AuthRules::AuthRule)
|
|
73
72
|
end
|
|
74
73
|
def retrieve(auth_rule_token, request_options: {})
|
|
75
74
|
end
|
|
@@ -90,7 +89,7 @@ module Lithic
|
|
|
90
89
|
excluded_card_tokens: T::Array[String],
|
|
91
90
|
program_level: T::Boolean,
|
|
92
91
|
request_options: Lithic::RequestOptions::OrHash
|
|
93
|
-
).returns(Lithic::
|
|
92
|
+
).returns(Lithic::AuthRules::AuthRule)
|
|
94
93
|
end
|
|
95
94
|
def update(
|
|
96
95
|
auth_rule_token,
|
|
@@ -123,17 +122,13 @@ module Lithic
|
|
|
123
122
|
business_account_token: String,
|
|
124
123
|
card_token: String,
|
|
125
124
|
ending_before: String,
|
|
126
|
-
event_stream:
|
|
127
|
-
|
|
125
|
+
event_stream: Lithic::AuthRules::EventStream::OrSymbol,
|
|
126
|
+
event_streams: T::Array[Lithic::AuthRules::EventStream::OrSymbol],
|
|
128
127
|
page_size: Integer,
|
|
129
128
|
scope: Lithic::AuthRules::V2ListParams::Scope::OrSymbol,
|
|
130
129
|
starting_after: String,
|
|
131
130
|
request_options: Lithic::RequestOptions::OrHash
|
|
132
|
-
).returns(
|
|
133
|
-
Lithic::Internal::CursorPage[
|
|
134
|
-
Lithic::Models::AuthRules::V2ListResponse
|
|
135
|
-
]
|
|
136
|
-
)
|
|
131
|
+
).returns(Lithic::Internal::CursorPage[Lithic::AuthRules::AuthRule])
|
|
137
132
|
end
|
|
138
133
|
def list(
|
|
139
134
|
# Only return Auth Rules that are bound to the provided account token.
|
|
@@ -145,8 +140,13 @@ module Lithic
|
|
|
145
140
|
# A cursor representing an item's token before which a page of results should end.
|
|
146
141
|
# Used to retrieve the previous page of results before this item.
|
|
147
142
|
ending_before: nil,
|
|
148
|
-
# Only return Auth rules that are executed
|
|
143
|
+
# Deprecated: Use event_streams instead. Only return Auth rules that are executed
|
|
144
|
+
# during the provided event stream.
|
|
149
145
|
event_stream: nil,
|
|
146
|
+
# Only return Auth rules that are executed during any of the provided event
|
|
147
|
+
# streams. If event_streams and event_stream are specified, the values will be
|
|
148
|
+
# combined.
|
|
149
|
+
event_streams: nil,
|
|
150
150
|
# Page size (for pagination).
|
|
151
151
|
page_size: nil,
|
|
152
152
|
# Only return Auth Rules that are bound to the provided scope.
|
|
@@ -188,7 +188,7 @@ module Lithic
|
|
|
188
188
|
)
|
|
189
189
|
),
|
|
190
190
|
request_options: Lithic::RequestOptions::OrHash
|
|
191
|
-
).returns(Lithic::
|
|
191
|
+
).returns(Lithic::AuthRules::AuthRule)
|
|
192
192
|
end
|
|
193
193
|
def draft(
|
|
194
194
|
auth_rule_token,
|
|
@@ -204,7 +204,7 @@ module Lithic
|
|
|
204
204
|
params(
|
|
205
205
|
auth_rule_token: String,
|
|
206
206
|
request_options: Lithic::RequestOptions::OrHash
|
|
207
|
-
).returns(Lithic::
|
|
207
|
+
).returns(Lithic::AuthRules::AuthRule)
|
|
208
208
|
end
|
|
209
209
|
def promote(auth_rule_token, request_options: {})
|
|
210
210
|
end
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
# typed: strong
|
|
2
|
+
|
|
3
|
+
module Lithic
|
|
4
|
+
module Resources
|
|
5
|
+
class CardBulkOrders
|
|
6
|
+
# Create a new bulk order for physical card shipments **[BETA]**. Cards can be
|
|
7
|
+
# added to the order via the POST /v1/cards endpoint by specifying the
|
|
8
|
+
# bulk_order_token. Lock the order via PATCH
|
|
9
|
+
# /v1/card_bulk_orders/{bulk_order_token} to prepare for shipment. Please work
|
|
10
|
+
# with your Customer Success Manager and card personalization bureau to ensure
|
|
11
|
+
# bulk shipping is supported for your program.
|
|
12
|
+
sig do
|
|
13
|
+
params(
|
|
14
|
+
customer_product_id: String,
|
|
15
|
+
shipping_address: T.anything,
|
|
16
|
+
shipping_method:
|
|
17
|
+
Lithic::CardBulkOrderCreateParams::ShippingMethod::OrSymbol,
|
|
18
|
+
request_options: Lithic::RequestOptions::OrHash
|
|
19
|
+
).returns(Lithic::CardBulkOrder)
|
|
20
|
+
end
|
|
21
|
+
def create(
|
|
22
|
+
# Customer-specified product configuration for physical card manufacturing. This
|
|
23
|
+
# must be configured with Lithic before use
|
|
24
|
+
customer_product_id:,
|
|
25
|
+
# Shipping address for all cards in this bulk order
|
|
26
|
+
shipping_address:,
|
|
27
|
+
# Shipping method for all cards in this bulk order
|
|
28
|
+
shipping_method:,
|
|
29
|
+
request_options: {}
|
|
30
|
+
)
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
# Retrieve a specific bulk order by token **[BETA]**
|
|
34
|
+
sig do
|
|
35
|
+
params(
|
|
36
|
+
bulk_order_token: String,
|
|
37
|
+
request_options: Lithic::RequestOptions::OrHash
|
|
38
|
+
).returns(Lithic::CardBulkOrder)
|
|
39
|
+
end
|
|
40
|
+
def retrieve(
|
|
41
|
+
# Globally unique identifier for the bulk order
|
|
42
|
+
bulk_order_token,
|
|
43
|
+
request_options: {}
|
|
44
|
+
)
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
# Update a bulk order **[BETA]**. Primarily used to lock the order, preventing
|
|
48
|
+
# additional cards from being added
|
|
49
|
+
sig do
|
|
50
|
+
params(
|
|
51
|
+
bulk_order_token: String,
|
|
52
|
+
status: Lithic::CardBulkOrderUpdateParams::Status::OrSymbol,
|
|
53
|
+
request_options: Lithic::RequestOptions::OrHash
|
|
54
|
+
).returns(Lithic::CardBulkOrder)
|
|
55
|
+
end
|
|
56
|
+
def update(
|
|
57
|
+
# Globally unique identifier for the bulk order
|
|
58
|
+
bulk_order_token,
|
|
59
|
+
# Status to update the bulk order to. Use LOCKED to finalize the order
|
|
60
|
+
status:,
|
|
61
|
+
request_options: {}
|
|
62
|
+
)
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
# List bulk orders for physical card shipments **[BETA]**
|
|
66
|
+
sig do
|
|
67
|
+
params(
|
|
68
|
+
begin_: Time,
|
|
69
|
+
end_: Time,
|
|
70
|
+
ending_before: String,
|
|
71
|
+
page_size: Integer,
|
|
72
|
+
starting_after: String,
|
|
73
|
+
request_options: Lithic::RequestOptions::OrHash
|
|
74
|
+
).returns(Lithic::Internal::CursorPage[Lithic::CardBulkOrder])
|
|
75
|
+
end
|
|
76
|
+
def list(
|
|
77
|
+
# Date string in RFC 3339 format. Only entries created after the specified time
|
|
78
|
+
# will be included. UTC time zone.
|
|
79
|
+
begin_: nil,
|
|
80
|
+
# Date string in RFC 3339 format. Only entries created before the specified time
|
|
81
|
+
# will be included. UTC time zone.
|
|
82
|
+
end_: nil,
|
|
83
|
+
# A cursor representing an item's token before which a page of results should end.
|
|
84
|
+
# Used to retrieve the previous page of results before this item.
|
|
85
|
+
ending_before: nil,
|
|
86
|
+
# Page size (for pagination).
|
|
87
|
+
page_size: nil,
|
|
88
|
+
# A cursor representing an item's token after which a page of results should
|
|
89
|
+
# begin. Used to retrieve the next page of results after this item.
|
|
90
|
+
starting_after: nil,
|
|
91
|
+
request_options: {}
|
|
92
|
+
)
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
# @api private
|
|
96
|
+
sig { params(client: Lithic::Client).returns(T.attached_class) }
|
|
97
|
+
def self.new(client:)
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
end
|
|
101
|
+
end
|
|
@@ -12,9 +12,7 @@ module Lithic
|
|
|
12
12
|
last_transaction_event_token: String,
|
|
13
13
|
request_options: Lithic::RequestOptions::OrHash
|
|
14
14
|
).returns(
|
|
15
|
-
Lithic::Internal::SinglePage[
|
|
16
|
-
Lithic::Models::Cards::BalanceListResponse
|
|
17
|
-
]
|
|
15
|
+
Lithic::Internal::SinglePage[Lithic::FinancialAccountBalance]
|
|
18
16
|
)
|
|
19
17
|
end
|
|
20
18
|
def list(
|
|
@@ -18,6 +18,7 @@ module Lithic
|
|
|
18
18
|
params(
|
|
19
19
|
type: Lithic::CardCreateParams::Type::OrSymbol,
|
|
20
20
|
account_token: String,
|
|
21
|
+
bulk_order_token: String,
|
|
21
22
|
card_program_token: String,
|
|
22
23
|
carrier: Lithic::Carrier::OrHash,
|
|
23
24
|
digital_card_art_token: String,
|
|
@@ -62,6 +63,10 @@ module Lithic
|
|
|
62
63
|
# [/account_holders endpoint](https://docs.lithic.com/docs/account-holders-kyc).
|
|
63
64
|
# See [Managing Your Program](doc:managing-your-program) for more information.
|
|
64
65
|
account_token: nil,
|
|
66
|
+
# Globally unique identifier for an existing bulk order to associate this card
|
|
67
|
+
# with. When specified, the card will be added to the bulk order for batch
|
|
68
|
+
# shipment. Only applicable to cards of type PHYSICAL
|
|
69
|
+
bulk_order_token: nil,
|
|
65
70
|
# For card programs with more than one BIN range. This must be configured with
|
|
66
71
|
# Lithic before use. Identifies the card program/BIN range under which to create
|
|
67
72
|
# the card. If omitted, will utilize the program's default `card_program_token`.
|
|
@@ -147,6 +152,7 @@ module Lithic
|
|
|
147
152
|
# tracking
|
|
148
153
|
# - `EXPEDITED` - FedEx or UPS depending on card manufacturer, Standard Overnight
|
|
149
154
|
# or similar international option, with tracking
|
|
155
|
+
# - `BULK_EXPEDITED` - Bulk shipment with Expedited shipping
|
|
150
156
|
shipping_method: nil,
|
|
151
157
|
# Amount (in cents) to limit approved authorizations (e.g. 100000 would be a
|
|
152
158
|
# $1,000 limit). Transaction requests above the spend limit will be declined. Note
|
|
@@ -374,6 +380,7 @@ module Lithic
|
|
|
374
380
|
# tracking
|
|
375
381
|
# - `EXPEDITED` - FedEx or UPS depending on card manufacturer, Standard Overnight
|
|
376
382
|
# or similar international option, with tracking
|
|
383
|
+
# - `BULK_EXPEDITED` - Bulk shipment with Expedited shipping
|
|
377
384
|
shipping_method: nil,
|
|
378
385
|
request_options: {}
|
|
379
386
|
)
|
|
@@ -509,6 +516,7 @@ module Lithic
|
|
|
509
516
|
# tracking
|
|
510
517
|
# - `EXPEDITED` - FedEx or UPS depending on card manufacturer, Standard Overnight
|
|
511
518
|
# or similar international option, with tracking
|
|
519
|
+
# - `BULK_EXPEDITED` - Bulk shipment with Expedited shipping
|
|
512
520
|
shipping_method: nil,
|
|
513
521
|
request_options: {}
|
|
514
522
|
)
|
|
@@ -565,6 +573,7 @@ module Lithic
|
|
|
565
573
|
# tracking
|
|
566
574
|
# - `EXPEDITED` - FedEx or UPS depending on card manufacturer, Standard Overnight
|
|
567
575
|
# or similar international option, with tracking
|
|
576
|
+
# - `BULK_EXPEDITED` - Bulk shipment with Expedited shipping
|
|
568
577
|
shipping_method: nil,
|
|
569
578
|
request_options: {}
|
|
570
579
|
)
|
|
@@ -610,16 +619,28 @@ module Lithic
|
|
|
610
619
|
sig do
|
|
611
620
|
params(
|
|
612
621
|
card_token: String,
|
|
622
|
+
client_device_id: String,
|
|
623
|
+
client_wallet_account_id: String,
|
|
613
624
|
digital_wallet:
|
|
614
625
|
Lithic::CardWebProvisionParams::DigitalWallet::OrSymbol,
|
|
626
|
+
server_session_id: String,
|
|
615
627
|
request_options: Lithic::RequestOptions::OrHash
|
|
616
|
-
).returns(Lithic::Models::CardWebProvisionResponse)
|
|
628
|
+
).returns(Lithic::Models::CardWebProvisionResponse::Variants)
|
|
617
629
|
end
|
|
618
630
|
def web_provision(
|
|
619
631
|
# The unique token of the card to add to the device's digital wallet.
|
|
620
632
|
card_token,
|
|
633
|
+
# Only applicable if `digital_wallet` is GOOGLE_PAY. Google Pay Web Push
|
|
634
|
+
# Provisioning device identifier required for the tokenization flow
|
|
635
|
+
client_device_id: nil,
|
|
636
|
+
# Only applicable if `digital_wallet` is GOOGLE_PAY. Google Pay Web Push
|
|
637
|
+
# Provisioning wallet account identifier required for the tokenization flow
|
|
638
|
+
client_wallet_account_id: nil,
|
|
621
639
|
# Name of digital wallet provider.
|
|
622
640
|
digital_wallet: nil,
|
|
641
|
+
# Only applicable if `digital_wallet` is GOOGLE_PAY. Google Pay Web Push
|
|
642
|
+
# Provisioning session identifier required for the FPAN flow.
|
|
643
|
+
server_session_id: nil,
|
|
623
644
|
request_options: {}
|
|
624
645
|
)
|
|
625
646
|
end
|
|
@@ -188,7 +188,7 @@ module Lithic
|
|
|
188
188
|
external_bank_account_token: String,
|
|
189
189
|
financial_account_token: String,
|
|
190
190
|
request_options: Lithic::RequestOptions::OrHash
|
|
191
|
-
).returns(Lithic::
|
|
191
|
+
).returns(Lithic::ExternalBankAccount)
|
|
192
192
|
end
|
|
193
193
|
def retry_prenote(
|
|
194
194
|
external_bank_account_token,
|
|
@@ -202,7 +202,7 @@ module Lithic
|
|
|
202
202
|
params(
|
|
203
203
|
external_bank_account_token: String,
|
|
204
204
|
request_options: Lithic::RequestOptions::OrHash
|
|
205
|
-
).returns(Lithic::
|
|
205
|
+
).returns(Lithic::ExternalBankAccount)
|
|
206
206
|
end
|
|
207
207
|
def unpause(external_bank_account_token, request_options: {})
|
|
208
208
|
end
|
|
@@ -12,9 +12,7 @@ module Lithic
|
|
|
12
12
|
last_transaction_event_token: String,
|
|
13
13
|
request_options: Lithic::RequestOptions::OrHash
|
|
14
14
|
).returns(
|
|
15
|
-
Lithic::Internal::SinglePage[
|
|
16
|
-
Lithic::Models::FinancialAccounts::BalanceListResponse
|
|
17
|
-
]
|
|
15
|
+
Lithic::Internal::SinglePage[Lithic::FinancialAccountBalance]
|
|
18
16
|
)
|
|
19
17
|
end
|
|
20
18
|
def list(
|
|
@@ -8,7 +8,7 @@ module Lithic
|
|
|
8
8
|
params(
|
|
9
9
|
funding_event_token: String,
|
|
10
10
|
request_options: Lithic::RequestOptions::OrHash
|
|
11
|
-
).returns(Lithic::
|
|
11
|
+
).returns(Lithic::FundingEvent)
|
|
12
12
|
end
|
|
13
13
|
def retrieve(
|
|
14
14
|
# Globally unique identifier for funding event.
|
|
@@ -24,9 +24,7 @@ module Lithic
|
|
|
24
24
|
page_size: Integer,
|
|
25
25
|
starting_after: String,
|
|
26
26
|
request_options: Lithic::RequestOptions::OrHash
|
|
27
|
-
).returns(
|
|
28
|
-
Lithic::Internal::CursorPage[Lithic::Models::FundingEventListResponse]
|
|
29
|
-
)
|
|
27
|
+
).returns(Lithic::Internal::CursorPage[Lithic::FundingEvent])
|
|
30
28
|
end
|
|
31
29
|
def list(
|
|
32
30
|
# A cursor representing an item's token before which a page of results should end.
|
|
@@ -10,9 +10,7 @@ module Lithic
|
|
|
10
10
|
params(
|
|
11
11
|
token: String,
|
|
12
12
|
request_options: Lithic::RequestOptions::OrHash
|
|
13
|
-
).returns(
|
|
14
|
-
Lithic::Models::Reports::Settlement::NetworkTotalRetrieveResponse
|
|
15
|
-
)
|
|
13
|
+
).returns(Lithic::NetworkTotal)
|
|
16
14
|
end
|
|
17
15
|
def retrieve(
|
|
18
16
|
# Token of the network total record to retrieve
|
|
@@ -37,11 +35,7 @@ module Lithic
|
|
|
37
35
|
settlement_institution_id: String,
|
|
38
36
|
starting_after: String,
|
|
39
37
|
request_options: Lithic::RequestOptions::OrHash
|
|
40
|
-
).returns(
|
|
41
|
-
Lithic::Internal::CursorPage[
|
|
42
|
-
Lithic::Models::Reports::Settlement::NetworkTotalListResponse
|
|
43
|
-
]
|
|
44
|
-
)
|
|
38
|
+
).returns(Lithic::Internal::CursorPage[Lithic::NetworkTotal])
|
|
45
39
|
end
|
|
46
40
|
def list(
|
|
47
41
|
# Datetime in RFC 3339 format. Only entries created after the specified time will
|
|
@@ -9,7 +9,7 @@ module Lithic
|
|
|
9
9
|
params(
|
|
10
10
|
three_ds_authentication_token: String,
|
|
11
11
|
request_options: Lithic::RequestOptions::OrHash
|
|
12
|
-
).returns(Lithic::
|
|
12
|
+
).returns(Lithic::ThreeDSAuthentication)
|
|
13
13
|
end
|
|
14
14
|
def retrieve(
|
|
15
15
|
# Globally unique identifier for the 3DS authentication.
|
|
@@ -164,7 +164,7 @@ module Lithic
|
|
|
164
164
|
wallet_recommended_decision:
|
|
165
165
|
Lithic::TokenizationSimulateParams::WalletRecommendedDecision::OrSymbol,
|
|
166
166
|
request_options: Lithic::RequestOptions::OrHash
|
|
167
|
-
).returns(Lithic::
|
|
167
|
+
).returns(Lithic::Tokenization)
|
|
168
168
|
end
|
|
169
169
|
def simulate(
|
|
170
170
|
# The three digit cvv for the card.
|
|
@@ -223,7 +223,7 @@ module Lithic
|
|
|
223
223
|
tokenization_token: String,
|
|
224
224
|
digital_card_art_token: String,
|
|
225
225
|
request_options: Lithic::RequestOptions::OrHash
|
|
226
|
-
).returns(Lithic::
|
|
226
|
+
).returns(Lithic::Tokenization)
|
|
227
227
|
end
|
|
228
228
|
def update_digital_card_art(
|
|
229
229
|
# Tokenization token
|
data/sig/lithic/client.rbs
CHANGED
|
@@ -29,6 +29,8 @@ module Lithic
|
|
|
29
29
|
|
|
30
30
|
attr_reader cards: Lithic::Resources::Cards
|
|
31
31
|
|
|
32
|
+
attr_reader card_bulk_orders: Lithic::Resources::CardBulkOrders
|
|
33
|
+
|
|
32
34
|
attr_reader balances: Lithic::Resources::Balances
|
|
33
35
|
|
|
34
36
|
attr_reader aggregate_balances: Lithic::Resources::AggregateBalances
|
|
@@ -67,6 +69,8 @@ module Lithic
|
|
|
67
69
|
|
|
68
70
|
attr_reader management_operations: Lithic::Resources::ManagementOperations
|
|
69
71
|
|
|
72
|
+
attr_reader internal_transaction: Lithic::Resources::InternalTransaction
|
|
73
|
+
|
|
70
74
|
attr_reader funding_events: Lithic::Resources::FundingEvents
|
|
71
75
|
|
|
72
76
|
attr_reader fraud: Lithic::Resources::Fraud
|
|
@@ -111,6 +111,8 @@ module Lithic
|
|
|
111
111
|
| :CARD
|
|
112
112
|
| :EXTERNAL_ACH
|
|
113
113
|
| :EXTERNAL_CHECK
|
|
114
|
+
| :EXTERNAL_FEDNOW
|
|
115
|
+
| :EXTERNAL_RTP
|
|
114
116
|
| :EXTERNAL_TRANSFER
|
|
115
117
|
| :EXTERNAL_WIRE
|
|
116
118
|
| :MANAGEMENT_ADJUSTMENT
|
|
@@ -133,6 +135,8 @@ module Lithic
|
|
|
133
135
|
CARD: :CARD
|
|
134
136
|
EXTERNAL_ACH: :EXTERNAL_ACH
|
|
135
137
|
EXTERNAL_CHECK: :EXTERNAL_CHECK
|
|
138
|
+
EXTERNAL_FEDNOW: :EXTERNAL_FEDNOW
|
|
139
|
+
EXTERNAL_RTP: :EXTERNAL_RTP
|
|
136
140
|
EXTERNAL_TRANSFER: :EXTERNAL_TRANSFER
|
|
137
141
|
EXTERNAL_WIRE: :EXTERNAL_WIRE
|
|
138
142
|
MANAGEMENT_ADJUSTMENT: :MANAGEMENT_ADJUSTMENT
|
|
@@ -98,6 +98,8 @@ module Lithic
|
|
|
98
98
|
| :CARD
|
|
99
99
|
| :EXTERNAL_ACH
|
|
100
100
|
| :EXTERNAL_CHECK
|
|
101
|
+
| :EXTERNAL_FEDNOW
|
|
102
|
+
| :EXTERNAL_RTP
|
|
101
103
|
| :EXTERNAL_TRANSFER
|
|
102
104
|
| :EXTERNAL_WIRE
|
|
103
105
|
| :MANAGEMENT_ADJUSTMENT
|
|
@@ -120,6 +122,8 @@ module Lithic
|
|
|
120
122
|
CARD: :CARD
|
|
121
123
|
EXTERNAL_ACH: :EXTERNAL_ACH
|
|
122
124
|
EXTERNAL_CHECK: :EXTERNAL_CHECK
|
|
125
|
+
EXTERNAL_FEDNOW: :EXTERNAL_FEDNOW
|
|
126
|
+
EXTERNAL_RTP: :EXTERNAL_RTP
|
|
123
127
|
EXTERNAL_TRANSFER: :EXTERNAL_TRANSFER
|
|
124
128
|
EXTERNAL_WIRE: :EXTERNAL_WIRE
|
|
125
129
|
MANAGEMENT_ADJUSTMENT: :MANAGEMENT_ADJUSTMENT
|
|
@@ -98,6 +98,8 @@ module Lithic
|
|
|
98
98
|
| :CARD
|
|
99
99
|
| :EXTERNAL_ACH
|
|
100
100
|
| :EXTERNAL_CHECK
|
|
101
|
+
| :EXTERNAL_FEDNOW
|
|
102
|
+
| :EXTERNAL_RTP
|
|
101
103
|
| :EXTERNAL_TRANSFER
|
|
102
104
|
| :EXTERNAL_WIRE
|
|
103
105
|
| :MANAGEMENT_ADJUSTMENT
|
|
@@ -120,6 +122,8 @@ module Lithic
|
|
|
120
122
|
CARD: :CARD
|
|
121
123
|
EXTERNAL_ACH: :EXTERNAL_ACH
|
|
122
124
|
EXTERNAL_CHECK: :EXTERNAL_CHECK
|
|
125
|
+
EXTERNAL_FEDNOW: :EXTERNAL_FEDNOW
|
|
126
|
+
EXTERNAL_RTP: :EXTERNAL_RTP
|
|
123
127
|
EXTERNAL_TRANSFER: :EXTERNAL_TRANSFER
|
|
124
128
|
EXTERNAL_WIRE: :EXTERNAL_WIRE
|
|
125
129
|
MANAGEMENT_ADJUSTMENT: :MANAGEMENT_ADJUSTMENT
|