@@ -43,13 +43,22 @@ class AuthRuleConditionParam(TypedDict, total=False):
4343 lowest risk and 999 representing the highest risk. For Visa transactions,
4444 where the raw score has a range of 0-99, Lithic will normalize the score by
4545 multiplying the raw score by 10x.
46+ - `CARD_TRANSACTION_COUNT_15M`: The number of transactions on the card in the
47+ trailing 15 minutes before the authorization.
4648 - `CARD_TRANSACTION_COUNT_1H`: The number of transactions on the card in the
4749 trailing hour up and until the authorization.
4850 - `CARD_TRANSACTION_COUNT_24H`: The number of transactions on the card in the
4951 trailing 24 hours up and until the authorization.
5052 - `CARD_STATE`: The current state of the card associated with the transaction.
5153 Valid values are `CLOSED`, `OPEN`, `PAUSED`, `PENDING_ACTIVATION`,
5254 `PENDING_FULFILLMENT`.
55+ - `PIN_ENTERED`: Indicates whether a PIN was entered during the transaction.
56+ Valid values are `TRUE`, `FALSE`.
57+ - `PIN_STATUS`: The current state of card's PIN. Valid values are `NOT_SET`,
58+ `OK`, `BLOCKED`.
59+ - `WALLET_TYPE`: For transactions using a digital wallet token, indicates the
60+ source of the token. Valid values are `APPLE_PAY`, `GOOGLE_PAY`,
61+ `SAMSUNG_PAY`, `MASTERPASS`, `MERCHANT`, `OTHER`, `NONE`.
5362 """
5463
5564 operation : Literal ["IS_ONE_OF" , "IS_NOT_ONE_OF" , "MATCHES" , "DOES_NOT_MATCH" , "IS_GREATER_THAN" , "IS_LESS_THAN" ]
0 commit comments