increase 1.280.0 → 1.282.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 +16 -0
- data/README.md +1 -1
- data/lib/increase/models/account.rb +1 -19
- data/lib/increase/models/card.rb +2 -2
- data/lib/increase/models/card_create_params.rb +2 -2
- data/lib/increase/models/card_update_params.rb +2 -2
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/account.rbi +0 -20
- data/rbi/increase/models/card.rbi +2 -2
- data/rbi/increase/models/card_create_params.rbi +2 -2
- data/rbi/increase/models/card_update_params.rbi +2 -2
- data/sig/increase/models/account.rbs +0 -10
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 43012d54e83387a63198ab085312551fe7e4c8035a6d0ab8e0cb12e906fbcf2e
|
|
4
|
+
data.tar.gz: 4a0f2028ded106323391a747a111c080d2d780f4759d25a76bd3666f3d6e15aa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 106380543a7442b4276874bc0feae03858673dcb922614d92ab6c28e1ce2a5171b3a5eb4745531a2ab7f3a1dcfac325bc461b32f87c4cde223950bd2cc20cc33
|
|
7
|
+
data.tar.gz: 908a8b6aaf8244f19eb97c38d5841661b21ec80fbcf97af23e223d700e32af197599dc389802c60951299e7b7af18234b3ba94ad448cb7952848bc09a455420f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.282.0 (2026-04-04)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.281.0...v1.282.0](https://github.com/Increase/increase-ruby/compare/v1.281.0...v1.282.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([808c1b8](https://github.com/Increase/increase-ruby/commit/808c1b82f3bc17f099dec9fc7869f8e6086b2304))
|
|
10
|
+
|
|
11
|
+
## 1.281.0 (2026-04-03)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.280.0...v1.281.0](https://github.com/Increase/increase-ruby/compare/v1.280.0...v1.281.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([68c9e62](https://github.com/Increase/increase-ruby/commit/68c9e62055a344cae28bfe067828337842833211))
|
|
18
|
+
|
|
3
19
|
## 1.280.0 (2026-04-03)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.279.0...v1.280.0](https://github.com/Increase/increase-ruby/compare/v1.279.0...v1.280.0)
|
data/README.md
CHANGED
|
@@ -73,20 +73,6 @@ module Increase
|
|
|
73
73
|
# @return [String, nil]
|
|
74
74
|
required :informational_entity_id, String, nil?: true
|
|
75
75
|
|
|
76
|
-
# @!attribute interest_accrued
|
|
77
|
-
# The interest accrued but not yet paid, expressed as a string containing a
|
|
78
|
-
# floating-point value.
|
|
79
|
-
#
|
|
80
|
-
# @return [String]
|
|
81
|
-
required :interest_accrued, String
|
|
82
|
-
|
|
83
|
-
# @!attribute interest_accrued_at
|
|
84
|
-
# The latest [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date on which
|
|
85
|
-
# interest was accrued.
|
|
86
|
-
#
|
|
87
|
-
# @return [Date, nil]
|
|
88
|
-
required :interest_accrued_at, Date, nil?: true
|
|
89
|
-
|
|
90
76
|
# @!attribute interest_rate
|
|
91
77
|
# The interest rate currently being earned on the account, as a string containing
|
|
92
78
|
# a decimal number. For example, a 1% interest rate would be represented as
|
|
@@ -127,7 +113,7 @@ module Increase
|
|
|
127
113
|
# @return [Symbol, Increase::Models::Account::Type]
|
|
128
114
|
required :type, enum: -> { Increase::Account::Type }
|
|
129
115
|
|
|
130
|
-
# @!method initialize(id:, account_revenue_rate:, bank:, closed_at:, created_at:, currency:, entity_id:, funding:, idempotency_key:, informational_entity_id:,
|
|
116
|
+
# @!method initialize(id:, account_revenue_rate:, bank:, closed_at:, created_at:, currency:, entity_id:, funding:, idempotency_key:, informational_entity_id:, interest_rate:, loan:, name:, program_id:, status:, type:)
|
|
131
117
|
# Some parameter documentations has been truncated, see
|
|
132
118
|
# {Increase::Models::Account} for more details.
|
|
133
119
|
#
|
|
@@ -154,10 +140,6 @@ module Increase
|
|
|
154
140
|
#
|
|
155
141
|
# @param informational_entity_id [String, nil] The identifier of an Entity that, while not owning the Account, is associated wi
|
|
156
142
|
#
|
|
157
|
-
# @param interest_accrued [String] The interest accrued but not yet paid, expressed as a string containing a floati
|
|
158
|
-
#
|
|
159
|
-
# @param interest_accrued_at [Date, nil] The latest [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date on which inte
|
|
160
|
-
#
|
|
161
143
|
# @param interest_rate [String] The interest rate currently being earned on the account, as a string containing
|
|
162
144
|
#
|
|
163
145
|
# @param loan [Increase::Models::Account::Loan, nil] The Account's loan-related information, if the Account is a loan account.
|
data/lib/increase/models/card.rb
CHANGED
|
@@ -167,7 +167,7 @@ module Increase
|
|
|
167
167
|
required :merchant_country, -> { Increase::Card::AuthorizationControls::MerchantCountry }, nil?: true
|
|
168
168
|
|
|
169
169
|
# @!attribute spending_limits
|
|
170
|
-
# Spending limits for this card. The most restrictive limit
|
|
170
|
+
# Spending limits for this card. The most restrictive limit applies if multiple
|
|
171
171
|
# limits match.
|
|
172
172
|
#
|
|
173
173
|
# @return [Array<Increase::Models::Card::AuthorizationControls::SpendingLimit>, nil]
|
|
@@ -191,7 +191,7 @@ module Increase
|
|
|
191
191
|
#
|
|
192
192
|
# @param merchant_country [Increase::Models::Card::AuthorizationControls::MerchantCountry, nil] Restricts which merchant countries are allowed or blocked for authorizations on
|
|
193
193
|
#
|
|
194
|
-
# @param spending_limits [Array<Increase::Models::Card::AuthorizationControls::SpendingLimit>, nil] Spending limits for this card. The most restrictive limit
|
|
194
|
+
# @param spending_limits [Array<Increase::Models::Card::AuthorizationControls::SpendingLimit>, nil] Spending limits for this card. The most restrictive limit applies if multiple li
|
|
195
195
|
|
|
196
196
|
# @see Increase::Models::Card::AuthorizationControls#maximum_authorization_count
|
|
197
197
|
class MaximumAuthorizationCount < Increase::Internal::Type::BaseModel
|
|
@@ -98,7 +98,7 @@ module Increase
|
|
|
98
98
|
optional :merchant_country, -> { Increase::CardCreateParams::AuthorizationControls::MerchantCountry }
|
|
99
99
|
|
|
100
100
|
# @!attribute spending_limits
|
|
101
|
-
# Spending limits for this card. The most restrictive limit
|
|
101
|
+
# Spending limits for this card. The most restrictive limit applies if multiple
|
|
102
102
|
# limits match.
|
|
103
103
|
#
|
|
104
104
|
# @return [Array<Increase::Models::CardCreateParams::AuthorizationControls::SpendingLimit>, nil]
|
|
@@ -119,7 +119,7 @@ module Increase
|
|
|
119
119
|
#
|
|
120
120
|
# @param merchant_country [Increase::Models::CardCreateParams::AuthorizationControls::MerchantCountry] Restricts which merchant countries are allowed or blocked for authorizations on
|
|
121
121
|
#
|
|
122
|
-
# @param spending_limits [Array<Increase::Models::CardCreateParams::AuthorizationControls::SpendingLimit>] Spending limits for this card. The most restrictive limit
|
|
122
|
+
# @param spending_limits [Array<Increase::Models::CardCreateParams::AuthorizationControls::SpendingLimit>] Spending limits for this card. The most restrictive limit applies if multiple li
|
|
123
123
|
|
|
124
124
|
# @see Increase::Models::CardCreateParams::AuthorizationControls#maximum_authorization_count
|
|
125
125
|
class MaximumAuthorizationCount < Increase::Internal::Type::BaseModel
|
|
@@ -104,7 +104,7 @@ module Increase
|
|
|
104
104
|
optional :merchant_country, -> { Increase::CardUpdateParams::AuthorizationControls::MerchantCountry }
|
|
105
105
|
|
|
106
106
|
# @!attribute spending_limits
|
|
107
|
-
# Spending limits for this card. The most restrictive limit
|
|
107
|
+
# Spending limits for this card. The most restrictive limit applies if multiple
|
|
108
108
|
# limits match.
|
|
109
109
|
#
|
|
110
110
|
# @return [Array<Increase::Models::CardUpdateParams::AuthorizationControls::SpendingLimit>, nil]
|
|
@@ -125,7 +125,7 @@ module Increase
|
|
|
125
125
|
#
|
|
126
126
|
# @param merchant_country [Increase::Models::CardUpdateParams::AuthorizationControls::MerchantCountry] Restricts which merchant countries are allowed or blocked for authorizations on
|
|
127
127
|
#
|
|
128
|
-
# @param spending_limits [Array<Increase::Models::CardUpdateParams::AuthorizationControls::SpendingLimit>] Spending limits for this card. The most restrictive limit
|
|
128
|
+
# @param spending_limits [Array<Increase::Models::CardUpdateParams::AuthorizationControls::SpendingLimit>] Spending limits for this card. The most restrictive limit applies if multiple li
|
|
129
129
|
|
|
130
130
|
# @see Increase::Models::CardUpdateParams::AuthorizationControls#maximum_authorization_count
|
|
131
131
|
class MaximumAuthorizationCount < Increase::Internal::Type::BaseModel
|
data/lib/increase/version.rb
CHANGED
|
@@ -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,
|
|
@@ -263,7 +263,7 @@ module Increase
|
|
|
263
263
|
end
|
|
264
264
|
attr_writer :merchant_country
|
|
265
265
|
|
|
266
|
-
# Spending limits for this card. The most restrictive limit
|
|
266
|
+
# Spending limits for this card. The most restrictive limit applies if multiple
|
|
267
267
|
# limits match.
|
|
268
268
|
sig do
|
|
269
269
|
returns(
|
|
@@ -313,7 +313,7 @@ module Increase
|
|
|
313
313
|
# Restricts which merchant countries are allowed or blocked for authorizations on
|
|
314
314
|
# this card.
|
|
315
315
|
merchant_country:,
|
|
316
|
-
# Spending limits for this card. The most restrictive limit
|
|
316
|
+
# Spending limits for this card. The most restrictive limit applies if multiple
|
|
317
317
|
# limits match.
|
|
318
318
|
spending_limits:
|
|
319
319
|
)
|
|
@@ -205,7 +205,7 @@ module Increase
|
|
|
205
205
|
end
|
|
206
206
|
attr_writer :merchant_country
|
|
207
207
|
|
|
208
|
-
# Spending limits for this card. The most restrictive limit
|
|
208
|
+
# Spending limits for this card. The most restrictive limit applies if multiple
|
|
209
209
|
# limits match.
|
|
210
210
|
sig do
|
|
211
211
|
returns(
|
|
@@ -257,7 +257,7 @@ module Increase
|
|
|
257
257
|
# Restricts which merchant countries are allowed or blocked for authorizations on
|
|
258
258
|
# this card.
|
|
259
259
|
merchant_country: nil,
|
|
260
|
-
# Spending limits for this card. The most restrictive limit
|
|
260
|
+
# Spending limits for this card. The most restrictive limit applies if multiple
|
|
261
261
|
# limits match.
|
|
262
262
|
spending_limits: nil
|
|
263
263
|
)
|
|
@@ -212,7 +212,7 @@ module Increase
|
|
|
212
212
|
end
|
|
213
213
|
attr_writer :merchant_country
|
|
214
214
|
|
|
215
|
-
# Spending limits for this card. The most restrictive limit
|
|
215
|
+
# Spending limits for this card. The most restrictive limit applies if multiple
|
|
216
216
|
# limits match.
|
|
217
217
|
sig do
|
|
218
218
|
returns(
|
|
@@ -264,7 +264,7 @@ module Increase
|
|
|
264
264
|
# Restricts which merchant countries are allowed or blocked for authorizations on
|
|
265
265
|
# this card.
|
|
266
266
|
merchant_country: nil,
|
|
267
|
-
# Spending limits for this card. The most restrictive limit
|
|
267
|
+
# Spending limits for this card. The most restrictive limit applies if multiple
|
|
268
268
|
# limits match.
|
|
269
269
|
spending_limits: nil
|
|
270
270
|
)
|
|
@@ -12,8 +12,6 @@ module Increase
|
|
|
12
12
|
funding: Increase::Models::Account::funding,
|
|
13
13
|
idempotency_key: String?,
|
|
14
14
|
informational_entity_id: String?,
|
|
15
|
-
interest_accrued: String,
|
|
16
|
-
interest_accrued_at: Date?,
|
|
17
15
|
interest_rate: String,
|
|
18
16
|
loan: Increase::Account::Loan?,
|
|
19
17
|
name: String,
|
|
@@ -43,10 +41,6 @@ module Increase
|
|
|
43
41
|
|
|
44
42
|
attr_accessor informational_entity_id: String?
|
|
45
43
|
|
|
46
|
-
attr_accessor interest_accrued: String
|
|
47
|
-
|
|
48
|
-
attr_accessor interest_accrued_at: Date?
|
|
49
|
-
|
|
50
44
|
attr_accessor interest_rate: String
|
|
51
45
|
|
|
52
46
|
attr_accessor loan: Increase::Account::Loan?
|
|
@@ -70,8 +64,6 @@ module Increase
|
|
|
70
64
|
funding: Increase::Models::Account::funding,
|
|
71
65
|
idempotency_key: String?,
|
|
72
66
|
informational_entity_id: String?,
|
|
73
|
-
interest_accrued: String,
|
|
74
|
-
interest_accrued_at: Date?,
|
|
75
67
|
interest_rate: String,
|
|
76
68
|
loan: Increase::Account::Loan?,
|
|
77
69
|
name: String,
|
|
@@ -91,8 +83,6 @@ module Increase
|
|
|
91
83
|
funding: Increase::Models::Account::funding,
|
|
92
84
|
idempotency_key: String?,
|
|
93
85
|
informational_entity_id: String?,
|
|
94
|
-
interest_accrued: String,
|
|
95
|
-
interest_accrued_at: Date?,
|
|
96
86
|
interest_rate: String,
|
|
97
87
|
loan: Increase::Account::Loan?,
|
|
98
88
|
name: String,
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: increase
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.282.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Increase
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-04-
|
|
11
|
+
date: 2026-04-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|