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.182.0"
".": "1.183.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: 232
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-1a3093fde00ba57a88035a89fca1627e3343e5c6cba2854ee6ebf8bac9640489.yml
openapi_spec_hash: 547e0e84b0d09880a8305ddac57cc44a
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-742384c2f763b7fb4e6534ac57539f4f1854d9bd126ea173f3caeffdf1642462.yml
openapi_spec_hash: 49897b127960069cd3fe917475ad4b5b
config_hash: 27e44ed36b9c5617b580ead7231a594a
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.183.0 (2026-01-26)

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

### Features

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

## 1.182.0 (2026-01-23)

Full Changelog: [v1.181.0...v1.182.0](https://github.com/Increase/increase-ruby/compare/v1.181.0...v1.182.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.182.0)
increase (1.183.0)
cgi
connection_pool

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.182.0"
gem "increase", "~> 1.183.0"
```

<!-- x-release-please-end -->
Expand Down
3 changes: 3 additions & 0 deletions lib/increase/models/inbound_check_deposit.rb
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,9 @@ module Reason
# The check was not endorsed by the payee.
ENDORSEMENT_IRREGULAR = :endorsement_irregular

# The maker of the check requested its return.
REFER_TO_MAKER = :refer_to_maker

# @!method self.values
# @return [Array<Symbol>]
end
Expand Down
3 changes: 3 additions & 0 deletions lib/increase/models/inbound_check_deposit_return_params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ module Reason
# The check was not endorsed by the payee.
ENDORSEMENT_IRREGULAR = :endorsement_irregular

# The maker of the check requested its return.
REFER_TO_MAKER = :refer_to_maker

# @!method self.values
# @return [Array<Symbol>]
end
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.182.0"
VERSION = "1.183.0"
end
7 changes: 7 additions & 0 deletions rbi/increase/models/inbound_check_deposit.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,13 @@ module Increase
Increase::InboundCheckDeposit::DepositReturn::Reason::TaggedSymbol
)

# The maker of the check requested its return.
REFER_TO_MAKER =
T.let(
:refer_to_maker,
Increase::InboundCheckDeposit::DepositReturn::Reason::TaggedSymbol
)

sig do
override.returns(
T::Array[
Expand Down
7 changes: 7 additions & 0 deletions rbi/increase/models/inbound_check_deposit_return_params.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,13 @@ module Increase
Increase::InboundCheckDepositReturnParams::Reason::TaggedSymbol
)

# The maker of the check requested its return.
REFER_TO_MAKER =
T.let(
:refer_to_maker,
Increase::InboundCheckDepositReturnParams::Reason::TaggedSymbol
)

sig do
override.returns(
T::Array[
Expand Down
4 changes: 4 additions & 0 deletions sig/increase/models/inbound_check_deposit.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ module Increase
| :duplicate_presentment
| :endorsement_missing
| :endorsement_irregular
| :refer_to_maker

module Reason
extend Increase::Internal::Type::Enum
Expand All @@ -233,6 +234,9 @@ module Increase
# The check was not endorsed by the payee.
ENDORSEMENT_IRREGULAR: :endorsement_irregular

# The maker of the check requested its return.
REFER_TO_MAKER: :refer_to_maker

def self?.values: -> ::Array[Increase::Models::InboundCheckDeposit::DepositReturn::reason]
end
end
Expand Down
4 changes: 4 additions & 0 deletions sig/increase/models/inbound_check_deposit_return_params.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ module Increase
| :duplicate_presentment
| :endorsement_missing
| :endorsement_irregular
| :refer_to_maker

module Reason
extend Increase::Internal::Type::Enum
Expand All @@ -45,6 +46,9 @@ module Increase
# The check was not endorsed by the payee.
ENDORSEMENT_IRREGULAR: :endorsement_irregular

# The maker of the check requested its return.
REFER_TO_MAKER: :refer_to_maker

def self?.values: -> ::Array[Increase::Models::InboundCheckDepositReturnParams::reason]
end
end
Expand Down