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.36.0"
".": "1.37.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-b232355836603d9dbb0ca86d4a946b458726531675db3fa1c4feeee10ff41011.yml
openapi_spec_hash: e986bdc1f77192e14e9075a7b1eac0f9
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-db453f5a5c4734d0cc56f9f61a1cbfaceb9b51f47076b75595bdc9fdedd439c7.yml
openapi_spec_hash: 0cd9098d2af2b4cee4f6678d01fb9516
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.37.0 (2025-08-18)

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

### Features

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

## 1.36.0 (2025-08-18)

Full Changelog: [v1.35.0...v1.36.0](https://github.com/Increase/increase-ruby/compare/v1.35.0...v1.36.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.36.0)
increase (1.37.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.36.0"
gem "increase", "~> 1.37.0"
```

<!-- x-release-please-end -->
Expand Down
10 changes: 9 additions & 1 deletion lib/increase/models/wire_drawdown_request.rb
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ class WireDrawdownRequest < Increase::Internal::Type::BaseModel
# @return [Increase::Models::WireDrawdownRequest::DebtorAddress]
required :debtor_address, -> { Increase::WireDrawdownRequest::DebtorAddress }

# @!attribute debtor_external_account_id
# The debtor's external account identifier.
#
# @return [String, nil]
required :debtor_external_account_id, String, nil?: true

# @!attribute debtor_name
# The debtor's name.
#
Expand Down Expand Up @@ -114,7 +120,7 @@ class WireDrawdownRequest < Increase::Internal::Type::BaseModel
# @return [String]
required :unstructured_remittance_information, String

# @!method initialize(id:, account_number_id:, amount:, created_at:, creditor_address:, creditor_name:, currency:, debtor_account_number:, debtor_address:, debtor_name:, debtor_routing_number:, fulfillment_inbound_wire_transfer_id:, idempotency_key:, status:, submission:, type:, unstructured_remittance_information:)
# @!method initialize(id:, account_number_id:, amount:, created_at:, creditor_address:, creditor_name:, currency:, debtor_account_number:, debtor_address:, debtor_external_account_id:, debtor_name:, debtor_routing_number:, fulfillment_inbound_wire_transfer_id:, idempotency_key:, status:, submission:, type:, unstructured_remittance_information:)
# Some parameter documentations has been truncated, see
# {Increase::Models::WireDrawdownRequest} for more details.
#
Expand Down Expand Up @@ -143,6 +149,8 @@ class WireDrawdownRequest < Increase::Internal::Type::BaseModel
#
# @param debtor_address [Increase::Models::WireDrawdownRequest::DebtorAddress] The debtor's address.
#
# @param debtor_external_account_id [String, nil] The debtor's external account identifier.
#
# @param debtor_name [String] The debtor's name.
#
# @param debtor_routing_number [String] The debtor's routing number.
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.36.0"
VERSION = "1.37.0"
end
8 changes: 8 additions & 0 deletions rbi/increase/models/wire_drawdown_request.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ module Increase
end
attr_writer :debtor_address

# The debtor's external account identifier.
sig { returns(T.nilable(String)) }
attr_accessor :debtor_external_account_id

# The debtor's name.
sig { returns(String) }
attr_accessor :debtor_name
Expand Down Expand Up @@ -125,6 +129,7 @@ module Increase
currency: String,
debtor_account_number: String,
debtor_address: Increase::WireDrawdownRequest::DebtorAddress::OrHash,
debtor_external_account_id: T.nilable(String),
debtor_name: String,
debtor_routing_number: String,
fulfillment_inbound_wire_transfer_id: T.nilable(String),
Expand Down Expand Up @@ -158,6 +163,8 @@ module Increase
debtor_account_number:,
# The debtor's address.
debtor_address:,
# The debtor's external account identifier.
debtor_external_account_id:,
# The debtor's name.
debtor_name:,
# The debtor's routing number.
Expand Down Expand Up @@ -194,6 +201,7 @@ module Increase
currency: String,
debtor_account_number: String,
debtor_address: Increase::WireDrawdownRequest::DebtorAddress,
debtor_external_account_id: T.nilable(String),
debtor_name: String,
debtor_routing_number: String,
fulfillment_inbound_wire_transfer_id: T.nilable(String),
Expand Down
5 changes: 5 additions & 0 deletions sig/increase/models/wire_drawdown_request.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ module Increase
currency: String,
debtor_account_number: String,
debtor_address: Increase::WireDrawdownRequest::DebtorAddress,
debtor_external_account_id: String?,
debtor_name: String,
debtor_routing_number: String,
fulfillment_inbound_wire_transfer_id: String?,
Expand Down Expand Up @@ -40,6 +41,8 @@ module Increase

attr_accessor debtor_address: Increase::WireDrawdownRequest::DebtorAddress

attr_accessor debtor_external_account_id: String?

attr_accessor debtor_name: String

attr_accessor debtor_routing_number: String
Expand All @@ -66,6 +69,7 @@ module Increase
currency: String,
debtor_account_number: String,
debtor_address: Increase::WireDrawdownRequest::DebtorAddress,
debtor_external_account_id: String?,
debtor_name: String,
debtor_routing_number: String,
fulfillment_inbound_wire_transfer_id: String?,
Expand All @@ -86,6 +90,7 @@ module Increase
currency: String,
debtor_account_number: String,
debtor_address: Increase::WireDrawdownRequest::DebtorAddress,
debtor_external_account_id: String?,
debtor_name: String,
debtor_routing_number: String,
fulfillment_inbound_wire_transfer_id: String?,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ def test_refuse
currency: String,
debtor_account_number: String,
debtor_address: Increase::WireDrawdownRequest::DebtorAddress,
debtor_external_account_id: String | nil,
debtor_name: String,
debtor_routing_number: String,
fulfillment_inbound_wire_transfer_id: String | nil,
Expand Down
3 changes: 3 additions & 0 deletions test/increase/resources/wire_drawdown_requests_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def test_create_required_params
currency: String,
debtor_account_number: String,
debtor_address: Increase::WireDrawdownRequest::DebtorAddress,
debtor_external_account_id: String | nil,
debtor_name: String,
debtor_routing_number: String,
fulfillment_inbound_wire_transfer_id: String | nil,
Expand Down Expand Up @@ -60,6 +61,7 @@ def test_retrieve
currency: String,
debtor_account_number: String,
debtor_address: Increase::WireDrawdownRequest::DebtorAddress,
debtor_external_account_id: String | nil,
debtor_name: String,
debtor_routing_number: String,
fulfillment_inbound_wire_transfer_id: String | nil,
Expand Down Expand Up @@ -97,6 +99,7 @@ def test_list
currency: String,
debtor_account_number: String,
debtor_address: Increase::WireDrawdownRequest::DebtorAddress,
debtor_external_account_id: String | nil,
debtor_name: String,
debtor_routing_number: String,
fulfillment_inbound_wire_transfer_id: String | nil,
Expand Down