increase 1.29.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 72eef8a42bcf42de257bc514af9b0b69149064c17e6a7fe04b0a547d1243bd65
4
- data.tar.gz: 453e4e366655928b7cac0631f1bd38781de21ba1a094b00a07e3c65a71173e40
3
+ metadata.gz: 73c7c3a3af1eaad7995697e81f4e322df18a087bf4320ba7354af1bc26929d96
4
+ data.tar.gz: fc08064e74dcecdb9feb4ae828c11ee451eb91158c20adb7c43fa3366ac4a7a8
5
5
  SHA512:
6
- metadata.gz: bc7c40d4fa13c233b630026a58b7da093dc8924a92be91aff201a35924fb67b5b35fe856d09f7745d543dd543a25349e597134b413f089f5902ab28845a3152a
7
- data.tar.gz: 7907d088a22a577166f8bb34083d75d57efab0c73c4aafe8466d8dda23957c21ea34702b22c68a181d49e399a504f67848390125a587bdabf9bd5f59eda29c82
6
+ metadata.gz: 4b6c09aeb8e5a0370b6fcd14a0b4cca6fd1b96fddc55a5d430a2c9dd7fab7b7cec7af596f11b063e555ad0f160b1acbe1fbe7eafcce32cde6e7bf37f7fe42f3f
7
+ data.tar.gz: deed8ba6bf5b44b299f85513fc8863d928912c1641b1e3ca6612870193c640fc97824c9bffc4ef6d007ea98b26d0a5c938a690a16a6ea4056d37c7856c0c37fb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
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
+
11
+ ## 1.30.0 (2025-08-11)
12
+
13
+ Full Changelog: [v1.29.0...v1.30.0](https://github.com/Increase/increase-ruby/compare/v1.29.0...v1.30.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([815c58c](https://github.com/Increase/increase-ruby/commit/815c58c15e47ab866a7b7506cad299796ca8761d))
18
+
3
19
  ## 1.29.0 (2025-08-11)
4
20
 
5
21
  Full Changelog: [v1.28.0...v1.29.0](https://github.com/Increase/increase-ruby/compare/v1.28.0...v1.29.0)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.29.0"
18
+ gem "increase", "~> 1.31.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -250,6 +250,12 @@ module Increase
250
250
  # Occurs whenever an IntraFi Exclusion is updated.
251
251
  INTRAFI_EXCLUSION_UPDATED = :"intrafi_exclusion.updated"
252
252
 
253
+ # Occurs whenever a Legacy Card Dispute is created.
254
+ LEGACY_CARD_DISPUTE_CREATED = :"legacy_card_dispute.created"
255
+
256
+ # Occurs whenever a Legacy Card Dispute is updated.
257
+ LEGACY_CARD_DISPUTE_UPDATED = :"legacy_card_dispute.updated"
258
+
253
259
  # Occurs whenever a Lockbox is created.
254
260
  LOCKBOX_CREATED = :"lockbox.created"
255
261
 
@@ -252,6 +252,12 @@ module Increase
252
252
  # Occurs whenever an IntraFi Exclusion is updated.
253
253
  INTRAFI_EXCLUSION_UPDATED = :"intrafi_exclusion.updated"
254
254
 
255
+ # Occurs whenever a Legacy Card Dispute is created.
256
+ LEGACY_CARD_DISPUTE_CREATED = :"legacy_card_dispute.created"
257
+
258
+ # Occurs whenever a Legacy Card Dispute is updated.
259
+ LEGACY_CARD_DISPUTE_UPDATED = :"legacy_card_dispute.updated"
260
+
255
261
  # Occurs whenever a Lockbox is created.
256
262
  LOCKBOX_CREATED = :"lockbox.created"
257
263
 
@@ -273,6 +273,12 @@ module Increase
273
273
  # Occurs whenever an IntraFi Exclusion is updated.
274
274
  INTRAFI_EXCLUSION_UPDATED = :"intrafi_exclusion.updated"
275
275
 
276
+ # Occurs whenever a Legacy Card Dispute is created.
277
+ LEGACY_CARD_DISPUTE_CREATED = :"legacy_card_dispute.created"
278
+
279
+ # Occurs whenever a Legacy Card Dispute is updated.
280
+ LEGACY_CARD_DISPUTE_UPDATED = :"legacy_card_dispute.updated"
281
+
276
282
  # Occurs whenever a Lockbox is created.
277
283
  LOCKBOX_CREATED = :"lockbox.created"
278
284
 
@@ -234,6 +234,12 @@ module Increase
234
234
  # Occurs whenever an IntraFi Exclusion is updated.
235
235
  INTRAFI_EXCLUSION_UPDATED = :"intrafi_exclusion.updated"
236
236
 
237
+ # Occurs whenever a Legacy Card Dispute is created.
238
+ LEGACY_CARD_DISPUTE_CREATED = :"legacy_card_dispute.created"
239
+
240
+ # Occurs whenever a Legacy Card Dispute is updated.
241
+ LEGACY_CARD_DISPUTE_UPDATED = :"legacy_card_dispute.updated"
242
+
237
243
  # Occurs whenever a Lockbox is created.
238
244
  LOCKBOX_CREATED = :"lockbox.created"
239
245
 
@@ -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.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.29.0"
4
+ VERSION = "1.31.0"
5
5
  end
@@ -471,6 +471,20 @@ module Increase
471
471
  Increase::Event::Category::TaggedSymbol
472
472
  )
473
473
 
474
+ # Occurs whenever a Legacy Card Dispute is created.
475
+ LEGACY_CARD_DISPUTE_CREATED =
476
+ T.let(
477
+ :"legacy_card_dispute.created",
478
+ Increase::Event::Category::TaggedSymbol
479
+ )
480
+
481
+ # Occurs whenever a Legacy Card Dispute is updated.
482
+ LEGACY_CARD_DISPUTE_UPDATED =
483
+ T.let(
484
+ :"legacy_card_dispute.updated",
485
+ Increase::Event::Category::TaggedSymbol
486
+ )
487
+
474
488
  # Occurs whenever a Lockbox is created.
475
489
  LOCKBOX_CREATED =
476
490
  T.let(:"lockbox.created", Increase::Event::Category::TaggedSymbol)
@@ -564,6 +564,20 @@ module Increase
564
564
  Increase::EventListParams::Category::In::TaggedSymbol
565
565
  )
