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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2782e2fd1c73102681a3bbb623c1c0b7758a7a3f74af2fe64cbf922604c67c97
4
- data.tar.gz: 00b804b7e40057aea878ee32c60398baf510f467c646b549a212262e32fbde5e
3
+ metadata.gz: fed1ab20a1972aaca72a230c33d54cc75bc9f9d32859cc251c3e06b55cbfefb5
4
+ data.tar.gz: cf6573de9e60524eaf5526d8d2aabfd741bdb29114face6aa9ab33d6c184d90d
5
5
  SHA512:
6
- metadata.gz: c45258decb50839c0cc74decb1d94c525ffb10978ae5cc52c3b687328a009bb7eb313c76fc25874687d795e4146b9e48fb79eaf85b94db4f9520ff78bcc17d29
7
- data.tar.gz: e91c883e393031d836a33a3d2bfb984a3c99bcb2d3f9b4032a790d5e28459412b3313921dd576d30649ebc69cf4514dc3663cdcebc87eba196b626f5b8aedace
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
@@ -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.312.0"
18
+ gem "increase", "~> 1.313.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -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)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.312.0"
4
+ VERSION = "1.313.0"
5
5
  end
@@ -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
 
@@ -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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.312.0
4
+ version: 1.313.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase