increase 1.293.0 → 1.294.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: f27d6f8d78af4a33d7b458c035245c4e044b3a3e72a75c5170ac24022674b580
4
- data.tar.gz: b35640a9e4076bda3c967450239e038fc84245eeab1334636d046642fc624da4
3
+ metadata.gz: 9e5dcc8dd08f58f6ae9204e2e9ae0f36352ccb71f23e523aa620651c86b0c614
4
+ data.tar.gz: 0b15784ef624a7adef77a687db26ce2563786db6fffa42fe5e650e397d8a7864
5
5
  SHA512:
6
- metadata.gz: c9477f09858c87ba749ec0536c2d5e9082969f13efccb9d71b5e5134f55b0a97c2b5ad5f3f0d7615ebc45e989471aeae9f3399afa7e8c60c971f56a4de4776ea
7
- data.tar.gz: afe6393b06142cec7b5d7f5afb782d2382951bf9bb17e6228474e001c5c987b31647b43f6eb994809030df334d3575300e7aaf27877f4b906b438bce3435128d
6
+ metadata.gz: 7b3196b5a27d4e21b7345cb9abebee720a1a1246d108a2f11ca9d9c2e7ec5c0d708f07e61769c6c63baae0769b68673469c47ca21e1d604d942ef77d4f916887
7
+ data.tar.gz: a405a85ed0c105a1f70d54ef1b1bd0cc72ff2d6f64a54dab294bc94c34ffe5eed4bd01ef7c220b4db1e38d54a42228a345e9952f0aa42b334fcb0f5284e30bd8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.294.0 (2026-04-13)
4
+
5
+ Full Changelog: [v1.293.0...v1.294.0](https://github.com/Increase/increase-ruby/compare/v1.293.0...v1.294.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([18c4e93](https://github.com/Increase/increase-ruby/commit/18c4e93f6c76702b024e728e795e986ff7b80f5e))
10
+
3
11
  ## 1.293.0 (2026-04-13)
4
12
 
5
13
  Full Changelog: [v1.292.0...v1.293.0](https://github.com/Increase/increase-ruby/compare/v1.292.0...v1.293.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.293.0"
18
+ gem "increase", "~> 1.294.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -6,9 +6,6 @@ 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
-
12
9
  # @return [Increase::Resources::Simulations::CardAuthorizations]
13
10
  attr_reader :card_authorizations
14
11
 
@@ -108,7 +105,6 @@ module Increase
108
105
  def initialize(client:)
109
106
  @client = client
110
107
  @interest_payments = Increase::Resources::Simulations::InterestPayments.new(client: client)
111
- @account_transfers = Increase::Resources::Simulations::AccountTransfers.new(client: client)
112
108
  @card_authorizations = Increase::Resources::Simulations::CardAuthorizations.new(client: client)
113
109
  @card_balance_inquiries = Increase::Resources::Simulations::CardBalanceInquiries.new(client: client)
114
110
  @card_authorization_expirations =
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.293.0"
4
+ VERSION = "1.294.0"
5
5
  end
data/lib/increase.rb CHANGED
@@ -293,7 +293,6 @@ require_relative "increase/models/real_time_payments_transfer_retrieve_params"
293
293
  require_relative "increase/models/routing_number_list_params"
294
294
  require_relative "increase/models/routing_number_list_response"
295
295
  require_relative "increase/models/simulations/account_statement_create_params"
296
- require_relative "increase/models/simulations/account_transfer_complete_params"
297
296
  require_relative "increase/models/simulations/ach_transfer_acknowledge_params"
298
297
  require_relative "increase/models/simulations/ach_transfer_create_notification_of_change_params"
299
298
  require_relative "increase/models/simulations/ach_transfer_return_params"
@@ -418,7 +417,6 @@ require_relative "increase/resources/real_time_payments_transfers"
418
417
  require_relative "increase/resources/routing_numbers"
419
418
  require_relative "increase/resources/simulations"
420
419
  require_relative "increase/resources/simulations/account_statements"
421
- require_relative "increase/resources/simulations/account_transfers"
422
420
  require_relative "increase/resources/simulations/ach_transfers"
423
421
  require_relative "increase/resources/simulations/card_authentications"
424
422
  require_relative "increase/resources/simulations/card_authorization_expirations"
@@ -6,9 +6,6 @@ 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
-
12
9
  sig { returns(Increase::Resources::Simulations::CardAuthorizations) }
13
10
  attr_reader :card_authorizations
14
11
 
@@ -3,8 +3,6 @@ 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
-
8
6
  attr_reader card_authorizations: Increase::Resources::Simulations::CardAuthorizations
9
7
 
10
8
  attr_reader card_balance_inquiries: Increase::Resources::Simulations::CardBalanceInquiries
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.293.0
4
+ version: 1.294.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase
@@ -323,7 +323,6 @@ files:
323
323
  - lib/increase/models/routing_number_list_params.rb
324
324
  - lib/increase/models/routing_number_list_response.rb
325
325
  - lib/increase/models/simulations/account_statement_create_params.rb
326
- - lib/increase/models/simulations/account_transfer_complete_params.rb
327
326
  - lib/increase/models/simulations/ach_transfer_acknowledge_params.rb
328
327
  - lib/increase/models/simulations/ach_transfer_create_notification_of_change_params.rb
329
328
  - lib/increase/models/simulations/ach_transfer_return_params.rb
@@ -448,7 +447,6 @@ files:
448
447
  - lib/increase/resources/routing_numbers.rb
449
448
  - lib/increase/resources/simulations.rb
450
449
  - lib/increase/resources/simulations/account_statements.rb
451
- - lib/increase/resources/simulations/account_transfers.rb
452
450
  - lib/increase/resources/simulations/ach_transfers.rb
453
451
  - lib/increase/resources/simulations/card_authentications.rb
454
452
  - lib/increase/resources/simulations/card_authorization_expirations.rb
@@ -746,7 +744,6 @@ files:
746
744
  - rbi/increase/models/routing_number_list_params.rbi
747
745
  - rbi/increase/models/routing_number_list_response.rbi
748
746
  - rbi/increase/models/simulations/account_statement_create_params.rbi
749
- - rbi/increase/models/simulations/account_transfer_complete_params.rbi
750
747
  - rbi/increase/models/simulations/ach_transfer_acknowledge_params.rbi
751
748
  - rbi/increase/models/simulations/ach_transfer_create_notification_of_change_params.rbi
752
749
  - rbi/increase/models/simulations/ach_transfer_return_params.rbi
@@ -871,7 +868,6 @@ files:
871
868
  - rbi/increase/resources/routing_numbers.rbi
872
869
  - rbi/increase/resources/simulations.rbi
873
870
  - rbi/increase/resources/simulations/account_statements.rbi
874
- - rbi/increase/resources/simulations/account_transfers.rbi
875
871
  - rbi/increase/resources/simulations/ach_transfers.rbi
876
872
  - rbi/increase/resources/simulations/card_authentications.rbi
877
873
  - rbi/increase/resources/simulations/card_authorization_expirations.rbi
@@ -1168,7 +1164,6 @@ files:
1168
1164
  - sig/increase/models/routing_number_list_params.rbs
1169
1165
  - sig/increase/models/routing_number_list_response.rbs
1170
1166
  - sig/increase/models/simulations/account_statement_create_params.rbs
1171
- - sig/increase/models/simulations/account_transfer_complete_params.rbs
1172
1167
  - sig/increase/models/simulations/ach_transfer_acknowledge_params.rbs
1173
1168
  - sig/increase/models/simulations/ach_transfer_create_notification_of_change_params.rbs
1174
1169
  - sig/increase/models/simulations/ach_transfer_return_params.rbs
@@ -1293,7 +1288,6 @@ files:
1293
1288
  - sig/increase/resources/routing_numbers.rbs
1294
1289
  - sig/increase/resources/simulations.rbs
1295
1290
  - sig/increase/resources/simulations/account_statements.rbs
1296
- - sig/increase/resources/simulations/account_transfers.rbs
1297
1291
  - sig/increase/resources/simulations/ach_transfers.rbs
1298
1292
  - sig/increase/resources/simulations/card_authentications.rbs
1299
1293
  - sig/increase/resources/simulations/card_authorization_expirations.rbs
@@ -1,24 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Increase
4
- module Models
5
- module Simulations
6
- # @see Increase::Resources::Simulations::AccountTransfers#complete
7
- class AccountTransferCompleteParams < Increase::Internal::Type::BaseModel
8
- extend Increase::Internal::Type::RequestParameters::Converter
9
- include Increase::Internal::Type::RequestParameters
10
-
11
- # @!attribute account_transfer_id
12
- # The identifier of the Account Transfer you wish to complete.
13
- #
14
- # @return [String]
15
- required :account_transfer_id, String
16
-
17
- # @!method initialize(account_transfer_id:, request_options: {})
18
- # @param account_transfer_id [String] The identifier of the Account Transfer you wish to complete.
19
- #
20
- # @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
21
- end
22
- end
23
- end
24
- end
@@ -1,39 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Increase
4
- module Resources
5
- class Simulations
6
- class AccountTransfers
7
- # If your account is configured to require approval for each transfer, this
8
- # endpoint simulates the approval of an [Account Transfer](#account-transfers).
9
- # You can also approve sandbox Account Transfers in the dashboard. This transfer
10
- # must first have a `status` of `pending_approval`.
11
- #
12
- # @overload complete(account_transfer_id, request_options: {})
13
- #
14
- # @param account_transfer_id [String] The identifier of the Account Transfer you wish to complete.
15
- #
16
- # @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
17
- #
18
- # @return [Increase::Models::AccountTransfer]
19
- #
20
- # @see Increase::Models::Simulations::AccountTransferCompleteParams
21
- def complete(account_transfer_id, params = {})
22
- @client.request(
23
- method: :post,
24
- path: ["simulations/account_transfers/%1$s/complete", account_transfer_id],
25
- model: Increase::AccountTransfer,
26
- options: params[:request_options]
27
- )
28
- end
29
-
30
- # @api private
31
- #
32
- # @param client [Increase::Client]
33
- def initialize(client:)
34
- @client = client
35
- end
36
- end
37
- end
38
- end
39
- end
@@ -1,48 +0,0 @@
1
- # typed: strong
2
-
3
- module Increase
4
- module Models
5
- module Simulations
6
- class AccountTransferCompleteParams < Increase::Internal::Type::BaseModel
7
- extend Increase::Internal::Type::RequestParameters::Converter
8
- include Increase::Internal::Type::RequestParameters
9
-
10
- OrHash =
11
- T.type_alias do
12
- T.any(
13
- Increase::Simulations::AccountTransferCompleteParams,
14
- Increase::Internal::AnyHash
15
- )
16
- end
17
-
18
- # The identifier of the Account Transfer you wish to complete.
19
- sig { returns(String) }
20
- attr_accessor :account_transfer_id
21
-
22
- sig do
23
- params(
24
- account_transfer_id: String,
25
- request_options: Increase::RequestOptions::OrHash
26
- ).returns(T.attached_class)
27
- end
28
- def self.new(
29
- # The identifier of the Account Transfer you wish to complete.
30
- account_transfer_id:,
31
- request_options: {}
32
- )
33
- end
34
-
35
- sig do
36
- override.returns(
37
- {
38
- account_transfer_id: String,
39
- request_options: Increase::RequestOptions
40
- }
41
- )
42
- end
43
- def to_hash
44
- end
45
- end
46
- end
47
- end
48
- end
@@ -1,31 +0,0 @@
1
- # typed: strong
2
-
3
- module Increase
4
- module Resources
5
- class Simulations
6
- class AccountTransfers
7
- # If your account is configured to require approval for each transfer, this
8
- # endpoint simulates the approval of an [Account Transfer](#account-transfers).
9
- # You can also approve sandbox Account Transfers in the dashboard. This transfer
10
- # must first have a `status` of `pending_approval`.
11
- sig do
12
- params(
13
- account_transfer_id: String,
14
- request_options: Increase::RequestOptions::OrHash
15
- ).returns(Increase::AccountTransfer)
16
- end
17
- def complete(
18
- # The identifier of the Account Transfer you wish to complete.
19
- account_transfer_id,
20
- request_options: {}
21
- )
22
- end
23
-
24
- # @api private
25
- sig { params(client: Increase::Client).returns(T.attached_class) }
26
- def self.new(client:)
27
- end
28
- end
29
- end
30
- end
31
- end
@@ -1,26 +0,0 @@
1
- module Increase
2
- module Models
3
- module Simulations
4
- type account_transfer_complete_params =
5
- { account_transfer_id: String }
6
- & Increase::Internal::Type::request_parameters
7
-
8
- class AccountTransferCompleteParams < Increase::Internal::Type::BaseModel
9
- extend Increase::Internal::Type::RequestParameters::Converter
10
- include Increase::Internal::Type::RequestParameters
11
-
12
- attr_accessor account_transfer_id: String
13
-
14
- def initialize: (
15
- account_transfer_id: String,
16
- ?request_options: Increase::request_opts
17
- ) -> void
18
-
19
- def to_hash: -> {
20
- account_transfer_id: String,
21
- request_options: Increase::RequestOptions
22
- }
23
- end
24
- end
25
- end
26
- end
@@ -1,14 +0,0 @@
1
- module Increase
2
- module Resources
3
- class Simulations
4
- class AccountTransfers
5
- def complete: (
6
- String account_transfer_id,
7
- ?request_options: Increase::request_opts
8
- ) -> Increase::AccountTransfer
9
-
10
- def initialize: (client: Increase::Client) -> void
11
- end
12
- end
13
- end
14
- end