increase 1.280.0 → 1.283.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 +24 -0
- data/README.md +1 -1
- data/lib/increase/models/account.rb +1 -19
- data/lib/increase/models/card.rb +182 -86
- data/lib/increase/models/card_create_params.rb +177 -81
- data/lib/increase/models/card_update_params.rb +177 -81
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/account.rbi +0 -20
- data/rbi/increase/models/card.rbi +424 -156
- data/rbi/increase/models/card_create_params.rbi +422 -156
- data/rbi/increase/models/card_update_params.rbi +422 -156
- data/sig/increase/models/account.rbs +0 -10
- data/sig/increase/models/card.rbs +148 -52
- data/sig/increase/models/card_create_params.rbs +166 -62
- data/sig/increase/models/card_update_params.rbs +166 -62
- metadata +2 -2
|
@@ -55,16 +55,6 @@ module Increase
|
|
|
55
55
|
sig { returns(T.nilable(String)) }
|
|
56
56
|
attr_accessor :informational_entity_id
|
|
57
57
|
|
|
58
|
-
# The interest accrued but not yet paid, expressed as a string containing a
|
|
59
|
-
# floating-point value.
|
|
60
|
-
sig { returns(String) }
|
|
61
|
-
attr_accessor :interest_accrued
|
|
62
|
-
|
|
63
|
-
# The latest [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date on which
|
|
64
|
-
# interest was accrued.
|
|
65
|
-
sig { returns(T.nilable(Date)) }
|
|
66
|
-
attr_accessor :interest_accrued_at
|
|
67
|
-
|
|
68
58
|
# The interest rate currently being earned on the account, as a string containing
|
|
69
59
|
# a decimal number. For example, a 1% interest rate would be represented as
|
|
70
60
|
# "0.01".
|
|
@@ -110,8 +100,6 @@ module Increase
|
|
|
110
100
|
funding: Increase::Account::Funding::OrSymbol,
|
|
111
101
|
idempotency_key: T.nilable(String),
|
|
112
102
|
informational_entity_id: T.nilable(String),
|
|
113
|
-
interest_accrued: String,
|
|
114
|
-
interest_accrued_at: T.nilable(Date),
|
|
115
103
|
interest_rate: String,
|
|
116
104
|
loan: T.nilable(Increase::Account::Loan::OrHash),
|
|
117
105
|
name: String,
|
|
@@ -150,12 +138,6 @@ module Increase
|
|
|
150
138
|
# The identifier of an Entity that, while not owning the Account, is associated
|
|
151
139
|
# with its activity.
|
|
152
140
|
informational_entity_id:,
|
|
153
|
-
# The interest accrued but not yet paid, expressed as a string containing a
|
|
154
|
-
# floating-point value.
|
|
155
|
-
interest_accrued:,
|
|
156
|
-
# The latest [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date on which
|
|
157
|
-
# interest was accrued.
|
|
158
|
-
interest_accrued_at:,
|
|
159
141
|
# The interest rate currently being earned on the account, as a string containing
|
|
160
142
|
# a decimal number. For example, a 1% interest rate would be represented as
|
|
161
143
|
# "0.01".
|
|
@@ -188,8 +170,6 @@ module Increase
|
|
|
188
170
|
funding: Increase::Account::Funding::TaggedSymbol,
|
|
189
171
|
idempotency_key: T.nilable(String),
|
|
190
172
|
informational_entity_id: T.nilable(String),
|
|
191
|
-
interest_accrued: String,
|
|
192
|
-
interest_accrued_at: T.nilable(Date),
|
|
193
173
|
interest_rate: String,
|
|
194
174
|
loan: T.nilable(Increase::Account::Loan),
|
|
195
175
|
name: String,
|