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.140.0"
".": "1.141.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: 229
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-a0eb4b9ef698e80be2fc9e995d6096b96de35e4985c8586e0773fa55a6b50943.yml
openapi_spec_hash: a36c0bee01bf3af40ebcd7075308f170
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-af1c3f6f39bad6db3878ece15395915f818d9310c5535947520e935e82e8bac3.yml
openapi_spec_hash: 3291dcc6833f09527c442c898c8d11f0
config_hash: ca1425272e17fa23d4466d33492334fa
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.141.0 (2025-11-13)

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

### Features

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

## 1.140.0 (2025-11-12)

Full Changelog: [v1.139.0...v1.140.0](https://github.com/Increase/increase-ruby/compare/v1.139.0...v1.140.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.140.0)
increase (1.141.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.140.0"
gem "increase", "~> 1.141.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 @@ -237,6 +237,9 @@ module Reason
# The recipient was not able to process the check. This usually happens for e.g., low quality images.
NON_CONFORMING_ITEM = :non_conforming_item

# The check has already been deposited elsewhere and so this is a duplicate.
PAID = :paid

# @!method self.values
# @return [Array<Symbol>]
end
Expand Down
3 changes: 3 additions & 0 deletions lib/increase/models/transaction.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6078,6 +6078,9 @@ module Reason
# The recipient was not able to process the check. This usually happens for e.g., low quality images.
NON_CONFORMING_ITEM = :non_conforming_item

# The check has already been deposited elsewhere and so this is a duplicate.
PAID = :paid

# @!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.140.0"
VERSION = "1.141.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 @@ -331,6 +331,13 @@ module Increase
Increase::InboundCheckDeposit::Adjustment::Reason::TaggedSymbol
)

# The check has already been deposited elsewhere and so this is a duplicate.
PAID =
T.let(
:paid,
Increase::InboundCheckDeposit::Adjustment::Reason::TaggedSymbol
)

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

# The check has already been deposited elsewhere and so this is a duplicate.
PAID =
T.let(
:paid,
Increase::Transaction::Source::InboundCheckAdjustment::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 @@ -147,6 +147,7 @@ module Increase
| :wrong_payee_credit
| :adjusted_amount
| :non_conforming_item
| :paid

module Reason
extend Increase::Internal::Type::Enum
Expand All @@ -163,6 +164,9 @@ module Increase
# The recipient was not able to process the check. This usually happens for e.g., low quality images.
NON_CONFORMING_ITEM: :non_conforming_item

# The check has already been deposited elsewhere and so this is a duplicate.
PAID: :paid

def self?.values: -> ::Array[Increase::Models::InboundCheckDeposit::Adjustment::reason]
end
end
Expand Down
4 changes: 4 additions & 0 deletions sig/increase/models/transaction.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -4448,6 +4448,7 @@ module Increase
| :wrong_payee_credit
| :adjusted_amount
| :non_conforming_item
| :paid

module Reason
extend Increase::Internal::Type::Enum
Expand All @@ -4464,6 +4465,9 @@ module Increase
# The recipient was not able to process the check. This usually happens for e.g., low quality images.
NON_CONFORMING_ITEM: :non_conforming_item

# The check has already been deposited elsewhere and so this is a duplicate.
PAID: :paid

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