Skip to content

Commit 23c7be9

Browse files
feat(api): Add INTEREST_AND_FEES_PAUSED substatus to financial account
1 parent 8abd2ee commit 23c7be9

13 files changed

Lines changed: 34 additions & 2 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: 177
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-c24eebe942f400bff8922a6fbef1ce551ad14f61eb4da21b50d823a62ca42586.yml
3-
openapi_spec_hash: b79ed927e625dedff69cea29131a34d9
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-f85b60190db68921a3a877d0dd931670c27933ba1f5031fcdd27365e99adb5c9.yml
3+
openapi_spec_hash: 4828c2dc7543ce2a39774a9921c73c80
44
config_hash: fbc424e01cca916048d63adcadaa8750

lib/lithic/models/financial_account.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ module Substatus
182182
END_USER_REQUEST = :END_USER_REQUEST
183183
BANK_REQUEST = :BANK_REQUEST
184184
DELINQUENT = :DELINQUENT
185+
INTEREST_AND_FEES_PAUSED = :INTEREST_AND_FEES_PAUSED
185186

186187
# @!method self.values
187188
# @return [Array<Symbol>]

lib/lithic/models/financial_account_update_status_params.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ module Substatus
5555
END_USER_REQUEST = :END_USER_REQUEST
5656
BANK_REQUEST = :BANK_REQUEST
5757
CHARGED_OFF_DELINQUENT = :CHARGED_OFF_DELINQUENT
58+
INTEREST_AND_FEES_PAUSED = :INTEREST_AND_FEES_PAUSED
5859

5960
# @!method self.values
6061
# @return [Array<Symbol>]

lib/lithic/models/financial_accounts/loan_tape.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,7 @@ module Substatus
299299
END_USER_REQUEST = :END_USER_REQUEST
300300
BANK_REQUEST = :BANK_REQUEST
301301
DELINQUENT = :DELINQUENT
302+
INTEREST_AND_FEES_PAUSED = :INTEREST_AND_FEES_PAUSED
302303

303304
# @!method self.values
304305
# @return [Array<Symbol>]

lib/lithic/models/financial_accounts/statement.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,7 @@ module Substatus
299299
END_USER_REQUEST = :END_USER_REQUEST
300300
BANK_REQUEST = :BANK_REQUEST
301301
DELINQUENT = :DELINQUENT
302+
INTEREST_AND_FEES_PAUSED = :INTEREST_AND_FEES_PAUSED
302303

303304
# @!method self.values
304305
# @return [Array<Symbol>]

rbi/lithic/models/financial_account.rbi

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,11 @@ module Lithic
292292
)
293293
DELINQUENT =
294294
T.let(:DELINQUENT, Lithic::FinancialAccount::Substatus::TaggedSymbol)
295+
INTEREST_AND_FEES_PAUSED =
296+
T.let(
297+
:INTEREST_AND_FEES_PAUSED,
298+
Lithic::FinancialAccount::Substatus::TaggedSymbol
299+
)
295300

296301
sig do
297302
override.returns(

rbi/lithic/models/financial_account_update_status_params.rbi

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,11 @@ module Lithic
148148
:CHARGED_OFF_DELINQUENT,
149149
Lithic::FinancialAccountUpdateStatusParams::Substatus::TaggedSymbol
150150
)
151+
INTEREST_AND_FEES_PAUSED =
152+
T.let(
153+
:INTEREST_AND_FEES_PAUSED,
154+
Lithic::FinancialAccountUpdateStatusParams::Substatus::TaggedSymbol
155+
)
151156

152157
sig do
153158
override.returns(

rbi/lithic/models/financial_accounts/loan_tape.rbi

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -525,6 +525,11 @@ module Lithic
525525
:DELINQUENT,
526526
Lithic::FinancialAccounts::LoanTape::AccountStanding::FinancialAccountState::Substatus::TaggedSymbol
527527
)
528+
INTEREST_AND_FEES_PAUSED =
529+
T.let(
530+
:INTEREST_AND_FEES_PAUSED,
531+
Lithic::FinancialAccounts::LoanTape::AccountStanding::FinancialAccountState::Substatus::TaggedSymbol
532+
)
528533

529534
sig do
530535
override.returns(

rbi/lithic/models/financial_accounts/statement.rbi

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -520,6 +520,11 @@ module Lithic
520520
:DELINQUENT,
521521
Lithic::FinancialAccounts::Statement::AccountStanding::FinancialAccountState::Substatus::TaggedSymbol
522522
)
523+
INTEREST_AND_FEES_PAUSED =
524+
T.let(
525+
:INTEREST_AND_FEES_PAUSED,
526+
Lithic::FinancialAccounts::Statement::AccountStanding::FinancialAccountState::Substatus::TaggedSymbol
527+
)
523528

524529
sig do
525530
override.returns(

sig/lithic/models/financial_account.rbs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ module Lithic
142142
| :END_USER_REQUEST
143143
| :BANK_REQUEST
144144
| :DELINQUENT
145+
| :INTEREST_AND_FEES_PAUSED
145146

146147
module Substatus
147148
extend Lithic::Internal::Type::Enum
@@ -151,6 +152,7 @@ module Lithic
151152
END_USER_REQUEST: :END_USER_REQUEST
152153
BANK_REQUEST: :BANK_REQUEST
153154
DELINQUENT: :DELINQUENT
155+
INTEREST_AND_FEES_PAUSED: :INTEREST_AND_FEES_PAUSED
154156

155157
def self?.values: -> ::Array[Lithic::Models::FinancialAccount::substatus]
156158
end

0 commit comments

Comments
 (0)