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.55.0"
".": "1.56.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: 216
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-1c5db818b8692ac57a83f3785c2f0a1d1ea95b9ed35fd4632619947448c22526.yml
openapi_spec_hash: 0b2954fbe726a422219f22f5cddda6d6
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-6db60f3531381822fadaf766a9191d837e5f512c5dee67d09e4a42b4d307b9c6.yml
openapi_spec_hash: 236e86b03890539f5f36e6e458fc01c4
config_hash: 632b628b59d8f0b717153b3d8133f6cb
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.56.0 (2025-08-28)

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

### Features

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

## 1.55.0 (2025-08-27)

Full Changelog: [v1.54.0...v1.55.0](https://github.com/Increase/increase-ruby/compare/v1.54.0...v1.55.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.55.0)
increase (1.56.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.55.0"
gem "increase", "~> 1.56.0"
```

<!-- x-release-please-end -->
Expand Down
3 changes: 3 additions & 0 deletions lib/increase/models/declined_transaction.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1780,6 +1780,9 @@ module Reason
# The check cannot be processed. This is rare: please contact support.
UNABLE_TO_PROCESS = :unable_to_process

# The check image is unusable.
UNUSABLE_IMAGE = :unusable_image

# Your integration declined this check via the API.
USER_INITIATED = :user_initiated

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.55.0"
VERSION = "1.56.0"
end
7 changes: 7 additions & 0 deletions rbi/increase/models/declined_transaction.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -3371,6 +3371,13 @@ module Increase
Increase::DeclinedTransaction::Source::CheckDecline::Reason::TaggedSymbol
)

# The check image is unusable.
UNUSABLE_IMAGE =
T.let(
:unusable_image,
Increase::DeclinedTransaction::Source::CheckDecline::Reason::TaggedSymbol
)

# Your integration declined this check via the API.
USER_INITIATED =
T.let(
Expand Down
4 changes: 4 additions & 0 deletions sig/increase/models/declined_transaction.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -1291,6 +1291,7 @@ module Increase
| :no_account_number_found
| :refer_to_image
| :unable_to_process
| :unusable_image
| :user_initiated

module Reason
Expand Down Expand Up @@ -1344,6 +1345,9 @@ module Increase
# The check cannot be processed. This is rare: please contact support.
UNABLE_TO_PROCESS: :unable_to_process

# The check image is unusable.
UNUSABLE_IMAGE: :unusable_image

# Your integration declined this check via the API.
USER_INITIATED: :user_initiated

Expand Down