increase 1.34.0 → 1.35.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/external_account.rb +3 -0
- data/lib/increase/models/external_account_create_params.rb +3 -0
- data/lib/increase/models/external_account_update_params.rb +3 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/external_account.rbi +7 -0
- data/rbi/increase/models/external_account_create_params.rbi +7 -0
- data/rbi/increase/models/external_account_update_params.rbi +7 -0
- data/sig/increase/models/external_account.rbs +4 -1
- data/sig/increase/models/external_account_create_params.rbs +4 -1
- data/sig/increase/models/external_account_update_params.rbs +4 -1
- 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: cf94005239176f72c08edb64f6e6d86580b6134b815faf7f7f78f7db5c77e08d
|
|
4
|
+
data.tar.gz: 4fe85129785a34d2baae2a7cdfb52cf005e1959e306aa8da39a48ac9117bce22
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6bbbc7c0cdba68a22beb118547e2a9b2942c8764c468a51995a3c6119c093194857e21f850c05f6321a814938a849227e81a1452c5b360c3832d65ed520e9f2a
|
|
7
|
+
data.tar.gz: 2dfe7a7ee8323bef0c617dca4111f0f89f9e79b29164fff0a480b9609e790c531ea23c84480c07a3f1c9180abf90217df619eca0fb553bc068e71acaf04234fe
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.35.0 (2025-08-15)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.34.0...v1.35.0](https://github.com/Increase/increase-ruby/compare/v1.34.0...v1.35.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([ca8b776](https://github.com/Increase/increase-ruby/commit/ca8b7769f961fc457087f239a1790390caae245a))
|
|
10
|
+
|
|
3
11
|
## 1.34.0 (2025-08-14)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.33.0...v1.34.0](https://github.com/Increase/increase-ruby/compare/v1.33.0...v1.34.0)
|
data/README.md
CHANGED
data/lib/increase/version.rb
CHANGED
|
@@ -172,6 +172,13 @@ module Increase
|
|
|
172
172
|
SAVINGS =
|
|
173
173
|
T.let(:savings, Increase::ExternalAccount::Funding::TaggedSymbol)
|
|
174
174
|
|
|
175
|
+
# A general ledger account.
|
|
176
|
+
GENERAL_LEDGER =
|
|
177
|
+
T.let(
|
|
178
|
+
:general_ledger,
|
|
179
|
+
Increase::ExternalAccount::Funding::TaggedSymbol
|
|
180
|
+
)
|
|
181
|
+
|
|
175
182
|
# A different type of account.
|
|
176
183
|
OTHER = T.let(:other, Increase::ExternalAccount::Funding::TaggedSymbol)
|
|
177
184
|
|
|
@@ -169,6 +169,13 @@ module Increase
|
|
|
169
169
|
Increase::ExternalAccountCreateParams::Funding::TaggedSymbol
|
|
170
170
|
)
|
|
171
171
|
|
|
172
|
+
# A general ledger account.
|
|
173
|
+
GENERAL_LEDGER =
|
|
174
|
+
T.let(
|
|
175
|
+
:general_ledger,
|
|
176
|
+
Increase::ExternalAccountCreateParams::Funding::TaggedSymbol
|
|
177
|
+
)
|
|
178
|
+
|
|
172
179
|
# A different type of account.
|
|
173
180
|
OTHER =
|
|
174
181
|
T.let(
|
|
@@ -166,6 +166,13 @@ module Increase
|
|
|
166
166
|
Increase::ExternalAccountUpdateParams::Funding::TaggedSymbol
|
|
167
167
|
)
|
|
168
168
|
|
|
169
|
+
# A general ledger account.
|
|
170
|
+
GENERAL_LEDGER =
|
|
171
|
+
T.let(
|
|
172
|
+
:general_ledger,
|
|
173
|
+
Increase::ExternalAccountUpdateParams::Funding::TaggedSymbol
|
|
174
|
+
)
|
|
175
|
+
|
|
169
176
|
# A different type of account.
|
|
170
177
|
OTHER =
|
|
171
178
|
T.let(
|
|
@@ -78,7 +78,7 @@ module Increase
|
|
|
78
78
|
def self?.values: -> ::Array[Increase::Models::ExternalAccount::account_holder]
|
|
79
79
|
end
|
|
80
80
|
|
|
81
|
-
type funding = :checking | :savings | :other
|
|
81
|
+
type funding = :checking | :savings | :general_ledger | :other
|
|
82
82
|
|
|
83
83
|
module Funding
|
|
84
84
|
extend Increase::Internal::Type::Enum
|
|
@@ -89,6 +89,9 @@ module Increase
|
|
|
89
89
|
# A savings account.
|
|
90
90
|
SAVINGS: :savings
|
|
91
91
|
|
|
92
|
+
# A general ledger account.
|
|
93
|
+
GENERAL_LEDGER: :general_ledger
|
|
94
|
+
|
|
92
95
|
# A different type of account.
|
|
93
96
|
OTHER: :other
|
|
94
97
|
|
|
@@ -67,7 +67,7 @@ module Increase
|
|
|
67
67
|
def self?.values: -> ::Array[Increase::Models::ExternalAccountCreateParams::account_holder]
|
|
68
68
|
end
|
|
69
69
|
|
|
70
|
-
type funding = :checking | :savings | :other
|
|
70
|
+
type funding = :checking | :savings | :general_ledger | :other
|
|
71
71
|
|
|
72
72
|
module Funding
|
|
73
73
|
extend Increase::Internal::Type::Enum
|
|
@@ -78,6 +78,9 @@ module Increase
|
|
|
78
78
|
# A savings account.
|
|
79
79
|
SAVINGS: :savings
|
|
80
80
|
|
|
81
|
+
# A general ledger account.
|
|
82
|
+
GENERAL_LEDGER: :general_ledger
|
|
83
|
+
|
|
81
84
|
# A different type of account.
|
|
82
85
|
OTHER: :other
|
|
83
86
|
|
|
@@ -65,7 +65,7 @@ module Increase
|
|
|
65
65
|
def self?.values: -> ::Array[Increase::Models::ExternalAccountUpdateParams::account_holder]
|
|
66
66
|
end
|
|
67
67
|
|
|
68
|
-
type funding = :checking | :savings | :other
|
|
68
|
+
type funding = :checking | :savings | :general_ledger | :other
|
|
69
69
|
|
|
70
70
|
module Funding
|
|
71
71
|
extend Increase::Internal::Type::Enum
|
|
@@ -76,6 +76,9 @@ module Increase
|
|
|
76
76
|
# A savings account.
|
|
77
77
|
SAVINGS: :savings
|
|
78
78
|
|
|
79
|
+
# A general ledger account.
|
|
80
|
+
GENERAL_LEDGER: :general_ledger
|
|
81
|
+
|
|
79
82
|
# A different type of account.
|
|
80
83
|
OTHER: :other
|
|
81
84
|
|
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.35.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Increase
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-08-
|
|
11
|
+
date: 2025-08-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|