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.38.0"
".": "1.39.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: 214
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-dea7b54f0adc920e4d2bc337bab1133189114389cb1f124b2f9cccedcedf881c.yml
openapi_spec_hash: c1349e34f78bfe5ba28b946fe7bb15dd
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-e37d9eb06122e71071da98a7375420ce776ad9aa05176bed89a232bd6854f26b.yml
openapi_spec_hash: 8ffb1a0fd8523b24113105717c5d85d8
config_hash: b0b366d8c705ea0efe62093bae953e5a
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.39.0 (2025-08-20)

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

### Features

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

## 1.38.0 (2025-08-19)

Full Changelog: [v1.37.1...v1.38.0](https://github.com/Increase/increase-ruby/compare/v1.37.1...v1.38.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.38.0)
increase (1.39.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.38.0"
gem "increase", "~> 1.39.0"
```

<!-- x-release-please-end -->
Expand Down
131 changes: 1 addition & 130 deletions lib/increase/models/inbound_wire_transfer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,36 +28,6 @@ class InboundWireTransfer < Increase::Internal::Type::BaseModel
# @return [Integer]
required :amount, Integer

# @!attribute beneficiary_address_line1
# A free-form address field set by the sender.
#
# @return [String, nil]
required :beneficiary_address_line1, String, nil?: true

# @!attribute beneficiary_address_line2
# A free-form address field set by the sender.
#
# @return [String, nil]
required :beneficiary_address_line2, String, nil?: true

# @!attribute beneficiary_address_line3
# A free-form address field set by the sender.
#
# @return [String, nil]
required :beneficiary_address_line3, String, nil?: true

# @!attribute beneficiary_name
# A name set by the sender.
#
# @return [String, nil]
required :beneficiary_name, String, nil?: true

# @!attribute beneficiary_reference
# A free-form reference string set by the sender, to help identify the transfer.
#
# @return [String, nil]
required :beneficiary_reference, String, nil?: true

# @!attribute created_at
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
# the inbound wire transfer was created.
Expand Down Expand Up @@ -146,80 +116,13 @@ class InboundWireTransfer < Increase::Internal::Type::BaseModel
# @return [String, nil]
required :instruction_identification, String, nil?: true

# @!attribute originator_address_line1
# The address of the wire originator, set by the sending bank.
#
# @return [String, nil]
required :originator_address_line1, String, nil?: true

# @!attribute originator_address_line2
# The address of the wire originator, set by the sending bank.
#
# @return [String, nil]
required :originator_address_line2, String, nil?: true

# @!attribute originator_address_line3
# The address of the wire originator, set by the sending bank.
#
# @return [String, nil]
required :originator_address_line3, String, nil?: true

# @!attribute originator_name
# The originator of the wire, set by the sending bank.
#
# @return [String, nil]
required :originator_name, String, nil?: true

# @!attribute originator_routing_number
# The American Banking Association (ABA) routing number of the bank originating
# the transfer.
#
# @return [String, nil]
required :originator_routing_number, String, nil?: true

# @!attribute originator_to_beneficiary_information
# An Increase-created concatenation of the Originator-to-Beneficiary lines.
#
# @return [String, nil]
required :originator_to_beneficiary_information, String, nil?: true

# @!attribute originator_to_beneficiary_information_line1
# A free-form message set by the wire originator.
#
# @return [String, nil]
required :originator_to_beneficiary_information_line1, String, nil?: true

# @!attribute originator_to_beneficiary_information_line2
# A free-form message set by the wire originator.
#
# @return [String, nil]
required :originator_to_beneficiary_information_line2, String, nil?: true

# @!attribute originator_to_beneficiary_information_line3
# A free-form message set by the wire originator.
#
# @return [String, nil]
required :originator_to_beneficiary_information_line3, String, nil?: true

# @!attribute originator_to_beneficiary_information_line4
# A free-form message set by the wire originator.
#
# @return [String, nil]
required :originator_to_beneficiary_information_line4, String, nil?: true

# @!attribute reversal
# Information about the reversal of the inbound wire transfer if it has been
# reversed.
#
# @return [Increase::Models::InboundWireTransfer::Reversal, nil]
required :reversal, -> { Increase::InboundWireTransfer::Reversal }, nil?: true

# @!attribute sender_reference
# The sending bank's reference number for the wire transfer.
#
# @return [String, nil]
required :sender_reference, String, nil?: true

# @!attribute status
# The status of the transfer.
#
Expand Down Expand Up @@ -253,7 +156,7 @@ class InboundWireTransfer < Increase::Internal::Type::BaseModel
# @return [String, nil]
required :wire_drawdown_request_id, String, nil?: true

# @!method initialize(id:, account_id:, account_number_id:, amount:, beneficiary_address_line1:, beneficiary_address_line2:, beneficiary_address_line3:, beneficiary_name:, beneficiary_reference:, created_at:, creditor_address_line1:, creditor_address_line2:, creditor_address_line3:, creditor_name:, debtor_address_line1:, debtor_address_line2:, debtor_address_line3:, debtor_name:, description:, end_to_end_identification:, input_message_accountability_data:, instructing_agent_routing_number:, instruction_identification:, originator_address_line1:, originator_address_line2:, originator_address_line3:, originator_name:, originator_routing_number:, originator_to_beneficiary_information:, originator_to_beneficiary_information_line1:, originator_to_beneficiary_information_line2:, originator_to_beneficiary_information_line3:, originator_to_beneficiary_information_line4:, reversal:, sender_reference:, status:, type:, unique_end_to_end_transaction_reference:, unstructured_remittance_information:, wire_drawdown_request_id:)
# @!method initialize(id:, account_id:, account_number_id:, amount:, created_at:, creditor_address_line1:, creditor_address_line2:, creditor_address_line3:, creditor_name:, debtor_address_line1:, debtor_address_line2:, debtor_address_line3:, debtor_name:, description:, end_to_end_identification:, input_message_accountability_data:, instructing_agent_routing_number:, instruction_identification:, reversal:, status:, type:, unique_end_to_end_transaction_reference:, unstructured_remittance_information:, wire_drawdown_request_id:)
# Some parameter documentations has been truncated, see
# {Increase::Models::InboundWireTransfer} for more details.
#
Expand All @@ -268,16 +171,6 @@ class InboundWireTransfer < Increase::Internal::Type::BaseModel
#
# @param amount [Integer] The amount in USD cents.
#
# @param beneficiary_address_line1 [String, nil] A free-form address field set by the sender.
#
# @param beneficiary_address_line2 [String, nil] A free-form address field set by the sender.
#
# @param beneficiary_address_line3 [String, nil] A free-form address field set by the sender.
#
# @param beneficiary_name [String, nil] A name set by the sender.
#
# @param beneficiary_reference [String, nil] A free-form reference string set by the sender, to help identify the transfer.
#
# @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which th
#
# @param creditor_address_line1 [String, nil] A free-form address field set by the sender.
Expand Down Expand Up @@ -306,30 +199,8 @@ class InboundWireTransfer < Increase::Internal::Type::BaseModel
#
# @param instruction_identification [String, nil] The sending bank's identifier for the wire transfer.
#
# @param originator_address_line1 [String, nil] The address of the wire originator, set by the sending bank.
#
# @param originator_address_line2 [String, nil] The address of the wire originator, set by the sending bank.
#
# @param originator_address_line3 [String, nil] The address of the wire originator, set by the sending bank.
#
# @param originator_name [String, nil] The originator of the wire, set by the sending bank.
#
# @param originator_routing_number [String, nil] The American Banking Association (ABA) routing number of the bank originating th
#
# @param originator_to_beneficiary_information [String, nil] An Increase-created concatenation of the Originator-to-Beneficiary lines.
#
# @param originator_to_beneficiary_information_line1 [String, nil] A free-form message set by the wire originator.
#
# @param originator_to_beneficiary_information_line2 [String, nil] A free-form message set by the wire originator.
#
# @param originator_to_beneficiary_information_line3 [String, nil] A free-form message set by the wire originator.
#
# @param originator_to_beneficiary_information_line4 [String, nil] A free-form message set by the wire originator.
#
# @param reversal [Increase::Models::InboundWireTransfer::Reversal, nil] Information about the reversal of the inbound wire transfer if it has been rever
#
# @param sender_reference [String, nil] The sending bank's reference number for the wire transfer.
#
# @param status [Symbol, Increase::Models::InboundWireTransfer::Status] The status of the transfer.
#
# @param type [Symbol, Increase::Models::InboundWireTransfer::Type] A constant representing the object's type. For this resource it will always be `
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.38.0"
VERSION = "1.39.0"
end
Loading