increase 1.189.0 → 1.190.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 +8 -0
- data/README.md +1 -1
- data/lib/increase/models/account.rb +3 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/account.rbi +3 -3
- data/sig/increase/models/account.rbs +4 -4
- 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: 7bd834fc48e899fee75f59b54bdc4082f4f1f9be0b89607eed8efa1eb58d957c
|
|
4
|
+
data.tar.gz: 79a61d911c1eab08e86b2264f2f1cb5369b1ffb429acb7f32f92b96cdc167f6d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9140791cd7ec2d7a9b262cbd55caf13294f2529a7d5ae965e06c2d4445dde2eb0fd44f79fb463c40c587b13e0c7add28356f955131f5f00cb455e7d6c3ebe6c9
|
|
7
|
+
data.tar.gz: 82ec0f394f2e62bb993300c9769388f1d696362d262f1713f8312e3015a188ee89296da959cc56eb5cf61fb14cacc92658e7bab9e8d86d1ee53cd6e10f386caa
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.190.0 (2026-01-30)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.189.0...v1.190.0](https://github.com/Increase/increase-ruby/compare/v1.189.0...v1.190.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([f7cc074](https://github.com/Increase/increase-ruby/commit/f7cc0747c6b88057f4d8cfa995b15069062d222c))
|
|
10
|
+
|
|
3
11
|
## 1.189.0 (2026-01-30)
|
|
4
12
|
|
|
5
13
|
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
|
#
|
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,
|
|
@@ -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,
|