increase 1.65.0 → 1.66.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: 5c9e7d2f1ef63512112a8b2a87d64966826584640f9cb49683ccaf79562c4447
4
- data.tar.gz: 54eba55f6851d3cc8729bee1788e1bda14e58c3f2ded96c51934d4fc4cd0e6d7
3
+ metadata.gz: 3279bfab4dd6ff3032815df6317752e7136e79b2c9b2b06646151f8cb312713f
4
+ data.tar.gz: 598ae9bba9db28a1225d09b669e1036d774e51aa35bfd6bfd39a5da380b96807
5
5
  SHA512:
6
- metadata.gz: 50e8f5b2d156f03522c1ee09a5d494cd34090e510eb074faa9e6fab18fe7fa3cdac3b7b00252b70debabad3e06f9738b9ef651d1bd72bef217d0d425acbe2dbe
7
- data.tar.gz: '084aaf9489dd09f8c22943e659522dcd1acef332093845e07f08bbea5afc31baaf19e011300ffd00d9e98962e56ceb3b4c342a879b914d61ad3e03b594ed99bb'
6
+ metadata.gz: 05bb5ee8eed7ef086378a628ef0304e6da44d207912b80f6e92b423a195c1ad30d54793f3d1c5dedd79fac8b349a1193e6ae35cbe0537bc1390431da1c6b319a
7
+ data.tar.gz: 66fbc098bf7de179f2d7da5e589dc00cdef14c3521a751edf296d78d3b450a439f8f72aaaefc9aec73e5a28a96bf568e794a3e964afdde99c146fc168f0f5f91
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.66.0 (2025-09-05)
4
+
5
+ Full Changelog: [v1.65.0...v1.66.0](https://github.com/Increase/increase-ruby/compare/v1.65.0...v1.66.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([a456344](https://github.com/Increase/increase-ruby/commit/a456344ef7dd123a819153711709dec13edc30ef))
10
+
3
11
  ## 1.65.0 (2025-09-05)
4
12
 
5
13
  Full Changelog: [v1.64.0...v1.65.0](https://github.com/Increase/increase-ruby/compare/v1.64.0...v1.65.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.65.0"
18
+ gem "increase", "~> 1.66.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -29,6 +29,9 @@ module Increase
29
29
  # @return [Increase::Resources::AccountNumbers]
30
30
  attr_reader :account_numbers
31
31
 
32
+ # @return [Increase::Resources::AccountTransfers]
33
+ attr_reader :account_transfers
34
+
32
35
  # @return [Increase::Resources::Cards]
33
36
  attr_reader :cards
34
37
 
@@ -62,9 +65,6 @@ module Increase
62
65
  # @return [Increase::Resources::DeclinedTransactions]
63
66
  attr_reader :declined_transactions
64
67
 
65
- # @return [Increase::Resources::AccountTransfers]
66
- attr_reader :account_transfers
67
-
68
68
  # @return [Increase::Resources::ACHTransfers]
69
69
  attr_reader :ach_transfers
70
70
 
@@ -252,6 +252,7 @@ module Increase
252
252
 
253
253
  @accounts = Increase::Resources::Accounts.new(client: self)
254
254
  @account_numbers = Increase::Resources::AccountNumbers.new(client: self)
255
+ @account_transfers = Increase::Resources::AccountTransfers.new(client: self)
255
256
  @cards = Increase::Resources::Cards.new(client: self)
256
257
  @card_payments = Increase::Resources::CardPayments.new(client: self)
257
258
  @card_purchase_supplements = Increase::Resources::CardPurchaseSupplements.new(client: self)
@@ -263,7 +264,6 @@ module Increase
263
264
  @transactions = Increase::Resources::Transactions.new(client: self)
264
265
  @pending_transactions = Increase::Resources::PendingTransactions.new(client: self)
265
266
  @declined_transactions = Increase::Resources::DeclinedTransactions.new(client: self)
266
- @account_transfers = Increase::Resources::AccountTransfers.new(client: self)
267
267
  @ach_transfers = Increase::Resources::ACHTransfers.new(client: self)
268
268
  @ach_prenotifications = Increase::Resources::ACHPrenotifications.new(client: self)
269
269
  @inbound_ach_transfers = Increase::Resources::InboundACHTransfers.new(client: self)
@@ -6,6 +6,9 @@ module Increase
6
6
  # @return [Increase::Resources::Simulations::InterestPayments]
7
7
  attr_reader :interest_payments
8
8
 
9
+ # @return [Increase::Resources::Simulations::AccountTransfers]
10
+ attr_reader :account_transfers
11
+
9
12
  # @return [Increase::Resources::Simulations::CardAuthorizations]
10
13
  attr_reader :card_authorizations
11
14
 
@@ -39,9 +42,6 @@ module Increase
39
42
  # @return [Increase::Resources::Simulations::PendingTransactions]
40
43
  attr_reader :pending_transactions
41
44
 
42
- # @return [Increase::Resources::Simulations::AccountTransfers]
43
- attr_reader :account_transfers
44
-
45
45
  # @return [Increase::Resources::Simulations::ACHTransfers]
46
46
  attr_reader :ach_transfers
47
47
 
@@ -96,6 +96,7 @@ module Increase
96
96
  def initialize(client:)
97
97
  @client = client
98
98
  @interest_payments = Increase::Resources::Simulations::InterestPayments.new(client: client)
99
+ @account_transfers = Increase::Resources::Simulations::AccountTransfers.new(client: client)
99
100
  @card_authorizations = Increase::Resources::Simulations::CardAuthorizations.new(client: client)
100
101
  @card_authorization_expirations =
101
102
  Increase::Resources::Simulations::CardAuthorizationExpirations.new(client: client)
@@ -109,7 +110,6 @@ module Increase
109
110
  @digital_wallet_token_requests =
110
111
  Increase::Resources::Simulations::DigitalWalletTokenRequests.new(client: client)
111
112
  @pending_transactions = Increase::Resources::Simulations::PendingTransactions.new(client: client)
112
- @account_transfers = Increase::Resources::Simulations::AccountTransfers.new(client: client)
113
113
  @ach_transfers = Increase::Resources::Simulations::ACHTransfers.new(client: client)
114
114
  @inbound_ach_transfers = Increase::Resources::Simulations::InboundACHTransfers.new(client: client)
115
115
  @wire_transfers = Increase::Resources::Simulations::WireTransfers.new(client: client)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.65.0"
4
+ VERSION = "1.66.0"
5
5
  end
@@ -28,6 +28,9 @@ module Increase
28
28
  sig { returns(Increase::Resources::AccountNumbers) }
29
29
  attr_reader :account_numbers
30
30
 
31
+ sig { returns(Increase::Resources::AccountTransfers) }
32
+ attr_reader :account_transfers
33
+
31
34
  sig { returns(Increase::Resources::Cards) }
32
35
  attr_reader :cards
33
36
 
@@ -61,9 +64,6 @@ module Increase
61
64
  sig { returns(Increase::Resources::DeclinedTransactions) }
62
65
  attr_reader :declined_transactions
63
66
 
64
- sig { returns(Increase::Resources::AccountTransfers) }
65
- attr_reader :account_transfers
66
-
67
67
  sig { returns(Increase::Resources::ACHTransfers) }
68
68
  attr_reader :ach_transfers
69
69
 
@@ -6,6 +6,9 @@ module Increase
6
6
  sig { returns(Increase::Resources::Simulations::InterestPayments) }
7
7
  attr_reader :interest_payments
8
8
 
9
+ sig { returns(Increase::Resources::Simulations::AccountTransfers) }
10
+ attr_reader :account_transfers
11
+
9
12
  sig { returns(Increase::Resources::Simulations::CardAuthorizations) }
10
13
  attr_reader :card_authorizations
11
14
 
@@ -43,9 +46,6 @@ module Increase
43
46
  sig { returns(Increase::Resources::Simulations::PendingTransactions) }
44
47
  attr_reader :pending_transactions
45
48
 
46
- sig { returns(Increase::Resources::Simulations::AccountTransfers) }
47
- attr_reader :account_transfers
48
-
49
49
  sig { returns(Increase::Resources::Simulations::ACHTransfers) }
50
50
  attr_reader :ach_transfers
51
51
 
@@ -19,6 +19,8 @@ module Increase
19
19
 
20
20
  attr_reader account_numbers: Increase::Resources::AccountNumbers
21
21
 
22
+ attr_reader account_transfers: Increase::Resources::AccountTransfers
23
+
22
24
  attr_reader cards: Increase::Resources::Cards
23
25
 
24
26
  attr_reader card_payments: Increase::Resources::CardPayments
@@ -41,8 +43,6 @@ module Increase
41
43
 
42
44
  attr_reader declined_transactions: Increase::Resources::DeclinedTransactions
43
45
 
44
- attr_reader account_transfers: Increase::Resources::AccountTransfers
45
-
46
46
  attr_reader ach_transfers: Increase::Resources::ACHTransfers
47
47
 
48
48
  attr_reader ach_prenotifications: Increase::Resources::ACHPrenotifications
@@ -3,6 +3,8 @@ module Increase
3
3
  class Simulations
4
4
  attr_reader interest_payments: Increase::Resources::Simulations::InterestPayments
5
5
 
6
+ attr_reader account_transfers: Increase::Resources::Simulations::AccountTransfers
7
+
6
8
  attr_reader card_authorizations: Increase::Resources::Simulations::CardAuthorizations
7
9
 
8
10
  attr_reader card_authorization_expirations: Increase::Resources::Simulations::CardAuthorizationExpirations
@@ -25,8 +27,6 @@ module Increase
25
27
 
26
28
  attr_reader pending_transactions: Increase::Resources::Simulations::PendingTransactions
27
29
 
28
- attr_reader account_transfers: Increase::Resources::Simulations::AccountTransfers
29
-
30
30
  attr_reader ach_transfers: Increase::Resources::Simulations::ACHTransfers
31
31
 
32
32
  attr_reader inbound_ach_transfers: Increase::Resources::Simulations::InboundACHTransfers
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.65.0
4
+ version: 1.66.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase