Skip to content

Commit 1071dc2

Browse files
feat(api): add CardTransactionFeature to auth_rules RuleFeature
1 parent 745a6cd commit 1071dc2

10 files changed

Lines changed: 133 additions & 35 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 213
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic/lithic-b42f0fb5ca219622c46728ac767a2a23ec6a8aecd2b32c92efa449fd69576a6d.yml
3-
openapi_spec_hash: b591dcd3405c0738c10b626852284a1b
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic/lithic-6200f208b7ffdb9b4c7dd8468dbfe69f0078f8b8b0fd171ba2edc1c2a641f185.yml
3+
openapi_spec_hash: 2c396033aca49407378b3982e46d19e6
44
config_hash: 126e04f676f61e5871a82889336dbf9d

lib/lithic/models/auth_rules/auth_rule.rb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ class AuthRule < Lithic::Internal::Type::BaseModel
8484
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
8585
# stream.
8686
# - `TYPESCRIPT_CODE`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
87-
# ACH_CREDIT_RECEIPT, or ACH_DEBIT_RECEIPT event stream.
87+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
88+
# stream.
8889
#
8990
# @return [Symbol, Lithic::Models::AuthRules::AuthRule::Type]
9091
required :type, enum: -> { Lithic::AuthRules::AuthRule::Type }
@@ -332,7 +333,8 @@ module State
332333
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
333334
# stream.
334335
# - `TYPESCRIPT_CODE`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
335-
# ACH_CREDIT_RECEIPT, or ACH_DEBIT_RECEIPT event stream.
336+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
337+
# stream.
336338
#
337339
# @see Lithic::Models::AuthRules::AuthRule#type
338340
module Type

lib/lithic/models/auth_rules/rule_feature.rb

Lines changed: 29 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,22 @@ module AuthRules
1515
# TOKENIZATION event stream rules.
1616
# - `ACH_RECEIPT`: The ACH receipt being evaluated. Only available for
1717
# ACH_CREDIT_RECEIPT and ACH_DEBIT_RECEIPT event stream rules.
18-
# - `CARD`: The card associated with the event. Available for AUTHORIZATION and
19-
# THREE_DS_AUTHENTICATION event stream rules.
18+
# - `CARD_TRANSACTION`: The card transaction being evaluated. Only available for
19+
# CARD_TRANSACTION_UPDATE event stream rules.
20+
# - `CARD`: The card associated with the event. Available for AUTHORIZATION,
21+
# THREE_DS_AUTHENTICATION, and CARD_TRANSACTION_UPDATE event stream rules.
2022
# - `ACCOUNT_HOLDER`: The account holder associated with the card. Available for
21-
# AUTHORIZATION and THREE_DS_AUTHENTICATION event stream rules.
23+
# AUTHORIZATION, THREE_DS_AUTHENTICATION, and CARD_TRANSACTION_UPDATE event
24+
# stream rules.
2225
# - `IP_METADATA`: IP address metadata for the request. Available for
2326
# THREE_DS_AUTHENTICATION event stream rules.
2427
# - `SPEND_VELOCITY`: Spend velocity data for the card or account. Requires
2528
# `scope`, `period`, and optionally `filters` to configure the velocity
2629
# calculation. Available for AUTHORIZATION event stream rules.
2730
# - `TRANSACTION_HISTORY_SIGNALS`: Behavioral feature state derived from the
2831
# entity's transaction history. Requires `scope` to specify whether to load
29-
# card, account, or business account history. Available for AUTHORIZATION event
30-
# stream rules.
32+
# card, account, or business account history. Available for AUTHORIZATION and
33+
# CARD_TRANSACTION_UPDATE event stream rules.
3134
module RuleFeature
3235
extend Lithic::Internal::Type::Union
3336

@@ -39,6 +42,8 @@ module RuleFeature
3942

4043
variant -> { Lithic::AuthRules::RuleFeature::ACHReceiptFeature }
4144

45+
variant -> { Lithic::AuthRules::RuleFeature::CardTransactionFeature }
46+
4247
variant -> { Lithic::AuthRules::RuleFeature::CardFeature }
4348

4449
variant -> { Lithic::AuthRules::RuleFeature::AccountHolderFeature }
@@ -121,6 +126,24 @@ class ACHReceiptFeature < Lithic::Internal::Type::BaseModel
121126
# @param type [Symbol, :ACH_RECEIPT]
122127
end
123128

129+
class CardTransactionFeature < Lithic::Internal::Type::BaseModel
130+
# @!attribute type
131+
#
132+
# @return [Symbol, :CARD_TRANSACTION]
133+
required :type, const: :CARD_TRANSACTION
134+
135+
# @!attribute name
136+
# The variable name for this feature in the rule function signature
137+
#
138+
# @return [String, nil]
139+
optional :name, String
140+
141+
# @!method initialize(name: nil, type: :CARD_TRANSACTION)
142+
# @param name [String] The variable name for this feature in the rule function signature
143+
#
144+
# @param type [Symbol, :CARD_TRANSACTION]
145+
end
146+
124147
class CardFeature < Lithic::Internal::Type::BaseModel
125148
# @!attribute type
126149
#
@@ -270,7 +293,7 @@ module Scope
270293
end
271294

272295
# @!method self.variants
273-
# @return [Array(Lithic::Models::AuthRules::RuleFeature::AuthorizationFeature, Lithic::Models::AuthRules::RuleFeature::AuthenticationFeature, Lithic::Models::AuthRules::RuleFeature::TokenizationFeature, Lithic::Models::AuthRules::RuleFeature::ACHReceiptFeature, Lithic::Models::AuthRules::RuleFeature::CardFeature, Lithic::Models::AuthRules::RuleFeature::AccountHolderFeature, Lithic::Models::AuthRules::RuleFeature::IPMetadataFeature, Lithic::Models::AuthRules::RuleFeature::SpendVelocityFeature, Lithic::Models::AuthRules::RuleFeature::TransactionHistorySignalsFeature)]
296+
# @return [Array(Lithic::Models::AuthRules::RuleFeature::AuthorizationFeature, Lithic::Models::AuthRules::RuleFeature::AuthenticationFeature, Lithic::Models::AuthRules::RuleFeature::TokenizationFeature, Lithic::Models::AuthRules::RuleFeature::ACHReceiptFeature, Lithic::Models::AuthRules::RuleFeature::CardTransactionFeature, Lithic::Models::AuthRules::RuleFeature::CardFeature, Lithic::Models::AuthRules::RuleFeature::AccountHolderFeature, Lithic::Models::AuthRules::RuleFeature::IPMetadataFeature, Lithic::Models::AuthRules::RuleFeature::SpendVelocityFeature, Lithic::Models::AuthRules::RuleFeature::TransactionHistorySignalsFeature)]
274297
end
275298
end
276299
end

lib/lithic/models/auth_rules/typescript_code_parameters.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class TypescriptCodeParameters < Lithic::Internal::Type::BaseModel
1515
# @!attribute features
1616
# Features available to the TypeScript code at evaluation time
1717
#
18-
# @return [Array<Lithic::Models::AuthRules::RuleFeature::AuthorizationFeature, Lithic::Models::AuthRules::RuleFeature::AuthenticationFeature, Lithic::Models::AuthRules::RuleFeature::TokenizationFeature, Lithic::Models::AuthRules::RuleFeature::ACHReceiptFeature, Lithic::Models::AuthRules::RuleFeature::CardFeature, Lithic::Models::AuthRules::RuleFeature::AccountHolderFeature, Lithic::Models::AuthRules::RuleFeature::IPMetadataFeature, Lithic::Models::AuthRules::RuleFeature::SpendVelocityFeature, Lithic::Models::AuthRules::RuleFeature::TransactionHistorySignalsFeature>]
18+
# @return [Array<Lithic::Models::AuthRules::RuleFeature::AuthorizationFeature, Lithic::Models::AuthRules::RuleFeature::AuthenticationFeature, Lithic::Models::AuthRules::RuleFeature::TokenizationFeature, Lithic::Models::AuthRules::RuleFeature::ACHReceiptFeature, Lithic::Models::AuthRules::RuleFeature::CardTransactionFeature, Lithic::Models::AuthRules::RuleFeature::CardFeature, Lithic::Models::AuthRules::RuleFeature::AccountHolderFeature, Lithic::Models::AuthRules::RuleFeature::IPMetadataFeature, Lithic::Models::AuthRules::RuleFeature::SpendVelocityFeature, Lithic::Models::AuthRules::RuleFeature::TransactionHistorySignalsFeature>]
1919
required :features, -> { Lithic::Internal::Type::ArrayOf[union: Lithic::AuthRules::RuleFeature] }
2020

2121
# @!method initialize(code:, features:)
@@ -26,7 +26,7 @@ class TypescriptCodeParameters < Lithic::Internal::Type::BaseModel
2626
#
2727
# @param code [String] The TypeScript source code of the rule. Must define a `rule()` function that acc
2828
#
29-
# @param features [Array<Lithic::Models::AuthRules::RuleFeature::AuthorizationFeature, Lithic::Models::AuthRules::RuleFeature::AuthenticationFeature, Lithic::Models::AuthRules::RuleFeature::TokenizationFeature, Lithic::Models::AuthRules::RuleFeature::ACHReceiptFeature, Lithic::Models::AuthRules::RuleFeature::CardFeature, Lithic::Models::AuthRules::RuleFeature::AccountHolderFeature, Lithic::Models::AuthRules::RuleFeature::IPMetadataFeature, Lithic::Models::AuthRules::RuleFeature::SpendVelocityFeature, Lithic::Models::AuthRules::RuleFeature::TransactionHistorySignalsFeature>] Features available to the TypeScript code at evaluation time
29+
# @param features [Array<Lithic::Models::AuthRules::RuleFeature::AuthorizationFeature, Lithic::Models::AuthRules::RuleFeature::AuthenticationFeature, Lithic::Models::AuthRules::RuleFeature::TokenizationFeature, Lithic::Models::AuthRules::RuleFeature::ACHReceiptFeature, Lithic::Models::AuthRules::RuleFeature::CardTransactionFeature, Lithic::Models::AuthRules::RuleFeature::CardFeature, Lithic::Models::AuthRules::RuleFeature::AccountHolderFeature, Lithic::Models::AuthRules::RuleFeature::IPMetadataFeature, Lithic::Models::AuthRules::RuleFeature::SpendVelocityFeature, Lithic::Models::AuthRules::RuleFeature::TransactionHistorySignalsFeature>] Features available to the TypeScript code at evaluation time
3030
end
3131
end
3232
end

lib/lithic/models/auth_rules/v2_create_params.rb

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ class AccountLevelRule < Lithic::Internal::Type::BaseModel
4747
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
4848
# stream.
4949
# - `TYPESCRIPT_CODE`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
50-
# ACH_CREDIT_RECEIPT, or ACH_DEBIT_RECEIPT event stream.
50+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
51+
# stream.
5152
#
5253
# @return [Symbol, Lithic::Models::AuthRules::V2CreateParams::Body::AccountLevelRule::Type]
5354
required :type, enum: -> { Lithic::AuthRules::V2CreateParams::Body::AccountLevelRule::Type }
@@ -138,7 +139,8 @@ module Parameters
138139
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
139140
# stream.
140141
# - `TYPESCRIPT_CODE`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
141-
# ACH_CREDIT_RECEIPT, or ACH_DEBIT_RECEIPT event stream.
142+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
143+
# stream.
142144
#
143145
# @see Lithic::Models::AuthRules::V2CreateParams::Body::AccountLevelRule#type
144146
module Type
@@ -182,7 +184,8 @@ class CardLevelRule < Lithic::Internal::Type::BaseModel
182184
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
183185
# stream.
184186
# - `TYPESCRIPT_CODE`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
185-
# ACH_CREDIT_RECEIPT, or ACH_DEBIT_RECEIPT event stream.
187+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
188+
# stream.
186189
#
187190
# @return [Symbol, Lithic::Models::AuthRules::V2CreateParams::Body::CardLevelRule::Type]
188191
required :type, enum: -> { Lithic::AuthRules::V2CreateParams::Body::CardLevelRule::Type }
@@ -259,7 +262,8 @@ module Parameters
259262
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
260263
# stream.
261264
# - `TYPESCRIPT_CODE`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
262-
# ACH_CREDIT_RECEIPT, or ACH_DEBIT_RECEIPT event stream.
265+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
266+
# stream.
263267
#
264268
# @see Lithic::Models::AuthRules::V2CreateParams::Body::CardLevelRule#type
265269
module Type
@@ -303,7 +307,8 @@ class ProgramLevelRule < Lithic::Internal::Type::BaseModel
303307
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
304308
# stream.
305309
# - `TYPESCRIPT_CODE`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
306-
# ACH_CREDIT_RECEIPT, or ACH_DEBIT_RECEIPT event stream.
310+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
311+
# stream.
307312
#
308313
# @return [Symbol, Lithic::Models::AuthRules::V2CreateParams::Body::ProgramLevelRule::Type]
309314
required :type, enum: -> { Lithic::AuthRules::V2CreateParams::Body::ProgramLevelRule::Type }
@@ -404,7 +409,8 @@ module Parameters
404409
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
405410
# stream.
406411
# - `TYPESCRIPT_CODE`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
407-
# ACH_CREDIT_RECEIPT, or ACH_DEBIT_RECEIPT event stream.
412+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
413+
# stream.
408414
#
409415
# @see Lithic::Models::AuthRules::V2CreateParams::Body::ProgramLevelRule#type
410416
module Type

rbi/lithic/models/auth_rules/auth_rule.rbi

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@ module Lithic
8383
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
8484
# stream.
8585
# - `TYPESCRIPT_CODE`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
86-
# ACH_CREDIT_RECEIPT, or ACH_DEBIT_RECEIPT event stream.
86+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
87+
# stream.
8788
sig { returns(Lithic::AuthRules::AuthRule::Type::TaggedSymbol) }
8889
attr_accessor :type
8990

@@ -164,7 +165,8 @@ module Lithic
164165
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
165166
# stream.
166167
# - `TYPESCRIPT_CODE`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
167-
# ACH_CREDIT_RECEIPT, or ACH_DEBIT_RECEIPT event stream.
168+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
169+
# stream.
168170
type:,
169171
# Account tokens to which the Auth Rule does not apply.
170172
excluded_account_tokens: nil,
@@ -509,7 +511,8 @@ module Lithic
509511
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
510512
# stream.
511513
# - `TYPESCRIPT_CODE`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
512-
# ACH_CREDIT_RECEIPT, or ACH_DEBIT_RECEIPT event stream.
514+
# ACH_CREDIT_RECEIPT, ACH_DEBIT_RECEIPT, or CARD_TRANSACTION_UPDATE event
515+
# stream.
513516
module Type
514517
extend Lithic::Internal::Type::Enum
515518

rbi/lithic/models/auth_rules/rule_feature.rbi

Lines changed: 41 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,22 @@ module Lithic
1515
# TOKENIZATION event stream rules.
1616
# - `ACH_RECEIPT`: The ACH receipt being evaluated. Only available for
1717
# ACH_CREDIT_RECEIPT and ACH_DEBIT_RECEIPT event stream rules.
18-
# - `CARD`: The card associated with the event. Available for AUTHORIZATION and
19-
# THREE_DS_AUTHENTICATION event stream rules.
18+
# - `CARD_TRANSACTION`: The card transaction being evaluated. Only available for
19+
# CARD_TRANSACTION_UPDATE event stream rules.
20+
# - `CARD`: The card associated with the event. Available for AUTHORIZATION,
21+
# THREE_DS_AUTHENTICATION, and CARD_TRANSACTION_UPDATE event stream rules.
2022
# - `ACCOUNT_HOLDER`: The account holder associated with the card. Available for
21-
# AUTHORIZATION and THREE_DS_AUTHENTICATION event stream rules.
23+
# AUTHORIZATION, THREE_DS_AUTHENTICATION, and CARD_TRANSACTION_UPDATE event
24+
# stream rules.
2225
# - `IP_METADATA`: IP address metadata for the request. Available for
2326
# THREE_DS_AUTHENTICATION event stream rules.
2427
# - `SPEND_VELOCITY`: Spend velocity data for the card or account. Requires
2528
# `scope`, `period`, and optionally `filters` to configure the velocity
2629
# calculation. Available for AUTHORIZATION event stream rules.
2730
# - `TRANSACTION_HISTORY_SIGNALS`: Behavioral feature state derived from the
2831
# entity's transaction history. Requires `scope` to specify whether to load
29-
# card, account, or business account history. Available for AUTHORIZATION event
30-
# stream rules.
32+
# card, account, or business account history. Available for AUTHORIZATION and
33+
# CARD_TRANSACTION_UPDATE event stream rules.
3134
module RuleFeature
3235
extend Lithic::Internal::Type::Union
3336

