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.136.0"
".": "1.137.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-519aac324dc804424cc26e20603010104b9ada1dd7cf2fc3fe18f12ae8feabdf.yml
openapi_spec_hash: c1d8289e3421c14340d395e621c190eb
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-20e1561a0d8d3d75c643376822d6e039bcc63f27fd1feff20b8b1e6aced1decd.yml
openapi_spec_hash: 225581a20e328afe5ebba8ee801e002b
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.137.0 (2025-11-07)

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

### Features

* **api:** api update ([8330df2](https://github.com/Increase/increase-ruby/commit/8330df29012e8f52ab048144dc1005ae35406dde))

## 1.136.0 (2025-11-07)

Full Changelog: [v1.135.0...v1.136.0](https://github.com/Increase/increase-ruby/compare/v1.135.0...v1.136.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.136.0)
increase (1.137.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.136.0"
gem "increase", "~> 1.137.0"
```

<!-- x-release-please-end -->
Expand Down
7 changes: 5 additions & 2 deletions lib/increase/models/check_transfer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -764,15 +764,18 @@ module Status
# The transfer has been canceled.
CANCELED = :canceled

# The transfer is pending submission.
PENDING_SUBMISSION = :pending_submission
# The transfer is pending review.
PENDING_REVIEWING = :pending_reviewing

# The transfer requires attention from an Increase operator.
REQUIRES_ATTENTION = :requires_attention

# The transfer has been rejected.
REJECTED = :rejected

# The transfer is pending submission.
PENDING_SUBMISSION = :pending_submission

# The check is queued for mailing.
PENDING_MAILING = :pending_mailing

Expand Down
7 changes: 5 additions & 2 deletions lib/increase/models/check_transfer_list_params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -133,15 +133,18 @@ module In
# The transfer has been canceled.
CANCELED = :canceled

# The transfer is pending submission.
PENDING_SUBMISSION = :pending_submission
# The transfer is pending review.
PENDING_REVIEWING = :pending_reviewing

# The transfer requires attention from an Increase operator.
REQUIRES_ATTENTION = :requires_attention

# The transfer has been rejected.
REJECTED = :rejected

# The transfer is pending submission.
PENDING_SUBMISSION = :pending_submission

# The check is queued for mailing.
PENDING_MAILING = :pending_mailing

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.136.0"
VERSION = "1.137.0"
end
13 changes: 10 additions & 3 deletions rbi/increase/models/check_transfer.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -1280,10 +1280,10 @@ module Increase
CANCELED =
T.let(:canceled, Increase::CheckTransfer::Status::TaggedSymbol)

# The transfer is pending submission.
PENDING_SUBMISSION =
# The transfer is pending review.
PENDING_REVIEWING =
T.let(
:pending_submission,
:pending_reviewing,
Increase::CheckTransfer::Status::TaggedSymbol
)

Expand All @@ -1298,6 +1298,13 @@ module Increase
REJECTED =
T.let(:rejected, Increase::CheckTransfer::Status::TaggedSymbol)

# The transfer is pending submission.
PENDING_SUBMISSION =
T.let(
:pending_submission,
Increase::CheckTransfer::Status::TaggedSymbol
)

# The check is queued for mailing.
PENDING_MAILING =
T.let(:pending_mailing, Increase::CheckTransfer::Status::TaggedSymbol)
Expand Down
13 changes: 10 additions & 3 deletions rbi/increase/models/check_transfer_list_params.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -260,10 +260,10 @@ module Increase
Increase::CheckTransferListParams::Status::In::TaggedSymbol
)

# The transfer is pending submission.
PENDING_SUBMISSION =
# The transfer is pending review.
PENDING_REVIEWING =
T.let(
:pending_submission,
:pending_reviewing,
Increase::CheckTransferListParams::Status::In::TaggedSymbol
)

Expand All @@ -281,6 +281,13 @@ module Increase
Increase::CheckTransferListParams::Status::In::TaggedSymbol
)

# The transfer is pending submission.
PENDING_SUBMISSION =
T.let(
:pending_submission,
Increase::CheckTransferListParams::Status::In::TaggedSymbol
)

# The check is queued for mailing.
PENDING_MAILING =
T.let(
Expand Down
10 changes: 7 additions & 3 deletions sig/increase/models/check_transfer.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -525,9 +525,10 @@ module Increase
type status =
:pending_approval
| :canceled
| :pending_submission
| :pending_reviewing
| :requires_attention
| :rejected
| :pending_submission
| :pending_mailing
| :mailed
| :deposited
Expand All @@ -543,15 +544,18 @@ module Increase
# The transfer has been canceled.
CANCELED: :canceled

# The transfer is pending submission.
PENDING_SUBMISSION: :pending_submission
# The transfer is pending review.
PENDING_REVIEWING: :pending_reviewing

# The transfer requires attention from an Increase operator.
REQUIRES_ATTENTION: :requires_attention

# The transfer has been rejected.
REJECTED: :rejected

# The transfer is pending submission.
PENDING_SUBMISSION: :pending_submission

# The check is queued for mailing.
PENDING_MAILING: :pending_mailing

Expand Down
10 changes: 7 additions & 3 deletions sig/increase/models/check_transfer_list_params.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,10 @@ module Increase
type in_ =
:pending_approval
| :canceled
| :pending_submission
| :pending_reviewing
| :requires_attention
| :rejected
| :pending_submission
| :pending_mailing
| :mailed
| :deposited
Expand All @@ -137,15 +138,18 @@ module Increase
# The transfer has been canceled.
CANCELED: :canceled

# The transfer is pending submission.
PENDING_SUBMISSION: :pending_submission
# The transfer is pending review.
PENDING_REVIEWING: :pending_reviewing

# The transfer requires attention from an Increase operator.
REQUIRES_ATTENTION: :requires_attention

# The transfer has been rejected.
REJECTED: :rejected

# The transfer is pending submission.
PENDING_SUBMISSION: :pending_submission

# The check is queued for mailing.
PENDING_MAILING: :pending_mailing

Expand Down