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.164.1"
".": "1.165.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: 230
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-fcf5debcde4487c85173470c99063002845f6b3fcee79ab92b89f421c30bbe93.yml
openapi_spec_hash: c58e376475a7175b6ae0fd48a9e1d8a1
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-1d2c6658404319b576b7bc1c75242f23493b8ffedefd81b41b36dc5456af766a.yml
openapi_spec_hash: 0d8eeda32c249e6371843545f8f211ff
config_hash: ff2eb5f192b4de36611b37b27961c2d8
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.165.0 (2025-12-16)

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

### Features

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

## 1.164.1 (2025-12-16)

Full Changelog: [v1.164.0...v1.164.1](https://github.com/Increase/increase-ruby/compare/v1.164.0...v1.164.1)
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.164.1)
increase (1.165.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.164.1"
gem "increase", "~> 1.165.0"
```

<!-- x-release-please-end -->
Expand Down
3 changes: 3 additions & 0 deletions lib/increase/models/inbound_wire_transfer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,9 @@ module Reason
# The recipient of the wire transfer requested the funds be returned to the sender.
CREDITOR_REQUEST = :creditor_request

# The account cannot currently receive inbound wires.
TRANSACTION_FORBIDDEN = :transaction_forbidden

# @!method self.values
# @return [Array<Symbol>]
end
Expand Down
3 changes: 3 additions & 0 deletions lib/increase/models/inbound_wire_transfer_reverse_params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ module Reason
# The recipient of the wire transfer requested the funds be returned to the sender.
CREDITOR_REQUEST = :creditor_request

# The account cannot currently receive inbound wires.
TRANSACTION_FORBIDDEN = :transaction_forbidden

# @!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.164.1"
VERSION = "1.165.0"
end
7 changes: 7 additions & 0 deletions rbi/increase/models/inbound_wire_transfer.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,13 @@ module Increase
Increase::InboundWireTransfer::Reversal::Reason::TaggedSymbol
)

# The account cannot currently receive inbound wires.
TRANSACTION_FORBIDDEN =
T.let(
:transaction_forbidden,
Increase::InboundWireTransfer::Reversal::Reason::TaggedSymbol
)

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

# The account cannot currently receive inbound wires.
TRANSACTION_FORBIDDEN =
T.let(
:transaction_forbidden,
Increase::InboundWireTransferReverseParams::Reason::TaggedSymbol
)

sig do
override.returns(
T::Array[
Expand Down
5 changes: 4 additions & 1 deletion sig/increase/models/inbound_wire_transfer.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ module Increase
reversed_at: Time
}

type reason = :duplicate | :creditor_request
type reason = :duplicate | :creditor_request | :transaction_forbidden

module Reason
extend Increase::Internal::Type::Enum
Expand All @@ -163,6 +163,9 @@ module Increase
# The recipient of the wire transfer requested the funds be returned to the sender.
CREDITOR_REQUEST: :creditor_request

# The account cannot currently receive inbound wires.
TRANSACTION_FORBIDDEN: :transaction_forbidden

def self?.values: -> ::Array[Increase::Models::InboundWireTransfer::Reversal::reason]
end
end
Expand Down
5 changes: 4 additions & 1 deletion sig/increase/models/inbound_wire_transfer_reverse_params.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module Increase
request_options: Increase::RequestOptions
}

type reason = :duplicate | :creditor_request
type reason = :duplicate | :creditor_request | :transaction_forbidden

module Reason
extend Increase::Internal::Type::Enum
Expand All @@ -31,6 +31,9 @@ module Increase
# The recipient of the wire transfer requested the funds be returned to the sender.
CREDITOR_REQUEST: :creditor_request

# The account cannot currently receive inbound wires.
TRANSACTION_FORBIDDEN: :transaction_forbidden

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