@@ -38,6 +41,7 @@ module Lithic
3841
Lithic::AuthRules::RuleFeature::AuthenticationFeature,
3942
Lithic::AuthRules::RuleFeature::TokenizationFeature,
4043
Lithic::AuthRules::RuleFeature::ACHReceiptFeature,
44+
Lithic::AuthRules::RuleFeature::CardTransactionFeature,
4145
Lithic::AuthRules::RuleFeature::CardFeature,
4246
Lithic::AuthRules::RuleFeature::AccountHolderFeature,
4347
Lithic::AuthRules::RuleFeature::IPMetadataFeature,
@@ -174,6 +178,38 @@ module Lithic
174178
end
175179
end
176180

181+
class CardTransactionFeature < Lithic::Internal::Type::BaseModel
182+
OrHash =
183+
T.type_alias do
184+
T.any(
185+
Lithic::AuthRules::RuleFeature::CardTransactionFeature,
186+
Lithic::Internal::AnyHash
187+
)
188+
end
189+
190+
sig { returns(Symbol) }
191+
attr_accessor :type
192+
193+
# The variable name for this feature in the rule function signature
194+
sig { returns(T.nilable(String)) }
195+
attr_reader :name
196+
197+
sig { params(name: String).void }
198+
attr_writer :name
199+
200+
sig { params(name: String, type: Symbol).returns(T.attached_class) }
201+
def self.new(
202+
# The variable name for this feature in the rule function signature
203+
name: nil,
204+
type: :CARD_TRANSACTION
205+
)
206+
end
207+
208+
sig { override.returns({ type: Symbol, name: String }) }
209+
def to_hash
210+
end
211+
end
212+
177213
class CardFeature < Lithic::Internal::Type::BaseModel
178214
OrHash =
179215
T.type_alias do

rbi/lithic/models/auth_rules/typescript_code_parameters.rbi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ module Lithic
2727
Lithic::AuthRules::RuleFeature::AuthenticationFeature,
2828
Lithic::AuthRules::RuleFeature::TokenizationFeature,
2929
Lithic::AuthRules::RuleFeature::ACHReceiptFeature,
30+
Lithic::AuthRules::RuleFeature::CardTransactionFeature,
3031
Lithic::AuthRules::RuleFeature::CardFeature,
3132
Lithic::AuthRules::RuleFeature::AccountHolderFeature,
3233
Lithic::AuthRules::RuleFeature::IPMetadataFeature,
@@ -49,6 +50,7 @@ module Lithic
4950
Lithic::AuthRules::RuleFeature::AuthenticationFeature::OrHash,
5051
Lithic::AuthRules::RuleFeature::TokenizationFeature::OrHash,
5152
Lithic::AuthRules::RuleFeature::ACHReceiptFeature::OrHash,
53+
Lithic::AuthRules::RuleFeature::CardTransactionFeature::OrHash,
5254
Lithic::AuthRules::RuleFeature::CardFeature::OrHash,
5355
Lithic::AuthRules::RuleFeature::AccountHolderFeature::OrHash,
5456
Lithic::AuthRules::RuleFeature::IPMetadataFeature::OrHash,
@@ -79,6 +81,7 @@ module Lithic
7981
Lithic::AuthRules::RuleFeature::AuthenticationFeature,
8082
Lithic::AuthRules::RuleFeature::TokenizationFeature,
8183
Lithic::AuthRules::RuleFeature::ACHReceiptFeature,
84+
Lithic::AuthRules::RuleFeature::CardTransactionFeature,
8285
Lithic::AuthRules::RuleFeature::CardFeature,
8386
Lithic::AuthRules::RuleFeature::AccountHolderFeature,
8487
Lithic::AuthRules::RuleFeature::IPMetadataFeature,

0 commit comments

Comments
 (0)