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.124.0"
".": "1.125.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 228
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-29da995f8b04baed0eb2b6b038bc14f3165a3e1eae15b7a1136cce323d132bfd.yml
openapi_spec_hash: ff369b84b7477f46c3f3e3edeecaf176
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-3d5a35f67916cc1c9e9e4df38edbf72b926effa0faf60ea5cb7047a4a2d7f3c7.yml
openapi_spec_hash: 33c55e463f9bf747f502bdb38d5e2622
config_hash: eb2035151c7b49c2f12caf55469b8f9a
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.125.0 (2025-10-31)

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

### Features

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

## 1.124.0 (2025-10-30)

Full Changelog: [v1.123.0...v1.124.0](https://github.com/Increase/increase-ruby/compare/v1.123.0...v1.124.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.124.0)
increase (1.125.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.124.0"
gem "increase", "~> 1.125.0"
```

<!-- x-release-please-end -->
Expand Down
2 changes: 1 addition & 1 deletion lib/increase/models/check_transfer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ class Approval < Increase::Internal::Type::BaseModel
module BalanceCheck
extend Increase::Internal::Type::Enum

# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount.
# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount. This is the default behavior if `balance_check` is omitted.
FULL = :full

# No balance check will performed when the check transfer is initiated. A zero-dollar Pending Transaction will be created. The balance will still be checked when the Inbound Check Deposit is created.
Expand Down
12 changes: 6 additions & 6 deletions lib/increase/models/check_transfer_create_params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ class CheckTransferCreateParams < Increase::Internal::Type::BaseModel
required :source_account_number_id, String

# @!attribute balance_check
# How the account's available balance should be checked. Please contact
# [support@increase.com](mailto:support@increase.com) to enable this parameter.
# How the account's available balance should be checked. If omitted, the default
# behavior is `balance_check: full`.
#
# @return [Symbol, Increase::Models::CheckTransferCreateParams::BalanceCheck, nil]
optional :balance_check, enum: -> { Increase::CheckTransferCreateParams::BalanceCheck }
Expand Down Expand Up @@ -81,7 +81,7 @@ class CheckTransferCreateParams < Increase::Internal::Type::BaseModel
#
# @param source_account_number_id [String] The identifier of the Account Number from which to send the transfer and print o
#
# @param balance_check [Symbol, Increase::Models::CheckTransferCreateParams::BalanceCheck] How the account's available balance should be checked. Please contact [support@i
# @param balance_check [Symbol, Increase::Models::CheckTransferCreateParams::BalanceCheck] How the account's available balance should be checked. If omitted, the default b
#
# @param check_number [String] The check number Increase should use for the check. This should not contain lead
#
Expand All @@ -107,12 +107,12 @@ module FulfillmentMethod
# @return [Array<Symbol>]
end

# How the account's available balance should be checked. Please contact
# [support@increase.com](mailto:support@increase.com) to enable this parameter.
# How the account's available balance should be checked. If omitted, the default
# behavior is `balance_check: full`.
module BalanceCheck
extend Increase::Internal::Type::Enum

# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount.
# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount. This is the default behavior if `balance_check` is omitted.
FULL = :full

# No balance check will performed when the check transfer is initiated. A zero-dollar Pending Transaction will be created. The balance will still be checked when the Inbound Check Deposit is created.
Expand Down
2 changes: 1 addition & 1 deletion lib/increase/resources/check_transfers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class CheckTransfers
#
# @param source_account_number_id [String] The identifier of the Account Number from which to send the transfer and print o
#
# @param balance_check [Symbol, Increase::Models::CheckTransferCreateParams::BalanceCheck] How the account's available balance should be checked. Please contact [support@i
# @param balance_check [Symbol, Increase::Models::CheckTransferCreateParams::BalanceCheck] How the account's available balance should be checked. If omitted, the default b
#
# @param check_number [String] The check number Increase should use for the check. This should not contain lead
#
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.124.0"
VERSION = "1.125.0"
end
2 changes: 1 addition & 1 deletion rbi/increase/models/check_transfer.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ module Increase
T.type_alias { T.all(Symbol, Increase::CheckTransfer::BalanceCheck) }
OrSymbol = T.type_alias { T.any(Symbol, String) }

# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount.
# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount. This is the default behavior if `balance_check` is omitted.
FULL = T.let(:full, Increase::CheckTransfer::BalanceCheck::TaggedSymbol)

# No balance check will performed when the check transfer is initiated. A zero-dollar Pending Transaction will be created. The balance will still be checked when the Inbound Check Deposit is created.
Expand Down
14 changes: 7 additions & 7 deletions rbi/increase/models/check_transfer_create_params.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ module Increase
sig { returns(String) }
attr_accessor :source_account_number_id

# How the account's available balance should be checked. Please contact
# [support@increase.com](mailto:support@increase.com) to enable this parameter.
# How the account's available balance should be checked. If omitted, the default
# behavior is `balance_check: full`.
sig do
returns(
T.nilable(Increase::CheckTransferCreateParams::BalanceCheck::OrSymbol)
Expand Down Expand Up @@ -126,8 +126,8 @@ module Increase
# The identifier of the Account Number from which to send the transfer and print
# on the check.
source_account_number_id:,
# How the account's available balance should be checked. Please contact
# [support@increase.com](mailto:support@increase.com) to enable this parameter.
# How the account's available balance should be checked. If omitted, the default
# behavior is `balance_check: full`.
balance_check: nil,
# The check number Increase should use for the check. This should not contain
# leading zeroes and must be unique across the `source_account_number`. If this is
Expand Down Expand Up @@ -206,8 +206,8 @@ module Increase
end
end

# How the account's available balance should be checked. Please contact
# [support@increase.com](mailto:support@increase.com) to enable this parameter.
# How the account's available balance should be checked. If omitted, the default
# behavior is `balance_check: full`.
module BalanceCheck
extend Increase::Internal::Type::Enum

Expand All @@ -217,7 +217,7 @@ module Increase
end
OrSymbol = T.type_alias { T.any(Symbol, String) }

# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount.
# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount. This is the default behavior if `balance_check` is omitted.
FULL =
T.let(
:full,
Expand Down
4 changes: 2 additions & 2 deletions rbi/increase/resources/check_transfers.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ module Increase
# The identifier of the Account Number from which to send the transfer and print
# on the check.
source_account_number_id:,
# How the account's available balance should be checked. Please contact
# [support@increase.com](mailto:support@increase.com) to enable this parameter.
# How the account's available balance should be checked. If omitted, the default
# behavior is `balance_check: full`.
balance_check: nil,
# The check number Increase should use for the check. This should not contain
# leading zeroes and must be unique across the `source_account_number`. If this is
Expand Down
2 changes: 1 addition & 1 deletion sig/increase/models/check_transfer.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ module Increase
module BalanceCheck
extend Increase::Internal::Type::Enum

# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount.
# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount. This is the default behavior if `balance_check` is omitted.
FULL: :full

# No balance check will performed when the check transfer is initiated. A zero-dollar Pending Transaction will be created. The balance will still be checked when the Inbound Check Deposit is created.
Expand Down
2 changes: 1 addition & 1 deletion sig/increase/models/check_transfer_create_params.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ module Increase
module BalanceCheck
extend Increase::Internal::Type::Enum

# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount.
# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount. This is the default behavior if `balance_check` is omitted.
FULL: :full

# No balance check will performed when the check transfer is initiated. A zero-dollar Pending Transaction will be created. The balance will still be checked when the Inbound Check Deposit is created.
Expand Down