increase 1.49.0 → 1.50.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 -9
- data/lib/increase/models/wire_transfer.rb +9 -9
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/transaction.rbi +11 -9
- data/rbi/increase/models/wire_transfer.rbi +11 -9
- data/sig/increase/models/transaction.rbs +12 -12
- data/sig/increase/models/wire_transfer.rbs +12 -12
- 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: 2ad2b5f0e02176ac01467fdf196a5d9737bfe65fe8b76ea5ad1c4efc6081a816
|
4
|
+
data.tar.gz: 2d3f2aa92ef7c284a00dbe37edb07b22c90bca78c6774a75adfedfa004e8ee73
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 83be729c4180945f541ec882db128d64adf07c5590248689551ba5f723039edd29c39adefdca0ec0eedb17bba6988d4d5fbba31e479c5ce2751dbc620da4c458
|
7
|
+
data.tar.gz: 97be15cadecddb36205b8f1981f5fa421a8cc72794b562a63e9b8c107ca36b1bafb0f90dd455bd9610f2f646441ea771df9991d1575332ba7e6f9d88beeb15f4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.50.0 (2025-08-26)
|
4
|
+
|
5
|
+
Full Changelog: [v1.49.0...v1.50.0](https://github.com/Increase/increase-ruby/compare/v1.49.0...v1.50.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([88b4f70](https://github.com/Increase/increase-ruby/commit/88b4f7054b67bac26c4d60b4c0d782733259eca3))
|
10
|
+
|
3
11
|
## 1.49.0 (2025-08-25)
|
4
12
|
|
5
13
|
Full Changelog: [v1.48.0...v1.49.0](https://github.com/Increase/increase-ruby/compare/v1.48.0...v1.49.0)
|
data/README.md
CHANGED
@@ -5150,14 +5150,14 @@ module Increase
|
|
5150
5150
|
# The Fedwire cycle date for the wire transfer that is being reversed by this
|
5151
5151
|
# message.
|
5152
5152
|
#
|
5153
|
-
# @return [Date]
|
5154
|
-
required :previous_message_input_cycle_date, Date
|
5153
|
+
# @return [Date, nil]
|
5154
|
+
required :previous_message_input_cycle_date, Date, nil?: true
|
5155
5155
|
|
5156
5156
|
# @!attribute previous_message_input_message_accountability_data
|
5157
5157
|
# The Fedwire transaction identifier for the wire transfer that was reversed.
|
5158
5158
|
#
|
5159
|
-
# @return [String]
|
5160
|
-
required :previous_message_input_message_accountability_data, String
|
5159
|
+
# @return [String, nil]
|
5160
|
+
required :previous_message_input_message_accountability_data, String, nil?: true
|
5161
5161
|
|
5162
5162
|
# @!attribute previous_message_input_sequence_number
|
5163
5163
|
# The Fedwire sequence number for the wire transfer that was reversed.
|
@@ -5168,8 +5168,8 @@ module Increase
|
|
5168
5168
|
# @!attribute previous_message_input_source
|
5169
5169
|
# The Fedwire input source identifier for the wire transfer that was reversed.
|
5170
5170
|
#
|
5171
|
-
# @return [String]
|
5172
|
-
required :previous_message_input_source, String
|
5171
|
+
# @return [String, nil]
|
5172
|
+
required :previous_message_input_source, String, nil?: true
|
5173
5173
|
|
5174
5174
|
# @!attribute receiver_financial_institution_information
|
5175
5175
|
# Information included in the wire reversal for the receiving financial
|
@@ -5226,13 +5226,13 @@ module Increase
|
|
5226
5226
|
#
|
5227
5227
|
# @param originator_to_beneficiary_information [String, nil] Additional information included in the wire reversal by the reversal originator.
|
5228
5228
|
#
|
5229
|
-
# @param previous_message_input_cycle_date [Date] The Fedwire cycle date for the wire transfer that is being reversed by this mess
|
5229
|
+
# @param previous_message_input_cycle_date [Date, nil] The Fedwire cycle date for the wire transfer that is being reversed by this mess
|
5230
5230
|
#
|
5231
|
-
# @param previous_message_input_message_accountability_data [String] The Fedwire transaction identifier for the wire transfer that was reversed.
|
5231
|
+
# @param previous_message_input_message_accountability_data [String, nil] The Fedwire transaction identifier for the wire transfer that was reversed.
|
5232
5232
|
#
|
5233
5233
|
# @param previous_message_input_sequence_number [String] The Fedwire sequence number for the wire transfer that was reversed.
|
5234
5234
|
#
|
5235
|
-
# @param previous_message_input_source [String] The Fedwire input source identifier for the wire transfer that was reversed.
|
5235
|
+
# @param previous_message_input_source [String, nil] The Fedwire input source identifier for the wire transfer that was reversed.
|
5236
5236
|
#
|
5237
5237
|
# @param receiver_financial_institution_information [String, nil] Information included in the wire reversal for the receiving financial institutio
|
5238
5238
|
#
|
@@ -528,14 +528,14 @@ module Increase
|
|
528
528
|
# The Fedwire cycle date for the wire transfer that is being reversed by this
|
529
529
|
# message.
|
530
530
|
#
|
531
|
-
# @return [Date]
|
532
|
-
required :previous_message_input_cycle_date, Date
|
531
|
+
# @return [Date, nil]
|
532
|
+
required :previous_message_input_cycle_date, Date, nil?: true
|
533
533
|
|
534
534
|
# @!attribute previous_message_input_message_accountability_data
|
535
535
|
# The Fedwire transaction identifier for the wire transfer that was reversed.
|
536
536
|
#
|
537
|
-
# @return [String]
|
538
|
-
required :previous_message_input_message_accountability_data, String
|
537
|
+
# @return [String, nil]
|
538
|
+
required :previous_message_input_message_accountability_data, String, nil?: true
|
539
539
|
|
540
540
|
# @!attribute previous_message_input_sequence_number
|
541
541
|
# The Fedwire sequence number for the wire transfer that was reversed.
|
@@ -546,8 +546,8 @@ module Increase
|
|
546
546
|
# @!attribute previous_message_input_source
|
547
547
|
# The Fedwire input source identifier for the wire transfer that was reversed.
|
548
548
|
#
|
549
|
-
# @return [String]
|
550
|
-
required :previous_message_input_source, String
|
549
|
+
# @return [String, nil]
|
550
|
+
required :previous_message_input_source, String, nil?: true
|
551
551
|
|
552
552
|
# @!attribute receiver_financial_institution_information
|
553
553
|
# Information included in the wire reversal for the receiving financial
|
@@ -600,13 +600,13 @@ module Increase
|
|
600
600
|
#
|
601
601
|
# @param originator_to_beneficiary_information [String, nil] Additional information included in the wire reversal by the reversal originator.
|
602
602
|
#
|
603
|
-
# @param previous_message_input_cycle_date [Date] The Fedwire cycle date for the wire transfer that is being reversed by this mess
|
603
|
+
# @param previous_message_input_cycle_date [Date, nil] The Fedwire cycle date for the wire transfer that is being reversed by this mess
|
604
604
|
#
|
605
|
-
# @param previous_message_input_message_accountability_data [String] The Fedwire transaction identifier for the wire transfer that was reversed.
|
605
|
+
# @param previous_message_input_message_accountability_data [String, nil] The Fedwire transaction identifier for the wire transfer that was reversed.
|
606
606
|
#
|
607
607
|
# @param previous_message_input_sequence_number [String] The Fedwire sequence number for the wire transfer that was reversed.
|
608
608
|
#
|
609
|
-
# @param previous_message_input_source [String] The Fedwire input source identifier for the wire transfer that was reversed.
|
609
|
+
# @param previous_message_input_source [String, nil] The Fedwire input source identifier for the wire transfer that was reversed.
|
610
610
|
#
|
611
611
|
# @param receiver_financial_institution_information [String, nil] Information included in the wire reversal for the receiving financial institutio
|
612
612
|
#
|
data/lib/increase/version.rb
CHANGED
@@ -9487,11 +9487,11 @@ module Increase
|
|
9487
9487
|
|
9488
9488
|
# The Fedwire cycle date for the wire transfer that is being reversed by this
|
9489
9489
|
# message.
|
9490
|
-
sig { returns(Date) }
|
9490
|
+
sig { returns(T.nilable(Date)) }
|
9491
9491
|
attr_accessor :previous_message_input_cycle_date
|
9492
9492
|
|
9493
9493
|
# The Fedwire transaction identifier for the wire transfer that was reversed.
|
9494
|
-
sig { returns(String) }
|
9494
|
+
sig { returns(T.nilable(String)) }
|
9495
9495
|
attr_accessor :previous_message_input_message_accountability_data
|
9496
9496
|
|
9497
9497
|
# The Fedwire sequence number for the wire transfer that was reversed.
|
@@ -9499,7 +9499,7 @@ module Increase
|
|
9499
9499
|
attr_accessor :previous_message_input_sequence_number
|
9500
9500
|
|
9501
9501
|
# The Fedwire input source identifier for the wire transfer that was reversed.
|
9502
|
-
sig { returns(String) }
|
9502
|
+
sig { returns(T.nilable(String)) }
|
9503
9503
|
attr_accessor :previous_message_input_source
|
9504
9504
|
|
9505
9505
|
# Information included in the wire reversal for the receiving financial
|
@@ -9537,10 +9537,11 @@ module Increase
|
|
9537
9537
|
input_source: String,
|
9538
9538
|
originator_routing_number: T.nilable(String),
|
9539
9539
|
originator_to_beneficiary_information: T.nilable(String),
|
9540
|
-
previous_message_input_cycle_date: Date,
|
9541
|
-
previous_message_input_message_accountability_data:
|
9540
|
+
previous_message_input_cycle_date: T.nilable(Date),
|
9541
|
+
previous_message_input_message_accountability_data:
|
9542
|
+
T.nilable(String),
|
9542
9543
|
previous_message_input_sequence_number: String,
|
9543
|
-
previous_message_input_source: String,
|
9544
|
+
previous_message_input_source: T.nilable(String),
|
9544
9545
|
receiver_financial_institution_information: T.nilable(String),
|
9545
9546
|
sender_reference: T.nilable(String),
|
9546
9547
|
transaction_id: String,
|
@@ -9606,10 +9607,11 @@ module Increase
|
|
9606
9607
|
input_source: String,
|
9607
9608
|
originator_routing_number: T.nilable(String),
|
9608
9609
|
originator_to_beneficiary_information: T.nilable(String),
|
9609
|
-
previous_message_input_cycle_date: Date,
|
9610
|
-
previous_message_input_message_accountability_data:
|
9610
|
+
previous_message_input_cycle_date: T.nilable(Date),
|
9611
|
+
previous_message_input_message_accountability_data:
|
9612
|
+
T.nilable(String),
|
9611
9613
|
previous_message_input_sequence_number: String,
|
9612
|
-
previous_message_input_source: String,
|
9614
|
+
previous_message_input_source: T.nilable(String),
|
9613
9615
|
receiver_financial_institution_information: T.nilable(String),
|
9614
9616
|
sender_reference: T.nilable(String),
|
9615
9617
|
transaction_id: String,
|
@@ -738,11 +738,11 @@ module Increase
|
|
738
738
|
|
739
739
|
# The Fedwire cycle date for the wire transfer that is being reversed by this
|
740
740
|
# message.
|
741
|
-
sig { returns(Date) }
|
741
|
+
sig { returns(T.nilable(Date)) }
|
742
742
|
attr_accessor :previous_message_input_cycle_date
|
743
743
|
|
744
744
|
# The Fedwire transaction identifier for the wire transfer that was reversed.
|
745
|
-
sig { returns(String) }
|
745
|
+
sig { returns(T.nilable(String)) }
|
746
746
|
attr_accessor :previous_message_input_message_accountability_data
|
747
747
|
|
748
748
|
# The Fedwire sequence number for the wire transfer that was reversed.
|
@@ -750,7 +750,7 @@ module Increase
|
|
750
750
|
attr_accessor :previous_message_input_sequence_number
|
751
751
|
|
752
752
|
# The Fedwire input source identifier for the wire transfer that was reversed.
|
753
|
-
sig { returns(String) }
|
753
|
+
sig { returns(T.nilable(String)) }
|
754
754
|
attr_accessor :previous_message_input_source
|
755
755
|
|
756
756
|
# Information included in the wire reversal for the receiving financial
|
@@ -784,10 +784,11 @@ module Increase
|
|
784
784
|
input_source: String,
|
785
785
|
originator_routing_number: T.nilable(String),
|
786
786
|
originator_to_beneficiary_information: T.nilable(String),
|
787
|
-
previous_message_input_cycle_date: Date,
|
788
|
-
previous_message_input_message_accountability_data:
|
787
|
+
previous_message_input_cycle_date: T.nilable(Date),
|
788
|
+
previous_message_input_message_accountability_data:
|
789
|
+
T.nilable(String),
|
789
790
|
previous_message_input_sequence_number: String,
|
790
|
-
previous_message_input_source: String,
|
791
|
+
previous_message_input_source: T.nilable(String),
|
791
792
|
receiver_financial_institution_information: T.nilable(String),
|
792
793
|
sender_reference: T.nilable(String),
|
793
794
|
transaction_id: String,
|
@@ -853,10 +854,11 @@ module Increase
|
|
853
854
|
input_source: String,
|
854
855
|
originator_routing_number: T.nilable(String),
|
855
856
|
originator_to_beneficiary_information: T.nilable(String),
|
856
|
-
previous_message_input_cycle_date: Date,
|
857
|
-
previous_message_input_message_accountability_data:
|
857
|
+
previous_message_input_cycle_date: T.nilable(Date),
|
858
|
+
previous_message_input_message_accountability_data:
|
859
|
+
T.nilable(String),
|
858
860
|
previous_message_input_sequence_number: String,
|
859
|
-
previous_message_input_source: String,
|
861
|
+
previous_message_input_source: T.nilable(String),
|
860
862
|
receiver_financial_institution_information: T.nilable(String),
|
861
863
|
sender_reference: T.nilable(String),
|
862
864
|
transaction_id: String,
|
@@ -3894,10 +3894,10 @@ module Increase
|
|
3894
3894
|
input_source: String,
|
3895
3895
|
originator_routing_number: String?,
|
3896
3896
|
originator_to_beneficiary_information: String?,
|
3897
|
-
previous_message_input_cycle_date: Date
|
3898
|
-
previous_message_input_message_accountability_data: String
|
3897
|
+
previous_message_input_cycle_date: Date?,
|
3898
|
+
previous_message_input_message_accountability_data: String?,
|
3899
3899
|
previous_message_input_sequence_number: String,
|
3900
|
-
previous_message_input_source: String
|
3900
|
+
previous_message_input_source: String?,
|
3901
3901
|
receiver_financial_institution_information: String?,
|
3902
3902
|
sender_reference: String?,
|
3903
3903
|
transaction_id: String,
|
@@ -3925,13 +3925,13 @@ module Increase
|
|
3925
3925
|
|
3926
3926
|
attr_accessor originator_to_beneficiary_information: String?
|
3927
3927
|
|
3928
|
-
attr_accessor previous_message_input_cycle_date: Date
|
3928
|
+
attr_accessor previous_message_input_cycle_date: Date?
|
3929
3929
|
|
3930
|
-
attr_accessor previous_message_input_message_accountability_data: String
|
3930
|
+
attr_accessor previous_message_input_message_accountability_data: String?
|
3931
3931
|
|
3932
3932
|
attr_accessor previous_message_input_sequence_number: String
|
3933
3933
|
|
3934
|
-
attr_accessor previous_message_input_source: String
|
3934
|
+
attr_accessor previous_message_input_source: String?
|
3935
3935
|
|
3936
3936
|
attr_accessor receiver_financial_institution_information: String?
|
3937
3937
|
|
@@ -3952,10 +3952,10 @@ module Increase
|
|
3952
3952
|
input_source: String,
|
3953
3953
|
originator_routing_number: String?,
|
3954
3954
|
originator_to_beneficiary_information: String?,
|
3955
|
-
previous_message_input_cycle_date: Date
|
3956
|
-
previous_message_input_message_accountability_data: String
|
3955
|
+
previous_message_input_cycle_date: Date?,
|
3956
|
+
previous_message_input_message_accountability_data: String?,
|
3957
3957
|
previous_message_input_sequence_number: String,
|
3958
|
-
previous_message_input_source: String
|
3958
|
+
previous_message_input_source: String?,
|
3959
3959
|
receiver_financial_institution_information: String?,
|
3960
3960
|
sender_reference: String?,
|
3961
3961
|
transaction_id: String,
|
@@ -3973,10 +3973,10 @@ module Increase
|
|
3973
3973
|
input_source: String,
|
3974
3974
|
originator_routing_number: String?,
|
3975
3975
|
originator_to_beneficiary_information: String?,
|
3976
|
-
previous_message_input_cycle_date: Date
|
3977
|
-
previous_message_input_message_accountability_data: String
|
3976
|
+
previous_message_input_cycle_date: Date?,
|
3977
|
+
previous_message_input_message_accountability_data: String?,
|
3978
3978
|
previous_message_input_sequence_number: String,
|
3979
|
-
previous_message_input_source: String
|
3979
|
+
previous_message_input_source: String?,
|
3980
3980
|
receiver_financial_institution_information: String?,
|
3981
3981
|
sender_reference: String?,
|
3982
3982
|
transaction_id: String,
|
@@ -312,10 +312,10 @@ module Increase
|
|
312
312
|
input_source: String,
|
313
313
|
originator_routing_number: String?,
|
314
314
|
originator_to_beneficiary_information: String?,
|
315
|
-
previous_message_input_cycle_date: Date
|
316
|
-
previous_message_input_message_accountability_data: String
|
315
|
+
previous_message_input_cycle_date: Date?,
|
316
|
+
previous_message_input_message_accountability_data: String?,
|
317
317
|
previous_message_input_sequence_number: String,
|
318
|
-
previous_message_input_source: String
|
318
|
+
previous_message_input_source: String?,
|
319
319
|
receiver_financial_institution_information: String?,
|
320
320
|
sender_reference: String?,
|
321
321
|
transaction_id: String,
|
@@ -343,13 +343,13 @@ module Increase
|
|
343
343
|
|
344
344
|
attr_accessor originator_to_beneficiary_information: String?
|
345
345
|
|
346
|
-
attr_accessor previous_message_input_cycle_date: Date
|
346
|
+
attr_accessor previous_message_input_cycle_date: Date?
|
347
347
|
|
348
|
-
attr_accessor previous_message_input_message_accountability_data: String
|
348
|
+
attr_accessor previous_message_input_message_accountability_data: String?
|
349
349
|
|
350
350
|
attr_accessor previous_message_input_sequence_number: String
|
351
351
|
|
352
|
-
attr_accessor previous_message_input_source: String
|
352
|
+
attr_accessor previous_message_input_source: String?
|
353
353
|
|
354
354
|
attr_accessor receiver_financial_institution_information: String?
|
355
355
|
|
@@ -370,10 +370,10 @@ module Increase
|
|
370
370
|
input_source: String,
|
371
371
|
originator_routing_number: String?,
|
372
372
|
originator_to_beneficiary_information: String?,
|
373
|
-
previous_message_input_cycle_date: Date
|
374
|
-
previous_message_input_message_accountability_data: String
|
373
|
+
previous_message_input_cycle_date: Date?,
|
374
|
+
previous_message_input_message_accountability_data: String?,
|
375
375
|
previous_message_input_sequence_number: String,
|
376
|
-
previous_message_input_source: String
|
376
|
+
previous_message_input_source: String?,
|
377
377
|
receiver_financial_institution_information: String?,
|
378
378
|
sender_reference: String?,
|
379
379
|
transaction_id: String,
|
@@ -391,10 +391,10 @@ module Increase
|
|
391
391
|
input_source: String,
|
392
392
|
originator_routing_number: String?,
|
393
393
|
originator_to_beneficiary_information: String?,
|
394
|
-
previous_message_input_cycle_date: Date
|
395
|
-
previous_message_input_message_accountability_data: String
|
394
|
+
previous_message_input_cycle_date: Date?,
|
395
|
+
previous_message_input_message_accountability_data: String?,
|
396
396
|
previous_message_input_sequence_number: String,
|
397
|
-
previous_message_input_source: String
|
397
|
+
previous_message_input_source: String?,
|
398
398
|
receiver_financial_institution_information: String?,
|
399
399
|
sender_reference: String?,
|
400
400
|
transaction_id: 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.50.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-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|