566
566
 
567
+ # Occurs whenever a Legacy Card Dispute is created.
568
+ LEGACY_CARD_DISPUTE_CREATED =
569
+ T.let(
570
+ :"legacy_card_dispute.created",
571
+ Increase::EventListParams::Category::In::TaggedSymbol
572
+ )
573
+
574
+ # Occurs whenever a Legacy Card Dispute is updated.
575
+ LEGACY_CARD_DISPUTE_UPDATED =
576
+ T.let(
577
+ :"legacy_card_dispute.updated",
578
+ Increase::EventListParams::Category::In::TaggedSymbol
579
+ )
580
+
567
581
  # Occurs whenever a Lockbox is created.
568
582
  LOCKBOX_CREATED =
569
583
  T.let(
@@ -548,6 +548,20 @@ module Increase
548
548
  Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
549
549
  )
550
550
 
551
+ # Occurs whenever a Legacy Card Dispute is created.
552
+ LEGACY_CARD_DISPUTE_CREATED =
553
+ T.let(
554
+ :"legacy_card_dispute.created",
555
+ Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
556
+ )
557
+
558
+ # Occurs whenever a Legacy Card Dispute is updated.
559
+ LEGACY_CARD_DISPUTE_UPDATED =
560
+ T.let(
561
+ :"legacy_card_dispute.updated",
562
+ Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
563
+ )
564
+
551
565
  # Occurs whenever a Lockbox is created.
552
566
  LOCKBOX_CREATED =
553
567
  T.let(
@@ -528,6 +528,20 @@ module Increase
528
528
  Increase::EventSubscriptionCreateParams::SelectedEventCategory::TaggedSymbol
529
529
  )
530
530
 
531
+ # Occurs whenever a Legacy Card Dispute is created.
532
+ LEGACY_CARD_DISPUTE_CREATED =
533
+ T.let(
534
+ :"legacy_card_dispute.created",
535
+ Increase::EventSubscriptionCreateParams::SelectedEventCategory::TaggedSymbol
536
+ )
537
+
538
+ # Occurs whenever a Legacy Card Dispute is updated.
539
+ LEGACY_CARD_DISPUTE_UPDATED =
540
+ T.let(
541
+ :"legacy_card_dispute.updated",
542
+ Increase::EventSubscriptionCreateParams::SelectedEventCategory::TaggedSymbol
543
+ )
544
+
531
545
  # Occurs whenever a Lockbox is created.
532
546
  LOCKBOX_CREATED =
