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.30.0"
".": "1.31.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: 202
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-37ce9b56dd0adf1b5dce2b5135f6fe1cf22244fab923c8934dd98488f69c3ae3.yml
openapi_spec_hash: a478c8758b24bbf44a6a6a262f5c0a63
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-2ed4af5a2141f4524ffc8306c747f21c77e00fc5d478e08df7cbe53c92764038.yml
openapi_spec_hash: f693361a7fb14090da484e6a02b86021
config_hash: a185e9a72778cc4658ea73fb3a7f1354
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.31.0 (2025-08-12)

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

### Features

* **api:** api update ([9a6f2f9](https://github.com/Increase/increase-ruby/commit/9a6f2f989e619361be3e6178cf83830501af7722))

## 1.30.0 (2025-08-11)

Full Changelog: [v1.29.0...v1.30.0](https://github.com/Increase/increase-ruby/compare/v1.29.0...v1.30.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.30.0)
increase (1.31.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.30.0"
gem "increase", "~> 1.31.0"
```

<!-- x-release-please-end -->
Expand Down
10 changes: 9 additions & 1 deletion lib/increase/models/transaction.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5322,6 +5322,12 @@ class InboundWireReversal < Increase::Internal::Type::BaseModel
# @return [String, nil]
required :originator_routing_number, String, nil?: true

# @!attribute originator_to_beneficiary_information
# Additional information included in the wire reversal by the reversal originator.
#
# @return [String, nil]
required :originator_to_beneficiary_information, String, nil?: true

# @!attribute previous_message_input_cycle_date
# The Fedwire cycle date for the wire transfer that is being reversed by this
# message.
Expand Down Expand Up @@ -5372,7 +5378,7 @@ class InboundWireReversal < Increase::Internal::Type::BaseModel
# @return [String]
required :wire_transfer_id, String

# @!method initialize(amount:, created_at:, description:, financial_institution_to_financial_institution_information:, input_cycle_date:, input_message_accountability_data:, input_sequence_number:, input_source:, originator_routing_number:, previous_message_input_cycle_date:, previous_message_input_message_accountability_data:, previous_message_input_sequence_number:, previous_message_input_source:, receiver_financial_institution_information:, sender_reference:, transaction_id:, wire_transfer_id:)
# @!method initialize(amount:, created_at:, description:, financial_institution_to_financial_institution_information:, input_cycle_date:, input_message_accountability_data:, input_sequence_number:, input_source:, originator_routing_number:, originator_to_beneficiary_information:, previous_message_input_cycle_date:, previous_message_input_message_accountability_data:, previous_message_input_sequence_number:, previous_message_input_source:, receiver_financial_institution_information:, sender_reference:, transaction_id:, wire_transfer_id:)
# Some parameter documentations has been truncated, see
# {Increase::Models::Transaction::Source::InboundWireReversal} for more details.
#
Expand Down Expand Up @@ -5400,6 +5406,8 @@ class InboundWireReversal < Increase::Internal::Type::BaseModel
#
# @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] Additional information included in the wire reversal by the reversal originator.
#
# @param previous_message_input_cycle_date [Date] The Fedwire cycle date for the wire transfer that is being reversed by this mess
#
# @param previous_message_input_message_accountability_data [String] The Fedwire transaction identifier for the wire transfer that was reversed.
Expand Down
10 changes: 9 additions & 1 deletion lib/increase/models/wire_transfer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -518,6 +518,12 @@ class Reversal < Increase::Internal::Type::BaseModel
# @return [String, nil]
required :originator_routing_number, String, nil?: true

# @!attribute originator_to_beneficiary_information
# Additional information included in the wire reversal by the reversal originator.
#
# @return [String, nil]
required :originator_to_beneficiary_information, String, nil?: true

# @!attribute previous_message_input_cycle_date
# The Fedwire cycle date for the wire transfer that is being reversed by this
# message.
Expand Down Expand Up @@ -568,7 +574,7 @@ class Reversal < Increase::Internal::Type::BaseModel
# @return [String]
required :wire_transfer_id, String

# @!method initialize(amount:, created_at:, description:, financial_institution_to_financial_institution_information:, input_cycle_date:, input_message_accountability_data:, input_sequence_number:, input_source:, originator_routing_number:, previous_message_input_cycle_date:, previous_message_input_message_accountability_data:, previous_message_input_sequence_number:, previous_message_input_source:, receiver_financial_institution_information:, sender_reference:, transaction_id:, wire_transfer_id:)
# @!method initialize(amount:, created_at:, description:, financial_institution_to_financial_institution_information:, input_cycle_date:, input_message_accountability_data:, input_sequence_number:, input_source:, originator_routing_number:, originator_to_beneficiary_information:, previous_message_input_cycle_date:, previous_message_input_message_accountability_data:, previous_message_input_sequence_number:, previous_message_input_source:, receiver_financial_institution_information:, sender_reference:, transaction_id:, wire_transfer_id:)
# Some parameter documentations has been truncated, see
# {Increase::Models::WireTransfer::Reversal} for more details.
#
Expand All @@ -592,6 +598,8 @@ class Reversal < Increase::Internal::Type::BaseModel
#
# @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] Additional information included in the wire reversal by the reversal originator.
#
# @param previous_message_input_cycle_date [Date] The Fedwire cycle date for the wire transfer that is being reversed by this mess
#
# @param previous_message_input_message_accountability_data [String] The Fedwire transaction identifier for the wire transfer that was reversed.
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.30.0"
VERSION = "1.31.0"
end
8 changes: 8 additions & 0 deletions rbi/increase/models/transaction.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -9749,6 +9749,10 @@ module Increase
sig { returns(T.nilable(String)) }
attr_accessor :originator_routing_number

# Additional information included in the wire reversal by the reversal originator.
sig { returns(T.nilable(String)) }
attr_accessor :originator_to_beneficiary_information

# The Fedwire cycle date for the wire transfer that is being reversed by this
# message.
sig { returns(Date) }
Expand Down Expand Up @@ -9800,6 +9804,7 @@ module Increase
input_sequence_number: String,
input_source: String,
originator_routing_number: T.nilable(String),
originator_to_beneficiary_information: T.nilable(String),
previous_message_input_cycle_date: Date,
previous_message_input_message_accountability_data: String,
previous_message_input_sequence_number: String,
Expand Down Expand Up @@ -9832,6 +9837,8 @@ module Increase
# The American Banking Association (ABA) routing number of the bank originating
# the transfer.
originator_routing_number:,
# Additional information included in the wire reversal by the reversal originator.
originator_to_beneficiary_information:,
# The Fedwire cycle date for the wire transfer that is being reversed by this
# message.
previous_message_input_cycle_date:,
Expand Down Expand Up @@ -9866,6 +9873,7 @@ module Increase
input_sequence_number: String,
input_source: String,
originator_routing_number: T.nilable(String),
originator_to_beneficiary_information: T.nilable(String),
previous_message_input_cycle_date: Date,
previous_message_input_message_accountability_data: String,
previous_message_input_sequence_number: String,
Expand Down
8 changes: 8 additions & 0 deletions rbi/increase/models/wire_transfer.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -732,6 +732,10 @@ module Increase
sig { returns(T.nilable(String)) }
attr_accessor :originator_routing_number

# Additional information included in the wire reversal by the reversal originator.
sig { returns(T.nilable(String)) }
attr_accessor :originator_to_beneficiary_information

# The Fedwire cycle date for the wire transfer that is being reversed by this
# message.
sig { returns(Date) }
Expand Down Expand Up @@ -779,6 +783,7 @@ module Increase
input_sequence_number: String,
input_source: String,
originator_routing_number: T.nilable(String),
originator_to_beneficiary_information: T.nilable(String),
previous_message_input_cycle_date: Date,
previous_message_input_message_accountability_data: String,
previous_message_input_sequence_number: String,
Expand Down Expand Up @@ -811,6 +816,8 @@ module Increase
# The American Banking Association (ABA) routing number of the bank originating
# the transfer.
originator_routing_number:,
# Additional information included in the wire reversal by the reversal originator.
originator_to_beneficiary_information:,
# The Fedwire cycle date for the wire transfer that is being reversed by this
# message.
previous_message_input_cycle_date:,
Expand Down Expand Up @@ -845,6 +852,7 @@ module Increase
input_sequence_number: String,
input_source: String,
originator_routing_number: T.nilable(String),
originator_to_beneficiary_information: T.nilable(String),
previous_message_input_cycle_date: Date,
previous_message_input_message_accountability_data: String,
previous_message_input_sequence_number: String,
Expand Down
5 changes: 5 additions & 0 deletions sig/increase/models/transaction.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -4013,6 +4013,7 @@ module Increase
input_sequence_number: String,
input_source: String,
originator_routing_number: String?,
originator_to_beneficiary_information: String?,
previous_message_input_cycle_date: Date,
previous_message_input_message_accountability_data: String,
previous_message_input_sequence_number: String,
Expand Down Expand Up @@ -4042,6 +4043,8 @@ module Increase

attr_accessor originator_routing_number: String?

attr_accessor originator_to_beneficiary_information: String?

attr_accessor previous_message_input_cycle_date: Date

attr_accessor previous_message_input_message_accountability_data: String
Expand All @@ -4068,6 +4071,7 @@ module Increase
input_sequence_number: String,
input_source: String,
originator_routing_number: String?,
originator_to_beneficiary_information: String?,
previous_message_input_cycle_date: Date,
previous_message_input_message_accountability_data: String,
previous_message_input_sequence_number: String,
Expand All @@ -4088,6 +4092,7 @@ module Increase
input_sequence_number: String,
input_source: String,
originator_routing_number: String?,
originator_to_beneficiary_information: String?,
previous_message_input_cycle_date: Date,
previous_message_input_message_accountability_data: String,
previous_message_input_sequence_number: String,
Expand Down
5 changes: 5 additions & 0 deletions sig/increase/models/wire_transfer.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,7 @@ module Increase
input_sequence_number: String,
input_source: String,
originator_routing_number: String?,
originator_to_beneficiary_information: String?,
previous_message_input_cycle_date: Date,
previous_message_input_message_accountability_data: String,
previous_message_input_sequence_number: String,
Expand Down Expand Up @@ -340,6 +341,8 @@ module Increase

attr_accessor originator_routing_number: String?

attr_accessor originator_to_beneficiary_information: String?

attr_accessor previous_message_input_cycle_date: Date

attr_accessor previous_message_input_message_accountability_data: String
Expand All @@ -366,6 +369,7 @@ module Increase
input_sequence_number: String,
input_source: String,
originator_routing_number: String?,
originator_to_beneficiary_information: String?,
previous_message_input_cycle_date: Date,
previous_message_input_message_accountability_data: String,
previous_message_input_sequence_number: String,
Expand All @@ -386,6 +390,7 @@ module Increase
input_sequence_number: String,
input_source: String,
originator_routing_number: String?,
originator_to_beneficiary_information: String?,
previous_message_input_cycle_date: Date,
previous_message_input_message_accountability_data: String,
previous_message_input_sequence_number: String,
Expand Down