increase 1.30.0 → 1.31.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/increase/models/transaction.rb +9 -1
- data/lib/increase/models/wire_transfer.rb +9 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/transaction.rbi +8 -0
- data/rbi/increase/models/wire_transfer.rbi +8 -0
- data/sig/increase/models/transaction.rbs +5 -0
- data/sig/increase/models/wire_transfer.rbs +5 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 73c7c3a3af1eaad7995697e81f4e322df18a087bf4320ba7354af1bc26929d96
|
4
|
+
data.tar.gz: fc08064e74dcecdb9feb4ae828c11ee451eb91158c20adb7c43fa3366ac4a7a8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b6c09aeb8e5a0370b6fcd14a0b4cca6fd1b96fddc55a5d430a2c9dd7fab7b7cec7af596f11b063e555ad0f160b1acbe1fbe7eafcce32cde6e7bf37f7fe42f3f
|
7
|
+
data.tar.gz: deed8ba6bf5b44b299f85513fc8863d928912c1641b1e3ca6612870193c640fc97824c9bffc4ef6d007ea98b26d0a5c938a690a16a6ea4056d37c7856c0c37fb
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.31.0 (2025-08-12)
|
4
|
+
|
5
|
+
Full Changelog: [v1.30.0...v1.31.0](https://github.com/Increase/increase-ruby/compare/v1.30.0...v1.31.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([9a6f2f9](https://github.com/Increase/increase-ruby/commit/9a6f2f989e619361be3e6178cf83830501af7722))
|
10
|
+
|
3
11
|
## 1.30.0 (2025-08-11)
|
4
12
|
|
5
13
|
Full Changelog: [v1.29.0...v1.30.0](https://github.com/Increase/increase-ruby/compare/v1.29.0...v1.30.0)
|
data/README.md
CHANGED
@@ -5322,6 +5322,12 @@ module Increase
|
|
5322
5322
|
# @return [String, nil]
|
5323
5323
|
required :originator_routing_number, String, nil?: true
|
5324
5324
|
|
5325
|
+
# @!attribute originator_to_beneficiary_information
|
5326
|
+
# Additional information included in the wire reversal by the reversal originator.
|
5327
|
+
#
|
5328
|
+
# @return [String, nil]
|
5329
|
+
required :originator_to_beneficiary_information, String, nil?: true
|
5330
|
+
|
5325
5331
|
# @!attribute previous_message_input_cycle_date
|
5326
5332
|
# The Fedwire cycle date for the wire transfer that is being reversed by this
|
5327
5333
|
# message.
|
@@ -5372,7 +5378,7 @@ module Increase
|
|
5372
5378
|
# @return [String]
|
5373
5379
|
required :wire_transfer_id, String
|
5374
5380
|
|
5375
|
-
# @!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:)
|
5381
|
+
# @!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:)
|
5376
5382
|
# Some parameter documentations has been truncated, see
|
5377
5383
|
# {Increase::Models::Transaction::Source::InboundWireReversal} for more details.
|
5378
5384
|
#
|
@@ -5400,6 +5406,8 @@ module Increase
|
|
5400
5406
|
#
|
5401
5407
|
# @param originator_routing_number [String, nil] The American Banking Association (ABA) routing number of the bank originating th
|
5402
5408
|
#
|
5409
|
+
# @param originator_to_beneficiary_information [String, nil] Additional information included in the wire reversal by the reversal originator.
|
5410
|
+
#
|
5403
5411
|
# @param previous_message_input_cycle_date [Date] The Fedwire cycle date for the wire transfer that is being reversed by this mess
|
5404
5412
|
#
|
5405
5413
|
# @param previous_message_input_message_accountability_data [String] The Fedwire transaction identifier for the wire transfer that was reversed.
|
@@ -518,6 +518,12 @@ module Increase
|
|
518
518
|
# @return [String, nil]
|
519
519
|
required :originator_routing_number, String, nil?: true
|
520
520
|
|
521
|
+
# @!attribute originator_to_beneficiary_information
|
522
|
+
# Additional information included in the wire reversal by the reversal originator.
|
523
|
+
#
|
524
|
+
# @return [String, nil]
|
525
|
+
required :originator_to_beneficiary_information, String, nil?: true
|
526
|
+
|
521
527
|
# @!attribute previous_message_input_cycle_date
|
522
528
|
# The Fedwire cycle date for the wire transfer that is being reversed by this
|
523
529
|
# message.
|
@@ -568,7 +574,7 @@ module Increase
|
|
568
574
|
# @return [String]
|
569
575
|
required :wire_transfer_id, String
|
570
576
|
|
571
|
-
# @!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:)
|
577
|
+
# @!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:)
|
572
578
|
# Some parameter documentations has been truncated, see
|
573
579
|
# {Increase::Models::WireTransfer::Reversal} for more details.
|
574
580
|
#
|
@@ -592,6 +598,8 @@ module Increase
|
|
592
598
|
#
|
593
599
|
# @param originator_routing_number [String, nil] The American Banking Association (ABA) routing number of the bank originating th
|
594
600
|
#
|
601
|
+
# @param originator_to_beneficiary_information [String, nil] Additional information included in the wire reversal by the reversal originator.
|
602
|
+
#
|
595
603
|
# @param previous_message_input_cycle_date [Date] The Fedwire cycle date for the wire transfer that is being reversed by this mess
|
596
604
|
#
|
597
605
|
# @param previous_message_input_message_accountability_data [String] The Fedwire transaction identifier for the wire transfer that was reversed.
|
data/lib/increase/version.rb
CHANGED
@@ -9749,6 +9749,10 @@ module Increase
|
|
9749
9749
|
sig { returns(T.nilable(String)) }
|
9750
9750
|
attr_accessor :originator_routing_number
|
9751
9751
|
|
9752
|
+
# Additional information included in the wire reversal by the reversal originator.
|
9753
|
+
sig { returns(T.nilable(String)) }
|
9754
|
+
attr_accessor :originator_to_beneficiary_information
|
9755
|
+
|
9752
9756
|
# The Fedwire cycle date for the wire transfer that is being reversed by this
|
9753
9757
|
# message.
|
9754
9758
|
sig { returns(Date) }
|
@@ -9800,6 +9804,7 @@ module Increase
|
|
9800
9804
|
input_sequence_number: String,
|
9801
9805
|
input_source: String,
|
9802
9806
|
originator_routing_number: T.nilable(String),
|
9807
|
+
originator_to_beneficiary_information: T.nilable(String),
|
9803
9808
|
previous_message_input_cycle_date: Date,
|
9804
9809
|
previous_message_input_message_accountability_data: String,
|
9805
9810
|
previous_message_input_sequence_number: String,
|
@@ -9832,6 +9837,8 @@ module Increase
|
|
9832
9837
|
# The American Banking Association (ABA) routing number of the bank originating
|
9833
9838
|
# the transfer.
|
9834
9839
|
originator_routing_number:,
|
9840
|
+
# Additional information included in the wire reversal by the reversal originator.
|
9841
|
+
originator_to_beneficiary_information:,
|
9835
9842
|
# The Fedwire cycle date for the wire transfer that is being reversed by this
|
9836
9843
|
# message.
|
9837
9844
|
previous_message_input_cycle_date:,
|
@@ -9866,6 +9873,7 @@ module Increase
|
|
9866
9873
|
input_sequence_number: String,
|
9867
9874
|
input_source: String,
|
9868
9875
|
originator_routing_number: T.nilable(String),
|
9876
|
+
originator_to_beneficiary_information: T.nilable(String),
|
9869
9877
|
previous_message_input_cycle_date: Date,
|
9870
9878
|
previous_message_input_message_accountability_data: String,
|
9871
9879
|
previous_message_input_sequence_number: String,
|
@@ -732,6 +732,10 @@ module Increase
|
|
732
732
|
sig { returns(T.nilable(String)) }
|
733
733
|
attr_accessor :originator_routing_number
|
734
734
|
|
735
|
+
# Additional information included in the wire reversal by the reversal originator.
|
736
|
+
sig { returns(T.nilable(String)) }
|
737
|
+
attr_accessor :originator_to_beneficiary_information
|
738
|
+
|
735
739
|
# The Fedwire cycle date for the wire transfer that is being reversed by this
|
736
740
|
# message.
|
737
741
|
sig { returns(Date) }
|
@@ -779,6 +783,7 @@ module Increase
|
|
779
783
|
input_sequence_number: String,
|
780
784
|
input_source: String,
|
781
785
|
originator_routing_number: T.nilable(String),
|
786
|
+
originator_to_beneficiary_information: T.nilable(String),
|
782
787
|
previous_message_input_cycle_date: Date,
|
783
788
|
previous_message_input_message_accountability_data: String,
|
784
789
|
previous_message_input_sequence_number: String,
|
@@ -811,6 +816,8 @@ module Increase
|
|
811
816
|
# The American Banking Association (ABA) routing number of the bank originating
|
812
817
|
# the transfer.
|
813
818
|
originator_routing_number:,
|
819
|
+
# Additional information included in the wire reversal by the reversal originator.
|
820
|
+
originator_to_beneficiary_information:,
|
814
821
|
# The Fedwire cycle date for the wire transfer that is being reversed by this
|
815
822
|
# message.
|
816
823
|
previous_message_input_cycle_date:,
|
@@ -845,6 +852,7 @@ module Increase
|
|
845
852
|
input_sequence_number: String,
|
846
853
|
input_source: String,
|
847
854
|
originator_routing_number: T.nilable(String),
|
855
|
+
originator_to_beneficiary_information: T.nilable(String),
|
848
856
|
previous_message_input_cycle_date: Date,
|
849
857
|
previous_message_input_message_accountability_data: String,
|
850
858
|
previous_message_input_sequence_number: String,
|
@@ -4013,6 +4013,7 @@ module Increase
|
|
4013
4013
|
input_sequence_number: String,
|
4014
4014
|
input_source: String,
|
4015
4015
|
originator_routing_number: String?,
|
4016
|
+
originator_to_beneficiary_information: String?,
|
4016
4017
|
previous_message_input_cycle_date: Date,
|
4017
4018
|
previous_message_input_message_accountability_data: String,
|
4018
4019
|
previous_message_input_sequence_number: String,
|
@@ -4042,6 +4043,8 @@ module Increase
|
|
4042
4043
|
|
4043
4044
|
attr_accessor originator_routing_number: String?
|
4044
4045
|
|
4046
|
+
attr_accessor originator_to_beneficiary_information: String?
|
4047
|
+
|
4045
4048
|
attr_accessor previous_message_input_cycle_date: Date
|
4046
4049
|
|
4047
4050
|
attr_accessor previous_message_input_message_accountability_data: String
|
@@ -4068,6 +4071,7 @@ module Increase
|
|
4068
4071
|
input_sequence_number: String,
|
4069
4072
|
input_source: String,
|
4070
4073
|
originator_routing_number: String?,
|
4074
|
+
originator_to_beneficiary_information: String?,
|
4071
4075
|
previous_message_input_cycle_date: Date,
|
4072
4076
|
previous_message_input_message_accountability_data: String,
|
4073
4077
|
previous_message_input_sequence_number: String,
|
@@ -4088,6 +4092,7 @@ module Increase
|
|
4088
4092
|
input_sequence_number: String,
|
4089
4093
|
input_source: String,
|
4090
4094
|
originator_routing_number: String?,
|
4095
|
+
originator_to_beneficiary_information: String?,
|
4091
4096
|
previous_message_input_cycle_date: Date,
|
4092
4097
|
previous_message_input_message_accountability_data: String,
|
4093
4098
|
previous_message_input_sequence_number: String,
|
@@ -311,6 +311,7 @@ module Increase
|
|
311
311
|
input_sequence_number: String,
|
312
312
|
input_source: String,
|
313
313
|
originator_routing_number: String?,
|
314
|
+
originator_to_beneficiary_information: String?,
|
314
315
|
previous_message_input_cycle_date: Date,
|
315
316
|
previous_message_input_message_accountability_data: String,
|
316
317
|
previous_message_input_sequence_number: String,
|
@@ -340,6 +341,8 @@ module Increase
|
|
340
341
|
|
341
342
|
attr_accessor originator_routing_number: String?
|
342
343
|
|
344
|
+
attr_accessor originator_to_beneficiary_information: String?
|
345
|
+
|
343
346
|
attr_accessor previous_message_input_cycle_date: Date
|
344
347
|
|
345
348
|
attr_accessor previous_message_input_message_accountability_data: String
|
@@ -366,6 +369,7 @@ module Increase
|
|
366
369
|
input_sequence_number: String,
|
367
370
|
input_source: String,
|
368
371
|
originator_routing_number: String?,
|
372
|
+
originator_to_beneficiary_information: String?,
|
369
373
|
previous_message_input_cycle_date: Date,
|
370
374
|
previous_message_input_message_accountability_data: String,
|
371
375
|
previous_message_input_sequence_number: String,
|
@@ -386,6 +390,7 @@ module Increase
|
|
386
390
|
input_sequence_number: String,
|
387
391
|
input_source: String,
|
388
392
|
originator_routing_number: String?,
|
393
|
+
originator_to_beneficiary_information: String?,
|
389
394
|
previous_message_input_cycle_date: Date,
|
390
395
|
previous_message_input_message_accountability_data: String,
|
391
396
|
previous_message_input_sequence_number: String,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: increase
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.31.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Increase
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|