Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.65.0"
".": "1.66.0"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 217
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-6d1cfc3f93b6829318d0905c04d24008ab3576d5c00d8eb17c7d55fc34beef9e.yml
openapi_spec_hash: 12f331a1ebc9c7c8465a850736a8d8c6
config_hash: 2a4a1945e6eefa24fa5b0590cf580fb4
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-e74540ca75fc4e7a0e28d2c41c53c6131dff74e1e3c1472601db19509bb77451.yml
openapi_spec_hash: 4030ac2965b556670d1b427ffc5c554b
config_hash: e1885b38eded054b77308a024c5d80cc
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.66.0 (2025-09-05)

Full Changelog: [v1.65.0...v1.66.0](https://github.com/Increase/increase-ruby/compare/v1.65.0...v1.66.0)

### Features

* **api:** api update ([a456344](https://github.com/Increase/increase-ruby/commit/a456344ef7dd123a819153711709dec13edc30ef))

## 1.65.0 (2025-09-05)

Full Changelog: [v1.64.0...v1.65.0](https://github.com/Increase/increase-ruby/compare/v1.64.0...v1.65.0)
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ GIT
PATH
remote: .
specs:
increase (1.65.0)
increase (1.66.0)
connection_pool

GEM
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
<!-- x-release-please-start-version -->

```ruby
gem "increase", "~> 1.65.0"
gem "increase", "~> 1.66.0"
```

<!-- x-release-please-end -->
Expand Down
8 changes: 4 additions & 4 deletions lib/increase/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ class Client < Increase::Internal::Transport::BaseClient
# @return [Increase::Resources::AccountNumbers]
attr_reader :account_numbers

# @return [Increase::Resources::AccountTransfers]
attr_reader :account_transfers

# @return [Increase::Resources::Cards]
attr_reader :cards

Expand Down Expand Up @@ -62,9 +65,6 @@ class Client < Increase::Internal::Transport::BaseClient
# @return [Increase::Resources::DeclinedTransactions]
attr_reader :declined_transactions

# @return [Increase::Resources::AccountTransfers]
attr_reader :account_transfers

# @return [Increase::Resources::ACHTransfers]
attr_reader :ach_transfers

Expand Down Expand Up @@ -252,6 +252,7 @@ def initialize(

@accounts = Increase::Resources::Accounts.new(client: self)
@account_numbers = Increase::Resources::AccountNumbers.new(client: self)
@account_transfers = Increase::Resources::AccountTransfers.new(client: self)
@cards = Increase::Resources::Cards.new(client: self)
@card_payments = Increase::Resources::CardPayments.new(client: self)
@card_purchase_supplements = Increase::Resources::CardPurchaseSupplements.new(client: self)
Expand All @@ -263,7 +264,6 @@ def initialize(
@transactions = Increase::Resources::Transactions.new(client: self)
@pending_transactions = Increase::Resources::PendingTransactions.new(client: self)
@declined_transactions = Increase::Resources::DeclinedTransactions.new(client: self)
@account_transfers = Increase::Resources::AccountTransfers.new(client: self)
@ach_transfers = Increase::Resources::ACHTransfers.new(client: self)
@ach_prenotifications = Increase::Resources::ACHPrenotifications.new(client: self)
@inbound_ach_transfers = Increase::Resources::InboundACHTransfers.new(client: self)
Expand Down
8 changes: 4 additions & 4 deletions lib/increase/resources/simulations.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ class Simulations
# @return [Increase::Resources::Simulations::InterestPayments]
attr_reader :interest_payments

# @return [Increase::Resources::Simulations::AccountTransfers]
attr_reader :account_transfers

# @return [Increase::Resources::Simulations::CardAuthorizations]
attr_reader :card_authorizations

Expand Down Expand Up @@ -39,9 +42,6 @@ class Simulations
# @return [Increase::Resources::Simulations::PendingTransactions]
attr_reader :pending_transactions

# @return [Increase::Resources::Simulations::AccountTransfers]
attr_reader :account_transfers

# @return [Increase::Resources::Simulations::ACHTransfers]
attr_reader :ach_transfers

Expand Down Expand Up @@ -96,6 +96,7 @@ class Simulations
def initialize(client:)
@client = client
@interest_payments = Increase::Resources::Simulations::InterestPayments.new(client: client)
@account_transfers = Increase::Resources::Simulations::AccountTransfers.new(client: client)
@card_authorizations = Increase::Resources::Simulations::CardAuthorizations.new(client: client)
@card_authorization_expirations =
Increase::Resources::Simulations::CardAuthorizationExpirations.new(client: client)
Expand All @@ -109,7 +110,6 @@ def initialize(client:)
@digital_wallet_token_requests =
Increase::Resources::Simulations::DigitalWalletTokenRequests.new(client: client)
@pending_transactions = Increase::Resources::Simulations::PendingTransactions.new(client: client)
@account_transfers = Increase::Resources::Simulations::AccountTransfers.new(client: client)
@ach_transfers = Increase::Resources::Simulations::ACHTransfers.new(client: client)
@inbound_ach_transfers = Increase::Resources::Simulations::InboundACHTransfers.new(client: client)
@wire_transfers = Increase::Resources::Simulations::WireTransfers.new(client: client)
Expand Down
2 changes: 1 addition & 1 deletion lib/increase/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Increase
VERSION = "1.65.0"
VERSION = "1.66.0"
end
6 changes: 3 additions & 3 deletions rbi/increase/client.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ module Increase
sig { returns(Increase::Resources::AccountNumbers) }
attr_reader :account_numbers

sig { returns(Increase::Resources::AccountTransfers) }
attr_reader :account_transfers

sig { returns(Increase::Resources::Cards) }
attr_reader :cards

Expand Down Expand Up @@ -61,9 +64,6 @@ module Increase
sig { returns(Increase::Resources::DeclinedTransactions) }
attr_reader :declined_transactions

sig { returns(Increase::Resources::AccountTransfers) }
attr_reader :account_transfers

sig { returns(Increase::Resources::ACHTransfers) }
attr_reader :ach_transfers

Expand Down
6 changes: 3 additions & 3 deletions rbi/increase/resources/simulations.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ module Increase
sig { returns(Increase::Resources::Simulations::InterestPayments) }
attr_reader :interest_payments

sig { returns(Increase::Resources::Simulations::AccountTransfers) }
attr_reader :account_transfers

sig { returns(Increase::Resources::Simulations::CardAuthorizations) }
attr_reader :card_authorizations

Expand Down Expand Up @@ -43,9 +46,6 @@ module Increase
sig { returns(Increase::Resources::Simulations::PendingTransactions) }
attr_reader :pending_transactions

sig { returns(Increase::Resources::Simulations::AccountTransfers) }
attr_reader :account_transfers

sig { returns(Increase::Resources::Simulations::ACHTransfers) }
attr_reader :ach_transfers

Expand Down
4 changes: 2 additions & 2 deletions sig/increase/client.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ module Increase

attr_reader account_numbers: Increase::Resources::AccountNumbers

attr_reader account_transfers: Increase::Resources::AccountTransfers

attr_reader cards: Increase::Resources::Cards

attr_reader card_payments: Increase::Resources::CardPayments
Expand All @@ -41,8 +43,6 @@ module Increase

attr_reader declined_transactions: Increase::Resources::DeclinedTransactions

attr_reader account_transfers: Increase::Resources::AccountTransfers

attr_reader ach_transfers: Increase::Resources::ACHTransfers

attr_reader ach_prenotifications: Increase::Resources::ACHPrenotifications
Expand Down
4 changes: 2 additions & 2 deletions sig/increase/resources/simulations.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ module Increase
class Simulations
attr_reader interest_payments: Increase::Resources::Simulations::InterestPayments

attr_reader account_transfers: Increase::Resources::Simulations::AccountTransfers

attr_reader card_authorizations: Increase::Resources::Simulations::CardAuthorizations

attr_reader card_authorization_expirations: Increase::Resources::Simulations::CardAuthorizationExpirations
Expand All @@ -25,8 +27,6 @@ module Increase

attr_reader pending_transactions: Increase::Resources::Simulations::PendingTransactions

attr_reader account_transfers: Increase::Resources::Simulations::AccountTransfers

attr_reader ach_transfers: Increase::Resources::Simulations::ACHTransfers

attr_reader inbound_ach_transfers: Increase::Resources::Simulations::InboundACHTransfers
Expand Down