533
547
  T.let(
@@ -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,
@@ -102,6 +102,8 @@ module Increase
102
102
  | :"intrafi_account_enrollment.updated"
103
103
  | :"intrafi_exclusion.created"
104
104
  | :"intrafi_exclusion.updated"
105
+ | :"legacy_card_dispute.created"
106
+ | :"legacy_card_dispute.updated"
105
107
  | :"lockbox.created"
106
108
  | :"lockbox.updated"
107
109
  | :"oauth_connection.created"
@@ -324,6 +326,12 @@ module Increase
324
326
  # Occurs whenever an IntraFi Exclusion is updated.
325
327
  INTRAFI_EXCLUSION_UPDATED: :"intrafi_exclusion.updated"
326
328
 
329
+ # Occurs whenever a Legacy Card Dispute is created.
330
+ LEGACY_CARD_DISPUTE_CREATED: :"legacy_card_dispute.created"
331
+
332
+ # Occurs whenever a Legacy Card Dispute is updated.
333
+ LEGACY_CARD_DISPUTE_UPDATED: :"legacy_card_dispute.updated"
334
+
327
335
  # Occurs whenever a Lockbox is created.
328
336
  LOCKBOX_CREATED: :"lockbox.created"
329
337
 
@@ -135,6 +135,8 @@ module Increase
135
135
  | :"intrafi_account_enrollment.updated"
136
136
  | :"intrafi_exclusion.created"
137
137
  | :"intrafi_exclusion.updated"
138
+ | :"legacy_card_dispute.created"
139
+ | :"legacy_card_dispute.updated"
138
140
  | :"lockbox.created"
139
141
  | :"lockbox.updated"
140
142
  | :"oauth_connection.created"
@@ -357,6 +359,12 @@ module Increase
357
359
  # Occurs whenever an IntraFi Exclusion is updated.
358
360
  INTRAFI_EXCLUSION_UPDATED: :"intrafi_exclusion.updated"
359
361
 
362
+ # Occurs whenever a Legacy Card Dispute is created.
363
+ LEGACY_CARD_DISPUTE_CREATED: :"legacy_card_dispute.created"
364
+
365
+ # Occurs whenever a Legacy Card Dispute is updated.
366
+ LEGACY_CARD_DISPUTE_UPDATED: :"legacy_card_dispute.updated"
367
+
360
368
  # Occurs whenever a Lockbox is created.
361
369
  LOCKBOX_CREATED: :"lockbox.created"
362
370
 
@@ -112,6 +112,8 @@ module Increase
112
112
  | :"intrafi_account_enrollment.updated"
113
113
  | :"intrafi_exclusion.created"
114
114
  | :"intrafi_exclusion.updated"
115
+ | :"legacy_card_dispute.created"
116
+ | :"legacy_card_dispute.updated"
115
117
  | :"lockbox.created"
116
118
  | :"lockbox.updated"
117
119
  | :"oauth_connection.created"
@@ -334,6 +336,12 @@ module Increase
334
336
  # Occurs whenever an IntraFi Exclusion is updated.
335
337
  INTRAFI_EXCLUSION_UPDATED: :"intrafi_exclusion.updated"
336
338
 
339
+ # Occurs whenever a Legacy Card Dispute is created.
340
+ LEGACY_CARD_DISPUTE_CREATED: :"legacy_card_dispute.created"
341
+
342
+ # Occurs whenever a Legacy Card Dispute is updated.
343
+ LEGACY_CARD_DISPUTE_UPDATED: :"legacy_card_dispute.updated"
344
+
337
345
  # Occurs whenever a Lockbox is created.
338
346
  LOCKBOX_CREATED: :"lockbox.created"
339
347
 
@@ -106,6 +106,8 @@ module Increase
106
106
  | :"intrafi_account_enrollment.updated"
107
107
  | :"intrafi_exclusion.created"
108
108
  | :"intrafi_exclusion.updated"
109
+ | :"legacy_card_dispute.created"
110
+ | :"legacy_card_dispute.updated"
109
111
  | :"lockbox.created"
110
112
  | :"lockbox.updated"
111
113
  | :"oauth_connection.created"
@@ -328,6 +330,12 @@ module Increase
328
330
  # Occurs whenever an IntraFi Exclusion is updated.
329
331
  INTRAFI_EXCLUSION_UPDATED: :"intrafi_exclusion.updated"
330
332
 
333
+ # Occurs whenever a Legacy Card Dispute is created.
334
+ LEGACY_CARD_DISPUTE_CREATED: :"legacy_card_dispute.created"
335
+
336
+ # Occurs whenever a Legacy Card Dispute is updated.
337
+ LEGACY_CARD_DISPUTE_UPDATED: :"legacy_card_dispute.updated"
338
+
331
339
  # Occurs whenever a Lockbox is created.
332
340
  LOCKBOX_CREATED: :"lockbox.created"
333
341
 
@@ -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.29.0
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 00:00:00.000000000 Z
11
+ date: 2025-08-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool