increase 1.320.0 → 1.322.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 +2 -2
- data/lib/increase/resources/routing_numbers.rb +1 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/resources/routing_numbers.rbi +1 -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: 60a0537a682635e58ab17f975296f5321c9a87591bd14a1db0e7c73ad9975b08
|
|
4
|
+
data.tar.gz: c37a4c9dac0c78f56261535d566adc3173e48a4cb2360abfe662186ac9d08aa7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ba6a88f6fc3525d8af38026c1e68bafebdefcdb6b1ec65ba1f2b00d2b28e80223a858fc1fe07009a56e58d1c0abb8182c20a05d28306cb1356e8fdf64f69017f
|
|
7
|
+
data.tar.gz: 29bdef36134f652609f23ef796df5bbb8210a7664ba99834c3bbc4401926bc4b57f4eb762c23c99dec9d8f984c3dbd7ad088feaeb76ec50e75270c0575274bc2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.322.0 (2026-05-04)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.321.0...v1.322.0](https://github.com/Increase/increase-ruby/compare/v1.321.0...v1.322.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([992ee5c](https://github.com/Increase/increase-ruby/commit/992ee5c8d7f0b8d7ffaec9d2ee22b180676a3ce5))
|
|
10
|
+
|
|
11
|
+
## 1.321.0 (2026-05-04)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.320.0...v1.321.0](https://github.com/Increase/increase-ruby/compare/v1.320.0...v1.321.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([a7d9172](https://github.com/Increase/increase-ruby/commit/a7d9172c1e5d3814495bd467c6acc71d4988dd12))
|
|
18
|
+
|
|
3
19
|
## 1.320.0 (2026-05-02)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.319.0...v1.320.0](https://github.com/Increase/increase-ruby/compare/v1.319.0...v1.320.0)
|
data/README.md
CHANGED
|
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
|
|
|
15
15
|
<!-- x-release-please-start-version -->
|
|
16
16
|
|
|
17
17
|
```ruby
|
|
18
|
-
gem "increase", "~> 1.
|
|
18
|
+
gem "increase", "~> 1.322.0"
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
<!-- x-release-please-end -->
|
|
@@ -96,7 +96,7 @@ When the library is unable to connect to the API, or if the API returns a non-su
|
|
|
96
96
|
|
|
97
97
|
```ruby
|
|
98
98
|
begin
|
|
99
|
-
account = increase.accounts.create(name: "
|
|
99
|
+
account = increase.accounts.create(name: "Oops")
|
|
100
100
|
rescue Increase::Errors::APIConnectionError => e
|
|
101
101
|
puts("The server could not be reached")
|
|
102
102
|
puts(e.cause) # an underlying Exception, likely raised within `net/http`
|
|
@@ -9,7 +9,7 @@ module Increase
|
|
|
9
9
|
# You can use this API to confirm if a routing number is valid, such as when a
|
|
10
10
|
# user is providing you with bank account details. Since routing numbers uniquely
|
|
11
11
|
# identify a bank, this will always return 0 or 1 entry. In Sandbox, only a few
|
|
12
|
-
# [routing numbers are valid](/documentation/sandbox-
|
|
12
|
+
# [routing numbers are valid](/documentation/sandbox-test-values#routing-numbers).
|
|
13
13
|
# `110000000` is an example of a Sandbox routing number.
|
|
14
14
|
#
|
|
15
15
|
# @overload list(routing_number:, cursor: nil, limit: nil, request_options: {})
|
data/lib/increase/version.rb
CHANGED
|
@@ -6,7 +6,7 @@ module Increase
|
|
|
6
6
|
# You can use this API to confirm if a routing number is valid, such as when a
|
|
7
7
|
# user is providing you with bank account details. Since routing numbers uniquely
|
|
8
8
|
# identify a bank, this will always return 0 or 1 entry. In Sandbox, only a few
|
|
9
|
-
# [routing numbers are valid](/documentation/sandbox-
|
|
9
|
+
# [routing numbers are valid](/documentation/sandbox-test-values#routing-numbers).
|
|
10
10
|
# `110000000` is an example of a Sandbox routing number.
|
|
11
11
|
sig do
|
|
12
12
|
params(
|
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.322.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-05-
|
|
11
|
+
date: 2026-05-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|