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.48.0"
".": "1.49.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-e692ae6a744df0b2e6df643237f2338fb9afc9f55d456afde4fc392bc61ac438.yml
openapi_spec_hash: 121549528ff41d1a1f7ddb76a3c391de
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-658e39148e80216f2f6064ec405b424afb64c63842e8f6c61f14100bb149d069.yml
openapi_spec_hash: 38618257a4272f341695cd522f3e6dce
config_hash: 29e452035e915a07cd64333b10a83077
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.49.0 (2025-08-25)

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

### Features

* **api:** api update ([3d186a4](https://github.com/Increase/increase-ruby/commit/3d186a4d0c5af826417f3cf8c821bd8e46991f00))

## 1.48.0 (2025-08-25)

Full Changelog: [v1.47.0...v1.48.0](https://github.com/Increase/increase-ruby/compare/v1.47.0...v1.48.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.48.0)
increase (1.49.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.48.0"
gem "increase", "~> 1.49.0"
```

<!-- x-release-please-end -->
Expand Down
179 changes: 82 additions & 97 deletions lib/increase/models/inbound_wire_drawdown_request.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,48 +16,48 @@ class InboundWireDrawdownRequest < Increase::Internal::Type::BaseModel
# @return [Integer]
required :amount, Integer

# @!attribute beneficiary_account_number
# The drawdown request's beneficiary's account number.
# @!attribute created_at
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
# the inbound wire drawdown requested was created.
#
# @return [Time]
required :created_at, Time

# @!attribute creditor_account_number
# The creditor's account number.
#
# @return [String]
required :beneficiary_account_number, String
required :creditor_account_number, String

# @!attribute beneficiary_address_line1
# Line 1 of the drawdown request's beneficiary's address.
# @!attribute creditor_address_line1
# A free-form address field set by the sender.
#
# @return [String, nil]
required :beneficiary_address_line1, String, nil?: true
required :creditor_address_line1, String, nil?: true

# @!attribute beneficiary_address_line2
# Line 2 of the drawdown request's beneficiary's address.
# @!attribute creditor_address_line2
# A free-form address field set by the sender.
#
# @return [String, nil]
required :beneficiary_address_line2, String, nil?: true
required :creditor_address_line2, String, nil?: true

# @!attribute beneficiary_address_line3
# Line 3 of the drawdown request's beneficiary's address.
# @!attribute creditor_address_line3
# A free-form address field set by the sender.
#
# @return [String, nil]
required :beneficiary_address_line3, String, nil?: true
required :creditor_address_line3, String, nil?: true

# @!attribute beneficiary_name
# The drawdown request's beneficiary's name.
# @!attribute creditor_name
# A name set by the sender.
#
# @return [String, nil]
required :beneficiary_name, String, nil?: true
required :creditor_name, String, nil?: true

# @!attribute beneficiary_routing_number
# The drawdown request's beneficiary's routing number.
# @!attribute creditor_routing_number
# The creditor's routing number.
#
# @return [String]
required :beneficiary_routing_number, String

# @!attribute created_at
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
# the inbound wire drawdown requested was created.
#
# @return [Time]
required :created_at, Time
required :creditor_routing_number, String

# @!attribute currency
# The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the amount being
Expand All @@ -66,75 +66,50 @@ class InboundWireDrawdownRequest < Increase::Internal::Type::BaseModel
# @return [String]
required :currency, String

# @!attribute message_to_recipient
# A message from the drawdown request's originator.
#
# @return [String, nil]
required :message_to_recipient, String, nil?: true

# @!attribute originator_account_number
# The drawdown request's originator's account number.
#
# @return [String, nil]
required :originator_account_number, String, nil?: true

# @!attribute originator_address_line1
# Line 1 of the drawdown request's originator's address.
# @!attribute debtor_address_line1
# A free-form address field set by the sender.
#
# @return [String, nil]
required :originator_address_line1, String, nil?: true
required :debtor_address_line1, String, nil?: true

# @!attribute originator_address_line2
# Line 2 of the drawdown request's originator's address.
# @!attribute debtor_address_line2
# A free-form address field set by the sender.
#
# @return [String, nil]
required :originator_address_line2, String, nil?: true
required :debtor_address_line2, String, nil?: true

# @!attribute originator_address_line3
# Line 3 of the drawdown request's originator's address.
# @!attribute debtor_address_line3
# A free-form address field set by the sender.
#
# @return [String, nil]
required :originator_address_line3, String, nil?: true
required :debtor_address_line3, String, nil?: true

# @!attribute originator_name
# The drawdown request's originator's name.
# @!attribute debtor_name
# A name set by the sender.
#
# @return [String, nil]
required :originator_name, String, nil?: true
required :debtor_name, String, nil?: true

# @!attribute originator_routing_number
# The drawdown request's originator's routing number.
#
# @return [String]
required :originator_routing_number, String

# @!attribute originator_to_beneficiary_information_line1
# Line 1 of the information conveyed from the originator of the message to the
# beneficiary.
#
# @return [String, nil]
required :originator_to_beneficiary_information_line1, String, nil?: true

# @!attribute originator_to_beneficiary_information_line2
# Line 2 of the information conveyed from the originator of the message to the
# beneficiary.
# @!attribute end_to_end_identification
# A free-form reference string set by the sender, to help identify the drawdown
# request.
#
# @return [String, nil]
required :originator_to_beneficiary_information_line2, String, nil?: true
required :end_to_end_identification, String, nil?: true

# @!attribute originator_to_beneficiary_information_line3
# Line 3 of the information conveyed from the originator of the message to the
# beneficiary.
# @!attribute input_message_accountability_data
# A unique identifier available to the originating and receiving banks, commonly
# abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
# service and is helpful when debugging wires with the originating bank.
#
# @return [String, nil]
required :originator_to_beneficiary_information_line3, String, nil?: true
required :input_message_accountability_data, String, nil?: true

# @!attribute originator_to_beneficiary_information_line4
# Line 4 of the information conveyed from the originator of the message to the
# beneficiary.
# @!attribute instruction_identification
# The sending bank's identifier for the drawdown request.
#
# @return [String, nil]
required :originator_to_beneficiary_information_line4, String, nil?: true
required :instruction_identification, String, nil?: true

# @!attribute recipient_account_number_id
# The Account Number from which the recipient of this request is being requested
Expand All @@ -150,7 +125,21 @@ class InboundWireDrawdownRequest < Increase::Internal::Type::BaseModel
# @return [Symbol, Increase::Models::InboundWireDrawdownRequest::Type]
required :type, enum: -> { Increase::InboundWireDrawdownRequest::Type }

# @!method initialize(id:, amount:, beneficiary_account_number:, beneficiary_address_line1:, beneficiary_address_line2:, beneficiary_address_line3:, beneficiary_name:, beneficiary_routing_number:, created_at:, currency:, message_to_recipient:, originator_account_number:, originator_address_line1:, originator_address_line2:, originator_address_line3:, originator_name:, originator_routing_number:, originator_to_beneficiary_information_line1:, originator_to_beneficiary_information_line2:, originator_to_beneficiary_information_line3:, originator_to_beneficiary_information_line4:, recipient_account_number_id:, type:)
# @!attribute unique_end_to_end_transaction_reference
# The Unique End-to-end Transaction Reference
# ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
# of the drawdown request.
#
# @return [String, nil]
required :unique_end_to_end_transaction_reference, String, nil?: true

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

# @!method initialize(id:, amount:, created_at:, creditor_account_number:, creditor_address_line1:, creditor_address_line2:, creditor_address_line3:, creditor_name:, creditor_routing_number:, currency:, debtor_address_line1:, debtor_address_line2:, debtor_address_line3:, debtor_name:, end_to_end_identification:, input_message_accountability_data:, instruction_identification:, recipient_account_number_id:, type:, unique_end_to_end_transaction_reference:, unstructured_remittance_information:)
# Some parameter documentations has been truncated, see
# {Increase::Models::InboundWireDrawdownRequest} for more details.
#
Expand All @@ -162,47 +151,43 @@ class InboundWireDrawdownRequest < Increase::Internal::Type::BaseModel
#
# @param amount [Integer] The amount being requested in cents.
#
# @param beneficiary_account_number [String] The drawdown request's beneficiary's account number.
# @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which th
#
# @param beneficiary_address_line1 [String, nil] Line 1 of the drawdown request's beneficiary's address.
# @param creditor_account_number [String] The creditor's account number.
#
# @param beneficiary_address_line2 [String, nil] Line 2 of the drawdown request's beneficiary's address.
# @param creditor_address_line1 [String, nil] A free-form address field set by the sender.
#
# @param beneficiary_address_line3 [String, nil] Line 3 of the drawdown request's beneficiary's address.
# @param creditor_address_line2 [String, nil] A free-form address field set by the sender.
#
# @param beneficiary_name [String, nil] The drawdown request's beneficiary's name.
# @param creditor_address_line3 [String, nil] A free-form address field set by the sender.
#
# @param beneficiary_routing_number [String] The drawdown request's beneficiary's routing number.
# @param creditor_name [String, nil] A name set by the sender.
#
# @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which th
# @param creditor_routing_number [String] The creditor's routing number.
#
# @param currency [String] The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the amount being
#
# @param message_to_recipient [String, nil] A message from the drawdown request's originator.
#
# @param originator_account_number [String, nil] The drawdown request's originator's account number.
# @param debtor_address_line1 [String, nil] A free-form address field set by the sender.
#
# @param originator_address_line1 [String, nil] Line 1 of the drawdown request's originator's address.
# @param debtor_address_line2 [String, nil] A free-form address field set by the sender.
#
# @param originator_address_line2 [String, nil] Line 2 of the drawdown request's originator's address.
# @param debtor_address_line3 [String, nil] A free-form address field set by the sender.
#
# @param originator_address_line3 [String, nil] Line 3 of the drawdown request's originator's address.
# @param debtor_name [String, nil] A name set by the sender.
#
# @param originator_name [String, nil] The drawdown request's originator's name.
# @param end_to_end_identification [String, nil] A free-form reference string set by the sender, to help identify the drawdown re
#
# @param originator_routing_number [String] The drawdown request's originator's routing number.
# @param input_message_accountability_data [String, nil] A unique identifier available to the originating and receiving banks, commonly a
#
# @param originator_to_beneficiary_information_line1 [String, nil] Line 1 of the information conveyed from the originator of the message to the ben
#
# @param originator_to_beneficiary_information_line2 [String, nil] Line 2 of the information conveyed from the originator of the message to the ben
#
# @param originator_to_beneficiary_information_line3 [String, nil] Line 3 of the information conveyed from the originator of the message to the ben
#
# @param originator_to_beneficiary_information_line4 [String, nil] Line 4 of the information conveyed from the originator of the message to the ben
# @param instruction_identification [String, nil] The sending bank's identifier for the drawdown request.
#
# @param recipient_account_number_id [String] The Account Number from which the recipient of this request is being requested t
#
# @param type [Symbol, Increase::Models::InboundWireDrawdownRequest::Type] A constant representing the object's type. For this resource it will always be `
#
# @param unique_end_to_end_transaction_reference [String, nil] The Unique End-to-end Transaction Reference ([UETR](https://www.swift.com/paymen
#
# @param unstructured_remittance_information [String, nil] A free-form message set by the sender.

# A constant representing the object's type. For this resource it will always be
# `inbound_wire_drawdown_request`.
Expand Down
Loading