increase 1.312.0 → 1.313.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/client.rb +4 -4
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/client.rbi +3 -3
- data/sig/increase/client.rbs +2 -2
- 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: fed1ab20a1972aaca72a230c33d54cc75bc9f9d32859cc251c3e06b55cbfefb5
|
|
4
|
+
data.tar.gz: cf6573de9e60524eaf5526d8d2aabfd741bdb29114face6aa9ab33d6c184d90d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 432852bc8c479c84b0ecdce8fa5f43a30844726ee1e5f4b09a33bbdf458330b7fa88e08186237a5c0658d6636388f33b3c6bbc122d04a9f4bfd448771ca5666d
|
|
7
|
+
data.tar.gz: c85529626e86c71ceb304b35bd45a144e815910eddff0891bd85243c78e554c5bc7fac0a5f3d0fe7a678a7dbaf092a2b3fc7bd0ad6100b829f87265a9f5c8e6a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.313.0 (2026-04-30)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.312.0...v1.313.0](https://github.com/Increase/increase-ruby/compare/v1.312.0...v1.313.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([be3412f](https://github.com/Increase/increase-ruby/commit/be3412f1d7174d2e204d880a03bad033596a5b67))
|
|
10
|
+
|
|
3
11
|
## 1.312.0 (2026-04-30)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.311.0...v1.312.0](https://github.com/Increase/increase-ruby/compare/v1.311.0...v1.312.0)
|
data/README.md
CHANGED
data/lib/increase/client.rb
CHANGED
|
@@ -71,12 +71,12 @@ module Increase
|
|
|
71
71
|
# @return [Increase::Resources::ACHTransfers]
|
|
72
72
|
attr_reader :ach_transfers
|
|
73
73
|
|
|
74
|
-
# @return [Increase::Resources::ACHPrenotifications]
|
|
75
|
-
attr_reader :ach_prenotifications
|
|
76
|
-
|
|
77
74
|
# @return [Increase::Resources::InboundACHTransfers]
|
|
78
75
|
attr_reader :inbound_ach_transfers
|
|
79
76
|
|
|
77
|
+
# @return [Increase::Resources::ACHPrenotifications]
|
|
78
|
+
attr_reader :ach_prenotifications
|
|
79
|
+
|
|
80
80
|
# @return [Increase::Resources::WireTransfers]
|
|
81
81
|
attr_reader :wire_transfers
|
|
82
82
|
|
|
@@ -292,8 +292,8 @@ module Increase
|
|
|
292
292
|
@pending_transactions = Increase::Resources::PendingTransactions.new(client: self)
|
|
293
293
|
@declined_transactions = Increase::Resources::DeclinedTransactions.new(client: self)
|
|
294
294
|
@ach_transfers = Increase::Resources::ACHTransfers.new(client: self)
|
|
295
|
-
@ach_prenotifications = Increase::Resources::ACHPrenotifications.new(client: self)
|
|
296
295
|
@inbound_ach_transfers = Increase::Resources::InboundACHTransfers.new(client: self)
|
|
296
|
+
@ach_prenotifications = Increase::Resources::ACHPrenotifications.new(client: self)
|
|
297
297
|
@wire_transfers = Increase::Resources::WireTransfers.new(client: self)
|
|
298
298
|
@inbound_wire_transfers = Increase::Resources::InboundWireTransfers.new(client: self)
|
|
299
299
|
@wire_drawdown_requests = Increase::Resources::WireDrawdownRequests.new(client: self)
|
data/lib/increase/version.rb
CHANGED
data/rbi/increase/client.rbi
CHANGED
|
@@ -70,12 +70,12 @@ module Increase
|
|
|
70
70
|
sig { returns(Increase::Resources::ACHTransfers) }
|
|
71
71
|
attr_reader :ach_transfers
|
|
72
72
|
|
|
73
|
-
sig { returns(Increase::Resources::ACHPrenotifications) }
|
|
74
|
-
attr_reader :ach_prenotifications
|
|
75
|
-
|
|
76
73
|
sig { returns(Increase::Resources::InboundACHTransfers) }
|
|
77
74
|
attr_reader :inbound_ach_transfers
|
|
78
75
|
|
|
76
|
+
sig { returns(Increase::Resources::ACHPrenotifications) }
|
|
77
|
+
attr_reader :ach_prenotifications
|
|
78
|
+
|
|
79
79
|
sig { returns(Increase::Resources::WireTransfers) }
|
|
80
80
|
attr_reader :wire_transfers
|
|
81
81
|
|
data/sig/increase/client.rbs
CHANGED
|
@@ -47,10 +47,10 @@ module Increase
|
|
|
47
47
|
|
|
48
48
|
attr_reader ach_transfers: Increase::Resources::ACHTransfers
|
|
49
49
|
|
|
50
|
-
attr_reader ach_prenotifications: Increase::Resources::ACHPrenotifications
|
|
51
|
-
|
|
52
50
|
attr_reader inbound_ach_transfers: Increase::Resources::InboundACHTransfers
|
|
53
51
|
|
|
52
|
+
attr_reader ach_prenotifications: Increase::Resources::ACHPrenotifications
|
|
53
|
+
|
|
54
54
|
attr_reader wire_transfers: Increase::Resources::WireTransfers
|
|
55
55
|
|
|
56
56
|
attr_reader inbound_wire_transfers: Increase::Resources::InboundWireTransfers
|