increase 1.189.0 → 1.191.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 +3 -3
- data/lib/increase/models/intrafi_exclusion.rb +3 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/account.rbi +3 -3
- data/rbi/increase/models/intrafi_exclusion.rbi +4 -0
- data/sig/increase/models/account.rbs +4 -4
- data/sig/increase/models/intrafi_exclusion.rbs +4 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eba2f2c911b9ab325a93dcc63dbca06b29ca17dae8e3cea33acd4b303c703bf0
|
|
4
|
+
data.tar.gz: 11840ab06f792953888f9a23d7f2d61fb9cce27700c0c70febba74a6b1faf946
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 67561fb4d8c355d7c5ac4d2f09de55cc5258f7e6dc27ae4b3930b8253abec5ffe00966c9c20adc28a1942ec50e37576f2f83e44121071f410a89f0e668c60b9f
|
|
7
|
+
data.tar.gz: f46378b01ab65c11e26385b3fff4f09a3177431d2cf27d0bc89c217caa89ad1d1345c9d37a380394661cdf9c203bc875329b99fbd4ddd9d11a03592e06144311
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.191.0 (2026-01-30)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.190.0...v1.191.0](https://github.com/Increase/increase-ruby/compare/v1.190.0...v1.191.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([45b7378](https://github.com/Increase/increase-ruby/commit/45b7378628733d8461b9cb85b76e005823c2d03c))
|
|
10
|
+
|
|
11
|
+
## 1.190.0 (2026-01-30)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.189.0...v1.190.0](https://github.com/Increase/increase-ruby/compare/v1.189.0...v1.190.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([f7cc074](https://github.com/Increase/increase-ruby/commit/f7cc0747c6b88057f4d8cfa995b15069062d222c))
|
|
18
|
+
|
|
3
19
|
## 1.189.0 (2026-01-30)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.188.0...v1.189.0](https://github.com/Increase/increase-ruby/compare/v1.188.0...v1.189.0)
|
data/README.md
CHANGED
|
@@ -55,8 +55,8 @@ module Increase
|
|
|
55
55
|
# @!attribute funding
|
|
56
56
|
# Whether the Account is funded by a loan or by deposits.
|
|
57
57
|
#
|
|
58
|
-
# @return [Symbol, Increase::Models::Account::Funding
|
|
59
|
-
required :funding, enum: -> { Increase::Account::Funding }
|
|
58
|
+
# @return [Symbol, Increase::Models::Account::Funding]
|
|
59
|
+
required :funding, enum: -> { Increase::Account::Funding }
|
|
60
60
|
|
|
61
61
|
# @!attribute idempotency_key
|
|
62
62
|
# The idempotency key you chose for this object. This value is unique across
|
|
@@ -148,7 +148,7 @@ module Increase
|
|
|
148
148
|
#
|
|
149
149
|
# @param entity_id [String] The identifier for the Entity the Account belongs to.
|
|
150
150
|
#
|
|
151
|
-
# @param funding [Symbol, Increase::Models::Account::Funding
|
|
151
|
+
# @param funding [Symbol, Increase::Models::Account::Funding] Whether the Account is funded by a loan or by deposits.
|
|
152
152
|
#
|
|
153
153
|
# @param idempotency_key [String, nil] The idempotency key you chose for this object. This value is unique across Incre
|
|
154
154
|
#
|
|
@@ -113,6 +113,9 @@ module Increase
|
|
|
113
113
|
# The exclusion has been removed from the IntraFi network.
|
|
114
114
|
ARCHIVED = :archived
|
|
115
115
|
|
|
116
|
+
# The exclusion wasn't eligible to be added to the IntraFi network.
|
|
117
|
+
INELIGIBLE = :ineligible
|
|
118
|
+
|
|
116
119
|
# @!method self.values
|
|
117
120
|
# @return [Array<Symbol>]
|
|
118
121
|
end
|
data/lib/increase/version.rb
CHANGED
|
@@ -41,7 +41,7 @@ module Increase
|
|
|
41
41
|
attr_accessor :entity_id
|
|
42
42
|
|
|
43
43
|
# Whether the Account is funded by a loan or by deposits.
|
|
44
|
-
sig { returns(
|
|
44
|
+
sig { returns(Increase::Account::Funding::TaggedSymbol) }
|
|
45
45
|
attr_accessor :funding
|
|
46
46
|
|
|
47
47
|
# The idempotency key you chose for this object. This value is unique across
|
|
@@ -107,7 +107,7 @@ module Increase
|
|
|
107
107
|
created_at: Time,
|
|
108
108
|
currency: Increase::Account::Currency::OrSymbol,
|
|
109
109
|
entity_id: String,
|
|
110
|
-
funding:
|
|
110
|
+
funding: Increase::Account::Funding::OrSymbol,
|
|
111
111
|
idempotency_key: T.nilable(String),
|
|
112
112
|
informational_entity_id: T.nilable(String),
|
|
113
113
|
interest_accrued: String,
|
|
@@ -185,7 +185,7 @@ module Increase
|
|
|
185
185
|
created_at: Time,
|
|
186
186
|
currency: Increase::Account::Currency::TaggedSymbol,
|
|
187
187
|
entity_id: String,
|
|
188
|
-
funding:
|
|
188
|
+
funding: Increase::Account::Funding::TaggedSymbol,
|
|
189
189
|
idempotency_key: T.nilable(String),
|
|
190
190
|
informational_entity_id: T.nilable(String),
|
|
191
191
|
interest_accrued: String,
|
|
@@ -139,6 +139,10 @@ module Increase
|
|
|
139
139
|
ARCHIVED =
|
|
140
140
|
T.let(:archived, Increase::IntrafiExclusion::Status::TaggedSymbol)
|
|
141
141
|
|
|
142
|
+
# The exclusion wasn't eligible to be added to the IntraFi network.
|
|
143
|
+
INELIGIBLE =
|
|
144
|
+
T.let(:ineligible, Increase::IntrafiExclusion::Status::TaggedSymbol)
|
|
145
|
+
|
|
142
146
|
sig do
|
|
143
147
|
override.returns(
|
|
144
148
|
T::Array[Increase::IntrafiExclusion::Status::TaggedSymbol]
|
|
@@ -9,7 +9,7 @@ module Increase
|
|
|
9
9
|
created_at: Time,
|
|
10
10
|
currency: Increase::Models::Account::currency,
|
|
11
11
|
entity_id: String,
|
|
12
|
-
funding: Increase::Models::Account::funding
|
|
12
|
+
funding: Increase::Models::Account::funding,
|
|
13
13
|
idempotency_key: String?,
|
|
14
14
|
informational_entity_id: String?,
|
|
15
15
|
interest_accrued: String,
|
|
@@ -37,7 +37,7 @@ module Increase
|
|
|
37
37
|
|
|
38
38
|
attr_accessor entity_id: String
|
|
39
39
|
|
|
40
|
-
attr_accessor funding: Increase::Models::Account::funding
|
|
40
|
+
attr_accessor funding: Increase::Models::Account::funding
|
|
41
41
|
|
|
42
42
|
attr_accessor idempotency_key: String?
|
|
43
43
|
|
|
@@ -67,7 +67,7 @@ module Increase
|
|
|
67
67
|
created_at: Time,
|
|
68
68
|
currency: Increase::Models::Account::currency,
|
|
69
69
|
entity_id: String,
|
|
70
|
-
funding: Increase::Models::Account::funding
|
|
70
|
+
funding: Increase::Models::Account::funding,
|
|
71
71
|
idempotency_key: String?,
|
|
72
72
|
informational_entity_id: String?,
|
|
73
73
|
interest_accrued: String,
|
|
@@ -88,7 +88,7 @@ module Increase
|
|
|
88
88
|
created_at: Time,
|
|
89
89
|
currency: Increase::Models::Account::currency,
|
|
90
90
|
entity_id: String,
|
|
91
|
-
funding: Increase::Models::Account::funding
|
|
91
|
+
funding: Increase::Models::Account::funding,
|
|
92
92
|
idempotency_key: String?,
|
|
93
93
|
informational_entity_id: String?,
|
|
94
94
|
interest_accrued: String,
|
|
@@ -61,7 +61,7 @@ module Increase
|
|
|
61
61
|
type: Increase::Models::IntrafiExclusion::type_
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
-
type status = :pending | :completed | :archived
|
|
64
|
+
type status = :pending | :completed | :archived | :ineligible
|
|
65
65
|
|
|
66
66
|
module Status
|
|
67
67
|
extend Increase::Internal::Type::Enum
|
|
@@ -75,6 +75,9 @@ module Increase
|
|
|
75
75
|
# The exclusion has been removed from the IntraFi network.
|
|
76
76
|
ARCHIVED: :archived
|
|
77
77
|
|
|
78
|
+
# The exclusion wasn't eligible to be added to the IntraFi network.
|
|
79
|
+
INELIGIBLE: :ineligible
|
|
80
|
+
|
|
78
81
|
def self?.values: -> ::Array[Increase::Models::IntrafiExclusion::status]
|
|
79
82
|
end
|
|
80
83
|
|