lithic 0.16.0 → 0.17.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 +9 -0
- data/README.md +1 -1
- data/lib/lithic/models/auth_rules/ach_payment_update_action.rb +108 -0
- data/lib/lithic/models/auth_rules/auth_rule.rb +18 -14
- data/lib/lithic/models/auth_rules/auth_rule_version.rb +5 -3
- data/lib/lithic/models/auth_rules/conditional_ach_payment_update_action_parameters.rb +142 -0
- data/lib/lithic/models/auth_rules/event_stream.rb +1 -0
- data/lib/lithic/models/auth_rules/rule_feature.rb +26 -4
- data/lib/lithic/models/auth_rules/typescript_code_parameters.rb +2 -2
- data/lib/lithic/models/auth_rules/v2_create_params.rb +39 -33
- data/lib/lithic/models/auth_rules/v2_draft_params.rb +5 -3
- data/lib/lithic/models/auth_rules/v2_list_results_response.rb +426 -1
- data/lib/lithic/resources/auth_rules/v2.rb +2 -2
- data/lib/lithic/version.rb +1 -1
- data/lib/lithic.rb +2 -0
- data/rbi/lithic/models/auth_rules/ach_payment_update_action.rbi +237 -0
- data/rbi/lithic/models/auth_rules/auth_rule.rbi +16 -12
- data/rbi/lithic/models/auth_rules/auth_rule_version.rbi +2 -0
- data/rbi/lithic/models/auth_rules/conditional_ach_payment_update_action_parameters.rbi +298 -0
- data/rbi/lithic/models/auth_rules/event_stream.rbi +5 -0
- data/rbi/lithic/models/auth_rules/rule_feature.rbi +38 -3
- data/rbi/lithic/models/auth_rules/typescript_code_parameters.rbi +3 -0
- data/rbi/lithic/models/auth_rules/v2_create_params.rbi +48 -36
- data/rbi/lithic/models/auth_rules/v2_draft_params.rbi +4 -0
- data/rbi/lithic/models/auth_rules/v2_list_results_response.rbi +826 -1
- data/rbi/lithic/resources/auth_rules/v2.rbi +1 -0
- data/sig/lithic/models/auth_rules/ach_payment_update_action.rbs +99 -0
- data/sig/lithic/models/auth_rules/auth_rule.rbs +2 -0
- data/sig/lithic/models/auth_rules/auth_rule_version.rbs +1 -0
- data/sig/lithic/models/auth_rules/conditional_ach_payment_update_action_parameters.rbs +81 -0
- data/sig/lithic/models/auth_rules/event_stream.rbs +2 -0
- data/sig/lithic/models/auth_rules/rule_feature.rbs +15 -0
- data/sig/lithic/models/auth_rules/v2_create_params.rbs +3 -0
- data/sig/lithic/models/auth_rules/v2_draft_params.rbs +1 -0
- data/sig/lithic/models/auth_rules/v2_list_results_response.rbs +355 -0
- metadata +8 -2
|
@@ -17,11 +17,13 @@ module Lithic
|
|
|
17
17
|
# ACH_CREDIT_RECEIPT and ACH_DEBIT_RECEIPT event stream rules.
|
|
18
18
|
# - `CARD_TRANSACTION`: The card transaction being evaluated. Only available for
|
|
19
19
|
# CARD_TRANSACTION_UPDATE event stream rules.
|
|
20
|
+
# - `ACH_PAYMENT`: The ACH payment being evaluated. Only available for
|
|
21
|
+
# ACH_PAYMENT_UPDATE event stream rules.
|
|
20
22
|
# - `CARD`: The card associated with the event. Available for AUTHORIZATION,
|
|
21
23
|
# THREE_DS_AUTHENTICATION, and CARD_TRANSACTION_UPDATE event stream rules.
|
|
22
|
-
# - `ACCOUNT_HOLDER`: The account holder associated with the
|
|
23
|
-
# AUTHORIZATION, THREE_DS_AUTHENTICATION,
|
|
24
|
-
# stream rules.
|
|
24
|
+
# - `ACCOUNT_HOLDER`: The account holder associated with the event. Available for
|
|
25
|
+
# AUTHORIZATION, THREE_DS_AUTHENTICATION, CARD_TRANSACTION_UPDATE, and
|
|
26
|
+
# ACH_PAYMENT_UPDATE event stream rules.
|
|
25
27
|
# - `IP_METADATA`: IP address metadata for the request. Available for
|
|
26
28
|
# THREE_DS_AUTHENTICATION event stream rules.
|
|
27
29
|
# - `SPEND_VELOCITY`: Spend velocity data for the card or account. Requires
|
|
@@ -42,6 +44,7 @@ module Lithic
|
|
|
42
44
|
Lithic::AuthRules::RuleFeature::TokenizationFeature,
|
|
43
45
|
Lithic::AuthRules::RuleFeature::ACHReceiptFeature,
|
|
44
46
|
Lithic::AuthRules::RuleFeature::CardTransactionFeature,
|
|
47
|
+
Lithic::AuthRules::RuleFeature::ACHPaymentFeature,
|
|
45
48
|
Lithic::AuthRules::RuleFeature::CardFeature,
|
|
46
49
|
Lithic::AuthRules::RuleFeature::AccountHolderFeature,
|
|
47
50
|
Lithic::AuthRules::RuleFeature::IPMetadataFeature,
|
|
@@ -210,6 +213,38 @@ module Lithic
|
|
|
210
213
|
end
|
|
211
214
|
end
|
|
212
215
|
|
|
216
|
+
class ACHPaymentFeature < Lithic::Internal::Type::BaseModel
|
|
217
|
+
OrHash =
|
|
218
|
+
T.type_alias do
|
|
219
|
+
T.any(
|
|
220
|
+
Lithic::AuthRules::RuleFeature::ACHPaymentFeature,
|
|
221
|
+
Lithic::Internal::AnyHash
|
|
222
|
+
)
|
|
223
|
+
end
|
|
224
|
+
|
|
225
|
+
sig { returns(Symbol) }
|
|
226
|
+
attr_accessor :type
|
|
227
|
+
|
|
228
|
+
# The variable name for this feature in the rule function signature
|
|
229
|
+
sig { returns(T.nilable(String)) }
|
|
230
|
+
attr_reader :name
|
|
231
|
+
|
|
232
|
+
sig { params(name: String).void }
|
|
233
|
+
attr_writer :name
|
|
234
|
+
|
|
235
|
+
sig { params(name: String, type: Symbol).returns(T.attached_class) }
|
|
236
|
+
def self.new(
|
|
237
|
+
# The variable name for this feature in the rule function signature
|
|
238
|
+
name: nil,
|
|
239
|
+
type: :ACH_PAYMENT
|
|
240
|
+
)
|
|
241
|
+
end
|
|
242
|
+
|
|
243
|
+
sig { override.returns({ type: Symbol, name: String }) }
|
|
244
|
+
def to_hash
|
|
245
|
+
end
|
|
246
|
+
end
|
|
247
|
+
|
|
213
248
|
class CardFeature < Lithic::Internal::Type::BaseModel
|
|
214
249
|
OrHash =
|
|
215
250
|
T.type_alias do
|
|
@@ -28,6 +28,7 @@ module Lithic
|
|
|
28
28
|
Lithic::AuthRules::RuleFeature::TokenizationFeature,
|
|
29
29
|
Lithic::AuthRules::RuleFeature::ACHReceiptFeature,
|
|
30
30
|
Lithic::AuthRules::RuleFeature::CardTransactionFeature,
|
|
31
|
+
Lithic::AuthRules::RuleFeature::ACHPaymentFeature,
|
|
31
32
|
Lithic::AuthRules::RuleFeature::CardFeature,
|
|
32
33
|
Lithic::AuthRules::RuleFeature::AccountHolderFeature,
|
|
33
34
|
Lithic::AuthRules::RuleFeature::IPMetadataFeature,
|
|
@@ -51,6 +52,7 @@ module Lithic
|
|
|
51
52
|
Lithic::AuthRules::RuleFeature::TokenizationFeature::OrHash,
|
|
52
53
|
Lithic::AuthRules::RuleFeature::ACHReceiptFeature::OrHash,
|
|
53
54
|
Lithic::AuthRules::RuleFeature::CardTransactionFeature::OrHash,
|
|
55
|
+
Lithic::AuthRules::RuleFeature::ACHPaymentFeature::OrHash,
|
|
54
56
|
Lithic::AuthRules::RuleFeature::CardFeature::OrHash,
|
|
55
57
|
Lithic::AuthRules::RuleFeature::AccountHolderFeature::OrHash,
|
|
56
58
|
Lithic::AuthRules::RuleFeature::IPMetadataFeature::OrHash,
|
|
@@ -82,6 +84,7 @@ module Lithic
|
|
|
82
84
|
Lithic::AuthRules::RuleFeature::TokenizationFeature,
|
|
83
85
|
Lithic::AuthRules::RuleFeature::ACHReceiptFeature,
|
|
84
86
|
Lithic::AuthRules::RuleFeature::CardTransactionFeature,
|
|
87
|
+
Lithic::AuthRules::RuleFeature::ACHPaymentFeature,
|
|
85
88
|
Lithic::AuthRules::RuleFeature::CardFeature,
|
|
86
89
|
Lithic::AuthRules::RuleFeature::AccountHolderFeature,
|
|
87
90
|
Lithic::AuthRules::RuleFeature::IPMetadataFeature,
|
|
@@ -86,6 +86,7 @@ module Lithic
|
|
|
86
86
|
Lithic::AuthRules::ConditionalACHActionParameters,
|
|
87
87
|
Lithic::AuthRules::ConditionalTokenizationActionParameters,
|
|
88
88
|
Lithic::AuthRules::ConditionalCardTransactionUpdateActionParameters,
|
|
89
|
+
Lithic::AuthRules::ConditionalACHPaymentUpdateActionParameters,
|
|
89
90
|
Lithic::AuthRules::TypescriptCodeParameters,
|
|
90
91
|
Lithic::AuthRules::ConditionalAuthorizationAdjustmentParameters
|
|
91
92
|
)
|
|
@@ -103,11 +104,11 @@ module Lithic
|
|
|
103
104
|
# - `VELOCITY_LIMIT`: AUTHORIZATION event stream.
|
|
104
105
|
# - `MERCHANT_LOCK`: AUTHORIZATION event stream.
|
|
105
106
|
# - `CONDITIONAL_ACTION`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
|
|
106
|
-
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT,
|
|
107
|
-
# stream.
|
|
107
|
+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, CARD_TRANSACTION_UPDATE, or
|
|
108
|
+
# ACH_PAYMENT_UPDATE event stream.
|
|
108
109
|
# - `TYPESCRIPT_CODE`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
|
|
109
|
-
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT,
|
|
110
|
-
# stream.
|
|
110
|
+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, CARD_TRANSACTION_UPDATE, or
|
|
111
|
+
# ACH_PAYMENT_UPDATE event stream.
|
|
111
112
|
sig do
|
|
112
113
|
returns(
|
|
113
114
|
Lithic::AuthRules::V2CreateParams::Body::AccountLevelRule::Type::OrSymbol
|
|
@@ -156,6 +157,7 @@ module Lithic
|
|
|
156
157
|
Lithic::AuthRules::ConditionalACHActionParameters::OrHash,
|
|
157
158
|
Lithic::AuthRules::ConditionalTokenizationActionParameters::OrHash,
|
|
158
159
|
Lithic::AuthRules::ConditionalCardTransactionUpdateActionParameters::OrHash,
|
|
160
|
+
Lithic::AuthRules::ConditionalACHPaymentUpdateActionParameters::OrHash,
|
|
159
161
|
Lithic::AuthRules::TypescriptCodeParameters::OrHash,
|
|
160
162
|
Lithic::AuthRules::ConditionalAuthorizationAdjustmentParameters::OrHash
|
|
161
163
|
),
|
|
@@ -180,11 +182,11 @@ module Lithic
|
|
|
180
182
|
# - `VELOCITY_LIMIT`: AUTHORIZATION event stream.
|
|
181
183
|
# - `MERCHANT_LOCK`: AUTHORIZATION event stream.
|
|
182
184
|
# - `CONDITIONAL_ACTION`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
|
|
183
|
-
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT,
|
|
184
|
-
# stream.
|
|
185
|
+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, CARD_TRANSACTION_UPDATE, or
|
|
186
|
+
# ACH_PAYMENT_UPDATE event stream.
|
|
185
187
|
# - `TYPESCRIPT_CODE`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
|
|
186
|
-
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT,
|
|
187
|
-
# stream.
|
|
188
|
+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, CARD_TRANSACTION_UPDATE, or
|
|
189
|
+
# ACH_PAYMENT_UPDATE event stream.
|
|
188
190
|
type:,
|
|
189
191
|
# Account tokens to which the Auth Rule applies.
|
|
190
192
|
account_tokens: nil,
|
|
@@ -210,6 +212,7 @@ module Lithic
|
|
|
210
212
|
Lithic::AuthRules::ConditionalACHActionParameters,
|
|
211
213
|
Lithic::AuthRules::ConditionalTokenizationActionParameters,
|
|
212
214
|
Lithic::AuthRules::ConditionalCardTransactionUpdateActionParameters,
|
|
215
|
+
Lithic::AuthRules::ConditionalACHPaymentUpdateActionParameters,
|
|
213
216
|
Lithic::AuthRules::TypescriptCodeParameters,
|
|
214
217
|
Lithic::AuthRules::ConditionalAuthorizationAdjustmentParameters
|
|
215
218
|
),
|
|
@@ -240,6 +243,7 @@ module Lithic
|
|
|
240
243
|
Lithic::AuthRules::ConditionalACHActionParameters,
|
|
241
244
|
Lithic::AuthRules::ConditionalTokenizationActionParameters,
|
|
242
245
|
Lithic::AuthRules::ConditionalCardTransactionUpdateActionParameters,
|
|
246
|
+
Lithic::AuthRules::ConditionalACHPaymentUpdateActionParameters,
|
|
243
247
|
Lithic::AuthRules::TypescriptCodeParameters,
|
|
244
248
|
Lithic::AuthRules::ConditionalAuthorizationAdjustmentParameters
|
|
245
249
|
)
|
|
@@ -266,11 +270,11 @@ module Lithic
|
|
|
266
270
|
# - `VELOCITY_LIMIT`: AUTHORIZATION event stream.
|
|
267
271
|
# - `MERCHANT_LOCK`: AUTHORIZATION event stream.
|
|
268
272
|
# - `CONDITIONAL_ACTION`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
|
|
269
|
-
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT,
|
|
270
|
-
# stream.
|
|
273
|
+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, CARD_TRANSACTION_UPDATE, or
|
|
274
|
+
# ACH_PAYMENT_UPDATE event stream.
|
|
271
275
|
# - `TYPESCRIPT_CODE`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
|
|
272
|
-
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT,
|
|
273
|
-
# stream.
|
|
276
|
+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, CARD_TRANSACTION_UPDATE, or
|
|
277
|
+
# ACH_PAYMENT_UPDATE event stream.
|
|
274
278
|
module Type
|
|
275
279
|
extend Lithic::Internal::Type::Enum
|
|
276
280
|
|
|
@@ -346,6 +350,7 @@ module Lithic
|
|
|
346
350
|
Lithic::AuthRules::ConditionalACHActionParameters,
|
|
347
351
|
Lithic::AuthRules::ConditionalTokenizationActionParameters,
|
|
348
352
|
Lithic::AuthRules::ConditionalCardTransactionUpdateActionParameters,
|
|
353
|
+
Lithic::AuthRules::ConditionalACHPaymentUpdateActionParameters,
|
|
349
354
|
Lithic::AuthRules::TypescriptCodeParameters,
|
|
350
355
|
Lithic::AuthRules::ConditionalAuthorizationAdjustmentParameters
|
|
351
356
|
)
|
|
@@ -363,11 +368,11 @@ module Lithic
|
|
|
363
368
|
# - `VELOCITY_LIMIT`: AUTHORIZATION event stream.
|
|
364
369
|
# - `MERCHANT_LOCK`: AUTHORIZATION event stream.
|
|
365
370
|
# - `CONDITIONAL_ACTION`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
|
|
366
|
-
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT,
|
|
367
|
-
# stream.
|
|
371
|
+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, CARD_TRANSACTION_UPDATE, or
|
|
372
|
+
# ACH_PAYMENT_UPDATE event stream.
|
|
368
373
|
# - `TYPESCRIPT_CODE`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
|
|
369
|
-
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT,
|
|
370
|
-
# stream.
|
|
374
|
+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, CARD_TRANSACTION_UPDATE, or
|
|
375
|
+
# ACH_PAYMENT_UPDATE event stream.
|
|
371
376
|
sig do
|
|
372
377
|
returns(
|
|
373
378
|
Lithic::AuthRules::V2CreateParams::Body::CardLevelRule::Type::OrSymbol
|
|
@@ -403,6 +408,7 @@ module Lithic
|
|
|
403
408
|
Lithic::AuthRules::ConditionalACHActionParameters::OrHash,
|
|
404
409
|
Lithic::AuthRules::ConditionalTokenizationActionParameters::OrHash,
|
|
405
410
|
Lithic::AuthRules::ConditionalCardTransactionUpdateActionParameters::OrHash,
|
|
411
|
+
Lithic::AuthRules::ConditionalACHPaymentUpdateActionParameters::OrHash,
|
|
406
412
|
Lithic::AuthRules::TypescriptCodeParameters::OrHash,
|
|
407
413
|
Lithic::AuthRules::ConditionalAuthorizationAdjustmentParameters::OrHash
|
|
408
414
|
),
|
|
@@ -427,11 +433,11 @@ module Lithic
|
|
|
427
433
|
# - `VELOCITY_LIMIT`: AUTHORIZATION event stream.
|
|
428
434
|
# - `MERCHANT_LOCK`: AUTHORIZATION event stream.
|
|
429
435
|
# - `CONDITIONAL_ACTION`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
|
|
430
|
-
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT,
|
|
431
|
-
# stream.
|
|
436
|
+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, CARD_TRANSACTION_UPDATE, or
|
|
437
|
+
# ACH_PAYMENT_UPDATE event stream.
|
|
432
438
|
# - `TYPESCRIPT_CODE`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
|
|
433
|
-
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT,
|
|
434
|
-
# stream.
|
|
439
|
+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, CARD_TRANSACTION_UPDATE, or
|
|
440
|
+
# ACH_PAYMENT_UPDATE event stream.
|
|
435
441
|
type:,
|
|
436
442
|
# The event stream during which the rule will be evaluated.
|
|
437
443
|
event_stream: nil,
|
|
@@ -454,6 +460,7 @@ module Lithic
|
|
|
454
460
|
Lithic::AuthRules::ConditionalACHActionParameters,
|
|
455
461
|
Lithic::AuthRules::ConditionalTokenizationActionParameters,
|
|
456
462
|
Lithic::AuthRules::ConditionalCardTransactionUpdateActionParameters,
|
|
463
|
+
Lithic::AuthRules::ConditionalACHPaymentUpdateActionParameters,
|
|
457
464
|
Lithic::AuthRules::TypescriptCodeParameters,
|
|
458
465
|
Lithic::AuthRules::ConditionalAuthorizationAdjustmentParameters
|
|
459
466
|
),
|
|
@@ -482,6 +489,7 @@ module Lithic
|
|
|
482
489
|
Lithic::AuthRules::ConditionalACHActionParameters,
|
|
483
490
|
Lithic::AuthRules::ConditionalTokenizationActionParameters,
|
|
484
491
|
Lithic::AuthRules::ConditionalCardTransactionUpdateActionParameters,
|
|
492
|
+
Lithic::AuthRules::ConditionalACHPaymentUpdateActionParameters,
|
|
485
493
|
Lithic::AuthRules::TypescriptCodeParameters,
|
|
486
494
|
Lithic::AuthRules::ConditionalAuthorizationAdjustmentParameters
|
|
487
495
|
)
|
|
@@ -508,11 +516,11 @@ module Lithic
|
|
|
508
516
|
# - `VELOCITY_LIMIT`: AUTHORIZATION event stream.
|
|
509
517
|
# - `MERCHANT_LOCK`: AUTHORIZATION event stream.
|
|
510
518
|
# - `CONDITIONAL_ACTION`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
|
|
511
|
-
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT,
|
|
512
|
-
# stream.
|
|
519
|
+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, CARD_TRANSACTION_UPDATE, or
|
|
520
|
+
# ACH_PAYMENT_UPDATE event stream.
|
|
513
521
|
# - `TYPESCRIPT_CODE`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
|
|
514
|
-
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT,
|
|
515
|
-
# stream.
|
|
522
|
+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, CARD_TRANSACTION_UPDATE, or
|
|
523
|
+
# ACH_PAYMENT_UPDATE event stream.
|
|
516
524
|
module Type
|
|
517
525
|
extend Lithic::Internal::Type::Enum
|
|
518
526
|
|
|
@@ -584,6 +592,7 @@ module Lithic
|
|
|
584
592
|
Lithic::AuthRules::ConditionalACHActionParameters,
|
|
585
593
|
Lithic::AuthRules::ConditionalTokenizationActionParameters,
|
|
586
594
|
Lithic::AuthRules::ConditionalCardTransactionUpdateActionParameters,
|
|
595
|
+
Lithic::AuthRules::ConditionalACHPaymentUpdateActionParameters,
|
|
587
596
|
Lithic::AuthRules::TypescriptCodeParameters,
|
|
588
597
|
Lithic::AuthRules::ConditionalAuthorizationAdjustmentParameters
|
|
589
598
|
)
|
|
@@ -605,11 +614,11 @@ module Lithic
|
|
|
605
614
|
# - `VELOCITY_LIMIT`: AUTHORIZATION event stream.
|
|
606
615
|
# - `MERCHANT_LOCK`: AUTHORIZATION event stream.
|
|
607
616
|
# - `CONDITIONAL_ACTION`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
|
|
608
|
-
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT,
|
|
609
|
-
# stream.
|
|
617
|
+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, CARD_TRANSACTION_UPDATE, or
|
|
618
|
+
# ACH_PAYMENT_UPDATE event stream.
|
|
610
619
|
# - `TYPESCRIPT_CODE`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
|
|
611
|
-
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT,
|
|
612
|
-
# stream.
|
|
620
|
+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, CARD_TRANSACTION_UPDATE, or
|
|
621
|
+
# ACH_PAYMENT_UPDATE event stream.
|
|
613
622
|
sig do
|
|
614
623
|
returns(
|
|
615
624
|
Lithic::AuthRules::V2CreateParams::Body::ProgramLevelRule::Type::OrSymbol
|
|
@@ -667,6 +676,7 @@ module Lithic
|
|
|
667
676
|
Lithic::AuthRules::ConditionalACHActionParameters::OrHash,
|
|
668
677
|
Lithic::AuthRules::ConditionalTokenizationActionParameters::OrHash,
|
|
669
678
|
Lithic::AuthRules::ConditionalCardTransactionUpdateActionParameters::OrHash,
|
|
679
|
+
Lithic::AuthRules::ConditionalACHPaymentUpdateActionParameters::OrHash,
|
|
670
680
|
Lithic::AuthRules::TypescriptCodeParameters::OrHash,
|
|
671
681
|
Lithic::AuthRules::ConditionalAuthorizationAdjustmentParameters::OrHash
|
|
672
682
|
),
|
|
@@ -695,11 +705,11 @@ module Lithic
|
|
|
695
705
|
# - `VELOCITY_LIMIT`: AUTHORIZATION event stream.
|
|
696
706
|
# - `MERCHANT_LOCK`: AUTHORIZATION event stream.
|
|
697
707
|
# - `CONDITIONAL_ACTION`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
|
|
698
|
-
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT,
|
|
699
|
-
# stream.
|
|
708
|
+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, CARD_TRANSACTION_UPDATE, or
|
|
709
|
+
# ACH_PAYMENT_UPDATE event stream.
|
|
700
710
|
# - `TYPESCRIPT_CODE`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
|
|
701
|
-
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT,
|
|
702
|
-
# stream.
|
|
711
|
+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, CARD_TRANSACTION_UPDATE, or
|
|
712
|
+
# ACH_PAYMENT_UPDATE event stream.
|
|
703
713
|
type:,
|
|
704
714
|
# The event stream during which the rule will be evaluated.
|
|
705
715
|
event_stream: nil,
|
|
@@ -727,6 +737,7 @@ module Lithic
|
|
|
727
737
|
Lithic::AuthRules::ConditionalACHActionParameters,
|
|
728
738
|
Lithic::AuthRules::ConditionalTokenizationActionParameters,
|
|
729
739
|
Lithic::AuthRules::ConditionalCardTransactionUpdateActionParameters,
|
|
740
|
+
Lithic::AuthRules::ConditionalACHPaymentUpdateActionParameters,
|
|
730
741
|
Lithic::AuthRules::TypescriptCodeParameters,
|
|
731
742
|
Lithic::AuthRules::ConditionalAuthorizationAdjustmentParameters
|
|
732
743
|
),
|
|
@@ -759,6 +770,7 @@ module Lithic
|
|
|
759
770
|
Lithic::AuthRules::ConditionalACHActionParameters,
|
|
760
771
|
Lithic::AuthRules::ConditionalTokenizationActionParameters,
|
|
761
772
|
Lithic::AuthRules::ConditionalCardTransactionUpdateActionParameters,
|
|
773
|
+
Lithic::AuthRules::ConditionalACHPaymentUpdateActionParameters,
|
|
762
774
|
Lithic::AuthRules::TypescriptCodeParameters,
|
|
763
775
|
Lithic::AuthRules::ConditionalAuthorizationAdjustmentParameters
|
|
764
776
|
)
|
|
@@ -785,11 +797,11 @@ module Lithic
|
|
|
785
797
|
# - `VELOCITY_LIMIT`: AUTHORIZATION event stream.
|
|
786
798
|
# - `MERCHANT_LOCK`: AUTHORIZATION event stream.
|
|
787
799
|
# - `CONDITIONAL_ACTION`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
|
|
788
|
-
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT,
|
|
789
|
-
# stream.
|
|
800
|
+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, CARD_TRANSACTION_UPDATE, or
|
|
801
|
+
# ACH_PAYMENT_UPDATE event stream.
|
|
790
802
|
# - `TYPESCRIPT_CODE`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
|
|
791
|
-
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT,
|
|
792
|
-
# stream.
|
|
803
|
+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, CARD_TRANSACTION_UPDATE, or
|
|
804
|
+
# ACH_PAYMENT_UPDATE event stream.
|
|
793
805
|
module Type
|
|
794
806
|
extend Lithic::Internal::Type::Enum
|
|
795
807
|
|
|
@@ -28,6 +28,7 @@ module Lithic
|
|
|
28
28
|
Lithic::AuthRules::ConditionalACHActionParameters,
|
|
29
29
|
Lithic::AuthRules::ConditionalTokenizationActionParameters,
|
|
30
30
|
Lithic::AuthRules::ConditionalCardTransactionUpdateActionParameters,
|
|
31
|
+
Lithic::AuthRules::ConditionalACHPaymentUpdateActionParameters,
|
|
31
32
|
Lithic::AuthRules::TypescriptCodeParameters,
|
|
32
33
|
Lithic::AuthRules::ConditionalAuthorizationAdjustmentParameters
|
|
33
34
|
)
|
|
@@ -50,6 +51,7 @@ module Lithic
|
|
|
50
51
|
Lithic::AuthRules::ConditionalACHActionParameters::OrHash,
|
|
51
52
|
Lithic::AuthRules::ConditionalTokenizationActionParameters::OrHash,
|
|
52
53
|
Lithic::AuthRules::ConditionalCardTransactionUpdateActionParameters::OrHash,
|
|
54
|
+
Lithic::AuthRules::ConditionalACHPaymentUpdateActionParameters::OrHash,
|
|
53
55
|
Lithic::AuthRules::TypescriptCodeParameters::OrHash,
|
|
54
56
|
Lithic::AuthRules::ConditionalAuthorizationAdjustmentParameters::OrHash
|
|
55
57
|
)
|
|
@@ -80,6 +82,7 @@ module Lithic
|
|
|
80
82
|
Lithic::AuthRules::ConditionalACHActionParameters,
|
|
81
83
|
Lithic::AuthRules::ConditionalTokenizationActionParameters,
|
|
82
84
|
Lithic::AuthRules::ConditionalCardTransactionUpdateActionParameters,
|
|
85
|
+
Lithic::AuthRules::ConditionalACHPaymentUpdateActionParameters,
|
|
83
86
|
Lithic::AuthRules::TypescriptCodeParameters,
|
|
84
87
|
Lithic::AuthRules::ConditionalAuthorizationAdjustmentParameters
|
|
85
88
|
)
|
|
@@ -106,6 +109,7 @@ module Lithic
|
|
|
106
109
|
Lithic::AuthRules::ConditionalACHActionParameters,
|
|
107
110
|
Lithic::AuthRules::ConditionalTokenizationActionParameters,
|
|
108
111
|
Lithic::AuthRules::ConditionalCardTransactionUpdateActionParameters,
|
|
112
|
+
Lithic::AuthRules::ConditionalACHPaymentUpdateActionParameters,
|
|
109
113
|
Lithic::AuthRules::TypescriptCodeParameters,
|
|
110
114
|
Lithic::AuthRules::ConditionalAuthorizationAdjustmentParameters
|
|
111
115
|
)
|