@@ -86,6 +86,20 @@ module Lithic
8686 sig { returns ( Lithic ::AuthRules ::AuthRule ::Type ::TaggedSymbol ) }
8787 attr_accessor :type
8888
89+ # Account tokens to which the Auth Rule does not apply.
90+ sig { returns ( T . nilable ( T ::Array [ String ] ) ) }
91+ attr_reader :excluded_account_tokens
92+
93+ sig { params ( excluded_account_tokens : T ::Array [ String ] ) . void }
94+ attr_writer :excluded_account_tokens
95+
96+ # Business account tokens to which the Auth Rule does not apply.
97+ sig { returns ( T . nilable ( T ::Array [ String ] ) ) }
98+ attr_reader :excluded_business_account_tokens
99+
100+ sig { params ( excluded_business_account_tokens : T ::Array [ String ] ) . void }
101+ attr_writer :excluded_business_account_tokens
102+
89103 # Card tokens to which the Auth Rule does not apply.
90104 sig { returns ( T . nilable ( T ::Array [ String ] ) ) }
91105 attr_reader :excluded_card_tokens
@@ -109,6 +123,8 @@ module Lithic
109123 program_level : T ::Boolean ,
110124 state : Lithic ::AuthRules ::AuthRule ::State ::OrSymbol ,
111125 type : Lithic ::AuthRules ::AuthRule ::Type ::OrSymbol ,
126+ excluded_account_tokens : T ::Array [ String ] ,
127+ excluded_business_account_tokens : T ::Array [ String ] ,
112128 excluded_card_tokens : T ::Array [ String ]
113129 ) . returns ( T . attached_class )
114130 end
@@ -148,6 +164,10 @@ module Lithic
148164 # - `TYPESCRIPT_CODE`: AUTHORIZATION, THREE_DS_AUTHENTICATION, TOKENIZATION,
149165 # ACH_CREDIT_RECEIPT, or ACH_DEBIT_RECEIPT event stream.
150166 type :,
167+ # Account tokens to which the Auth Rule does not apply.
168+ excluded_account_tokens : nil ,
169+ # Business account tokens to which the Auth Rule does not apply.
170+ excluded_business_account_tokens : nil ,
151171 # Card tokens to which the Auth Rule does not apply.
152172 excluded_card_tokens : nil
153173 )
@@ -170,6 +190,8 @@ module Lithic
170190 program_level : T ::Boolean ,
171191 state : Lithic ::AuthRules ::AuthRule ::State ::TaggedSymbol ,
172192 type : Lithic ::AuthRules ::AuthRule ::Type ::TaggedSymbol ,
193+ excluded_account_tokens : T ::Array [ String ] ,
194+ excluded_business_account_tokens : T ::Array [ String ] ,
173195 excluded_card_tokens : T ::Array [ String ]
174196 }
175197 )
0 commit comments