increase 1.78.0 → 1.79.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: 24c16839add9c7242cea41b16af8640f01b8a5954381b3c85fe85bf8f2f5ea3c
4
- data.tar.gz: 9ef32e737872f39e2f4706f3348eaba7a6d4116cbf31446bafb25d549db39868
3
+ metadata.gz: 6c5b92e73ba126ba3fd2e51f0daf32916eab2b8461cfb727d41c44ef527b849c
4
+ data.tar.gz: 259d27d9da40bcbdfc0ef8aa6e82ddbf5570b1c21934ef094897966c9b0651a3
5
5
  SHA512:
6
- metadata.gz: cb2e299e430a1261d9086000928215a808be762917187d289dd86834407d940c8c2a017b34cb56cf0e4edc01e7f78e75aa2e2f01a1300cfb11cbc7533a3c3fb2
7
- data.tar.gz: 900a6fff1143f8c9e17046910787c197386a23c981e5aec5e619c3afce54615b36f66da3d9dc02970ccf9c4858b9af00cfe05cb00883a9f43ea603993301b1ee
6
+ metadata.gz: b00cbed7091b9fa5efc717f5bd45ea74d7e7aecd41faef7fe164e547894202301e5ae86790c36edfabc9a7fccaa72c147f5db42f78d0012f0eebcc5e40937261
7
+ data.tar.gz: 77489da2c3045abf788245c70f5e98d4a6b514c68fb2f93bc4f9a8f42b3d6e0b9ee3ea50826898d1cf6ad0d4327516fe2161b6f8b294af3af3b37c0ee32ea259
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.79.0 (2025-09-17)
4
+
5
+ Full Changelog: [v1.78.0...v1.79.0](https://github.com/Increase/increase-ruby/compare/v1.78.0...v1.79.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([c64de91](https://github.com/Increase/increase-ruby/commit/c64de918f9abb0fbe0eb7dfbaee91f3f773331c7))
10
+
3
11
  ## 1.78.0 (2025-09-16)
4
12
 
5
13
  Full Changelog: [v1.77.0...v1.78.0](https://github.com/Increase/increase-ruby/compare/v1.77.0...v1.78.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.78.0"
18
+ gem "increase", "~> 1.79.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -190,6 +190,16 @@ module Increase
190
190
  -> { Increase::DeclinedTransaction::Source::CheckDepositRejection },
191
191
  nil?: true
192
192
 
193
+ # @!attribute inbound_fednow_transfer_decline
194
+ # An Inbound FedNow Transfer Decline object. This field will be present in the
195
+ # JSON response if and only if `category` is equal to
196
+ # `inbound_fednow_transfer_decline`.
197
+ #
198
+ # @return [Increase::Models::DeclinedTransaction::Source::InboundFednowTransferDecline, nil]
199
+ required :inbound_fednow_transfer_decline,
200
+ -> { Increase::DeclinedTransaction::Source::InboundFednowTransferDecline },
201
+ nil?: true
202
+
193
203
  # @!attribute inbound_real_time_payments_transfer_decline
194
204
  # An Inbound Real-Time Payments Transfer Decline object. This field will be
195
205
  # present in the JSON response if and only if `category` is equal to
@@ -214,7 +224,7 @@ module Increase
214
224
  # @return [Increase::Models::DeclinedTransaction::Source::WireDecline, nil]
215
225
  required :wire_decline, -> { Increase::DeclinedTransaction::Source::WireDecline }, nil?: true
216
226
 
217
- # @!method initialize(ach_decline:, card_decline:, category:, check_decline:, check_deposit_rejection:, inbound_real_time_payments_transfer_decline:, other:, wire_decline:)
227
+ # @!method initialize(ach_decline:, card_decline:, category:, check_decline:, check_deposit_rejection:, inbound_fednow_transfer_decline:, inbound_real_time_payments_transfer_decline:, other:, wire_decline:)
218
228
  # Some parameter documentations has been truncated, see
219
229
  # {Increase::Models::DeclinedTransaction::Source} for more details.
220
230
  #
@@ -234,6 +244,8 @@ module Increase
234
244
  #
235
245
  # @param check_deposit_rejection [Increase::Models::DeclinedTransaction::Source::CheckDepositRejection, nil] A Check Deposit Rejection object. This field will be present in the JSON respons
236
246
  #
247
+ # @param inbound_fednow_transfer_decline [Increase::Models::DeclinedTransaction::Source::InboundFednowTransferDecline, nil] An Inbound FedNow Transfer Decline object. This field will be present in the JSO
248
+ #
237
249
  # @param inbound_real_time_payments_transfer_decline [Increase::Models::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline, nil] An Inbound Real-Time Payments Transfer Decline object. This field will be presen
238
250
  #
239
251
  # @param other [Object, nil] If the category of this Transaction source is equal to `other`, this field will
@@ -1644,6 +1656,9 @@ module Increase
1644
1656
  # Inbound Real-Time Payments Transfer Decline: details will be under the `inbound_real_time_payments_transfer_decline` object.
1645
1657
  INBOUND_REAL_TIME_PAYMENTS_TRANSFER_DECLINE = :inbound_real_time_payments_transfer_decline
1646
1658
 
1659
+ # Inbound FedNow Transfer Decline: details will be under the `inbound_fednow_transfer_decline` object.
1660
+ INBOUND_FEDNOW_TRANSFER_DECLINE = :inbound_fednow_transfer_decline
1661
+
1647
1662
  # Wire Decline: details will be under the `wire_decline` object.
1648
1663
  WIRE_DECLINE = :wire_decline
1649
1664
 
@@ -1925,6 +1940,58 @@ module Increase
1925
1940
  end
1926
1941
  end
1927
1942
 
1943
+ # @see Increase::Models::DeclinedTransaction::Source#inbound_fednow_transfer_decline
1944
+ class InboundFednowTransferDecline < Increase::Internal::Type::BaseModel
1945
+ # @!attribute reason
1946
+ # Why the transfer was declined.
1947
+ #
1948
+ # @return [Symbol, Increase::Models::DeclinedTransaction::Source::InboundFednowTransferDecline::Reason]
1949
+ required :reason, enum: -> { Increase::DeclinedTransaction::Source::InboundFednowTransferDecline::Reason }
1950
+
1951
+ # @!attribute transfer_id
1952
+ # The identifier of the FedNow Transfer that led to this declined transaction.
1953
+ #
1954
+ # @return [String]
1955
+ required :transfer_id, String
1956
+
1957
+ # @!method initialize(reason:, transfer_id:)
1958
+ # An Inbound FedNow Transfer Decline object. This field will be present in the
1959
+ # JSON response if and only if `category` is equal to
1960
+ # `inbound_fednow_transfer_decline`.
1961
+ #
1962
+ # @param reason [Symbol, Increase::Models::DeclinedTransaction::Source::InboundFednowTransferDecline::Reason] Why the transfer was declined.
1963
+ #
1964
+ # @param transfer_id [String] The identifier of the FedNow Transfer that led to this declined transaction.
1965
+
1966
+ # Why the transfer was declined.
1967
+ #
1968
+ # @see Increase::Models::DeclinedTransaction::Source::InboundFednowTransferDecline#reason
1969
+ module Reason
1970
+ extend Increase::Internal::Type::Enum
1971
+
1972
+ # The account number is canceled.
1973
+ ACCOUNT_NUMBER_CANCELED = :account_number_canceled
1974
+
1975
+ # The account number is disabled.
1976
+ ACCOUNT_NUMBER_DISABLED = :account_number_disabled
1977
+
1978
+ # Your account is restricted.
1979
+ ACCOUNT_RESTRICTED = :account_restricted
1980
+
1981
+ # Your account is inactive.
1982
+ GROUP_LOCKED = :group_locked
1983
+
1984
+ # The account's entity is not active.
1985
+ ENTITY_NOT_ACTIVE = :entity_not_active
1986
+
1987
+ # Your account is not enabled to receive FedNow transfers.
1988
+ FEDNOW_NOT_ENABLED = :fednow_not_enabled
1989
+
1990
+ # @!method self.values
1991
+ # @return [Array<Symbol>]
1992
+ end
1993
+ end
1994
+
1928
1995
  # @see Increase::Models::DeclinedTransaction::Source#inbound_real_time_payments_transfer_decline
1929
1996
  class InboundRealTimePaymentsTransferDecline < Increase::Internal::Type::BaseModel
1930
1997
  # @!attribute amount
@@ -93,6 +93,9 @@ module Increase
93
93
  # Inbound Real-Time Payments Transfer Decline: details will be under the `inbound_real_time_payments_transfer_decline` object.
94
94
  INBOUND_REAL_TIME_PAYMENTS_TRANSFER_DECLINE = :inbound_real_time_payments_transfer_decline
95
95
 
96
+ # Inbound FedNow Transfer Decline: details will be under the `inbound_fednow_transfer_decline` object.
97
+ INBOUND_FEDNOW_TRANSFER_DECLINE = :inbound_fednow_transfer_decline
98
+
96
99
  # Wire Decline: details will be under the `wire_decline` object.
97
100
  WIRE_DECLINE = :wire_decline
98
101
 
@@ -223,6 +223,12 @@ module Increase
223
223
  # Occurs whenever an Inbound Check Deposit is updated.
224
224
  INBOUND_CHECK_DEPOSIT_UPDATED = :"inbound_check_deposit.updated"
225
225
 
226
+ # Occurs whenever an Inbound FedNow Transfer is created.
227
+ INBOUND_FEDNOW_TRANSFER_CREATED = :"inbound_fednow_transfer.created"
228
+
229
+ # Occurs whenever an Inbound FedNow Transfer is updated.
230
+ INBOUND_FEDNOW_TRANSFER_UPDATED = :"inbound_fednow_transfer.updated"
231
+
226
232
  # Occurs whenever an Inbound Mail Item is created.
227
233
  INBOUND_MAIL_ITEM_CREATED = :"inbound_mail_item.created"
228
234
 
@@ -225,6 +225,12 @@ module Increase
225
225
  # Occurs whenever an Inbound Check Deposit is updated.
226
226
  INBOUND_CHECK_DEPOSIT_UPDATED = :"inbound_check_deposit.updated"
227
227
 
228
+ # Occurs whenever an Inbound FedNow Transfer is created.
229
+ INBOUND_FEDNOW_TRANSFER_CREATED = :"inbound_fednow_transfer.created"
230
+
231
+ # Occurs whenever an Inbound FedNow Transfer is updated.
232
+ INBOUND_FEDNOW_TRANSFER_UPDATED = :"inbound_fednow_transfer.updated"
233
+
228
234
  # Occurs whenever an Inbound Mail Item is created.
229
235
  INBOUND_MAIL_ITEM_CREATED = :"inbound_mail_item.created"
230
236
 
@@ -246,6 +246,12 @@ module Increase
246
246
  # Occurs whenever an Inbound Check Deposit is updated.
247
247
  INBOUND_CHECK_DEPOSIT_UPDATED = :"inbound_check_deposit.updated"
248
248
 
249
+ # Occurs whenever an Inbound FedNow Transfer is created.
250
+ INBOUND_FEDNOW_TRANSFER_CREATED = :"inbound_fednow_transfer.created"
251
+
252
+ # Occurs whenever an Inbound FedNow Transfer is updated.
253
+ INBOUND_FEDNOW_TRANSFER_UPDATED = :"inbound_fednow_transfer.updated"
254
+
249
255
  # Occurs whenever an Inbound Mail Item is created.
250
256
  INBOUND_MAIL_ITEM_CREATED = :"inbound_mail_item.created"
251
257
 
@@ -207,6 +207,12 @@ module Increase
207
207
  # Occurs whenever an Inbound Check Deposit is updated.
208
208
  INBOUND_CHECK_DEPOSIT_UPDATED = :"inbound_check_deposit.updated"
209
209
 
210
+ # Occurs whenever an Inbound FedNow Transfer is created.
211
+ INBOUND_FEDNOW_TRANSFER_CREATED = :"inbound_fednow_transfer.created"
212
+
213
+ # Occurs whenever an Inbound FedNow Transfer is updated.
214
+ INBOUND_FEDNOW_TRANSFER_UPDATED = :"inbound_fednow_transfer.updated"
215
+
210
216
  # Occurs whenever an Inbound Mail Item is created.
211
217
  INBOUND_MAIL_ITEM_CREATED = :"inbound_mail_item.created"
212
218
 
@@ -401,6 +401,18 @@ module Increase
401
401
  -> { Increase::Transaction::Source::InboundCheckDepositReturnIntention },
402
402
  nil?: true
403
403
 
404
+ # @!attribute inbound_fednow_transfer_confirmation
405
+ # An Inbound FedNow Transfer Confirmation object. This field will be present in
406
+ # the JSON response if and only if `category` is equal to
407
+ # `inbound_fednow_transfer_confirmation`. An Inbound FedNow Transfer Confirmation
408
+ # is created when a FedNow transfer is initiated at another bank and received by
409
+ # Increase.
410
+ #
411
+ # @return [Increase::Models::Transaction::Source::InboundFednowTransferConfirmation, nil]
412
+ required :inbound_fednow_transfer_confirmation,
413
+ -> { Increase::Transaction::Source::InboundFednowTransferConfirmation },
414
+ nil?: true
415
+
404
416
  # @!attribute inbound_real_time_payments_transfer_confirmation
405
417
  # An Inbound Real-Time Payments Transfer Confirmation object. This field will be
406
418
  # present in the JSON response if and only if `category` is equal to
@@ -518,7 +530,7 @@ module Increase
518
530
  },
519
531
  nil?: true
520
532
 
521
- # @!method initialize(account_revenue_payment:, account_transfer_intention:, ach_transfer_intention:, ach_transfer_rejection:, ach_transfer_return:, card_dispute_acceptance:, card_dispute_financial:, card_dispute_loss:, card_push_transfer_acceptance:, card_refund:, card_revenue_payment:, card_settlement:, cashback_payment:, category:, check_deposit_acceptance:, check_deposit_return:, check_transfer_deposit:, fednow_transfer_acknowledgement:, fee_payment:, inbound_ach_transfer:, inbound_ach_transfer_return_intention:, inbound_check_adjustment:, inbound_check_deposit_return_intention:, inbound_real_time_payments_transfer_confirmation:, inbound_wire_reversal:, inbound_wire_transfer:, inbound_wire_transfer_reversal:, interest_payment:, internal_source:, other:, real_time_payments_transfer_acknowledgement:, sample_funds:, swift_transfer_intention:, swift_transfer_return:, wire_transfer_intention:)
533
+ # @!method initialize(account_revenue_payment:, account_transfer_intention:, ach_transfer_intention:, ach_transfer_rejection:, ach_transfer_return:, card_dispute_acceptance:, card_dispute_financial:, card_dispute_loss:, card_push_transfer_acceptance:, card_refund:, card_revenue_payment:, card_settlement:, cashback_payment:, category:, check_deposit_acceptance:, check_deposit_return:, check_transfer_deposit:, fednow_transfer_acknowledgement:, fee_payment:, inbound_ach_transfer:, inbound_ach_transfer_return_intention:, inbound_check_adjustment:, inbound_check_deposit_return_intention:, inbound_fednow_transfer_confirmation:, inbound_real_time_payments_transfer_confirmation:, inbound_wire_reversal:, inbound_wire_transfer:, inbound_wire_transfer_reversal:, interest_payment:, internal_source:, other:, real_time_payments_transfer_acknowledgement:, sample_funds:, swift_transfer_intention:, swift_transfer_return:, wire_transfer_intention:)
522
534
  # Some parameter documentations has been truncated, see
523
535
  # {Increase::Models::Transaction::Source} for more details.
524
536
  #
@@ -573,6 +585,8 @@ module Increase
573
585
  #
574
586
  # @param inbound_check_deposit_return_intention [Increase::Models::Transaction::Source::InboundCheckDepositReturnIntention, nil] An Inbound Check Deposit Return Intention object. This field will be present in
575
587
  #
588
+ # @param inbound_fednow_transfer_confirmation [Increase::Models::Transaction::Source::InboundFednowTransferConfirmation, nil] An Inbound FedNow Transfer Confirmation object. This field will be present in th
589
+ #
576
590
  # @param inbound_real_time_payments_transfer_confirmation [Increase::Models::Transaction::Source::InboundRealTimePaymentsTransferConfirmation, nil] An Inbound Real-Time Payments Transfer Confirmation object. This field will be p
577
591
  #
578
592
  # @param inbound_wire_reversal [Increase::Models::Transaction::Source::InboundWireReversal, nil] An Inbound Wire Reversal object. This field will be present in the JSON response
@@ -4281,6 +4295,9 @@ module Increase
4281
4295
  # Inbound Check Adjustment: details will be under the `inbound_check_adjustment` object.
4282
4296
  INBOUND_CHECK_ADJUSTMENT = :inbound_check_adjustment
4283
4297
 
4298
+ # Inbound FedNow Transfer Confirmation: details will be under the `inbound_fednow_transfer_confirmation` object.
4299
+ INBOUND_FEDNOW_TRANSFER_CONFIRMATION = :inbound_fednow_transfer_confirmation
4300
+
4284
4301
  # Inbound Real-Time Payments Transfer Confirmation: details will be under the `inbound_real_time_payments_transfer_confirmation` object.
4285
4302
  INBOUND_REAL_TIME_PAYMENTS_TRANSFER_CONFIRMATION = :inbound_real_time_payments_transfer_confirmation
4286
4303
 
@@ -5068,6 +5085,24 @@ module Increase
5068
5085
  # @param transfer_id [String, nil] The identifier of the Check Transfer object that was deposited.
5069
5086
  end
5070
5087
 
5088
+ # @see Increase::Models::Transaction::Source#inbound_fednow_transfer_confirmation
5089
+ class InboundFednowTransferConfirmation < Increase::Internal::Type::BaseModel
5090
+ # @!attribute transfer_id
5091
+ # The identifier of the FedNow Transfer that led to this Transaction.
5092
+ #
5093
+ # @return [String]
5094
+ required :transfer_id, String
5095
+
5096
+ # @!method initialize(transfer_id:)
5097
+ # An Inbound FedNow Transfer Confirmation object. This field will be present in
5098
+ # the JSON response if and only if `category` is equal to
5099
+ # `inbound_fednow_transfer_confirmation`. An Inbound FedNow Transfer Confirmation
5100
+ # is created when a FedNow transfer is initiated at another bank and received by
5101
+ # Increase.
5102
+ #
5103
+ # @param transfer_id [String] The identifier of the FedNow Transfer that led to this Transaction.
5104
+ end
5105
+
5071
5106
  # @see Increase::Models::Transaction::Source#inbound_real_time_payments_transfer_confirmation
5072
5107
  class InboundRealTimePaymentsTransferConfirmation < Increase::Internal::Type::BaseModel
5073
5108
  # @!attribute amount
@@ -142,6 +142,9 @@ module Increase
142
142
  # Inbound Check Adjustment: details will be under the `inbound_check_adjustment` object.
143
143
  INBOUND_CHECK_ADJUSTMENT = :inbound_check_adjustment
144
144
 
145
+ # Inbound FedNow Transfer Confirmation: details will be under the `inbound_fednow_transfer_confirmation` object.
146
+ INBOUND_FEDNOW_TRANSFER_CONFIRMATION = :inbound_fednow_transfer_confirmation
147
+
145
148
  # Inbound Real-Time Payments Transfer Confirmation: details will be under the `inbound_real_time_payments_transfer_confirmation` object.
146
149
  INBOUND_REAL_TIME_PAYMENTS_TRANSFER_CONFIRMATION = :inbound_real_time_payments_transfer_confirmation
147
150
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.78.0"
4
+ VERSION = "1.79.0"
5
5
  end
@@ -303,6 +303,28 @@ module Increase
303
303
  end
304
304
  attr_writer :check_deposit_rejection
305
305
 
306
+ # An Inbound FedNow Transfer Decline object. This field will be present in the
307
+ # JSON response if and only if `category` is equal to
308
+ # `inbound_fednow_transfer_decline`.
309
+ sig do
310
+ returns(
311
+ T.nilable(
312
+ Increase::DeclinedTransaction::Source::InboundFednowTransferDecline
313
+ )
314
+ )
315
+ end
316
+ attr_reader :inbound_fednow_transfer_decline
317
+
318
+ sig do
319
+ params(
320
+ inbound_fednow_transfer_decline:
321
+ T.nilable(
322
+ Increase::DeclinedTransaction::Source::InboundFednowTransferDecline::OrHash
323
+ )
324
+ ).void
325
+ end
326
+ attr_writer :inbound_fednow_transfer_decline
327
+
306
328
  # An Inbound Real-Time Payments Transfer Decline object. This field will be
307
329
  # present in the JSON response if and only if `category` is equal to
308
330
  # `inbound_real_time_payments_transfer_decline`.
@@ -371,6 +393,10 @@ module Increase
371
393
  T.nilable(
372
394
  Increase::DeclinedTransaction::Source::CheckDepositRejection::OrHash
373
395
  ),
396
+ inbound_fednow_transfer_decline:
397
+ T.nilable(
398
+ Increase::DeclinedTransaction::Source::InboundFednowTransferDecline::OrHash
399
+ ),
374
400
  inbound_real_time_payments_transfer_decline:
375
401
  T.nilable(
376
402
  Increase::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline::OrHash
@@ -398,6 +424,10 @@ module Increase
398
424
  # A Check Deposit Rejection object. This field will be present in the JSON
399
425
  # response if and only if `category` is equal to `check_deposit_rejection`.
400
426
  check_deposit_rejection:,
427
+ # An Inbound FedNow Transfer Decline object. This field will be present in the
428
+ # JSON response if and only if `category` is equal to
429
+ # `inbound_fednow_transfer_decline`.
430
+ inbound_fednow_transfer_decline:,
401
431
  # An Inbound Real-Time Payments Transfer Decline object. This field will be
402
432
  # present in the JSON response if and only if `category` is equal to
403
433
  # `inbound_real_time_payments_transfer_decline`.
@@ -426,6 +456,10 @@ module Increase
426
456
  T.nilable(
427
457
  Increase::DeclinedTransaction::Source::CheckDepositRejection
428
458
  ),
459
+ inbound_fednow_transfer_decline:
460
+ T.nilable(
461
+ Increase::DeclinedTransaction::Source::InboundFednowTransferDecline
462
+ ),
429
463
  inbound_real_time_payments_transfer_decline:
430
464
  T.nilable(
431
465
  Increase::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline
@@ -3116,6 +3150,13 @@ module Increase
3116
3150
  Increase::DeclinedTransaction::Source::Category::TaggedSymbol
3117
3151
  )
3118
3152
 
3153
+ # Inbound FedNow Transfer Decline: details will be under the `inbound_fednow_transfer_decline` object.
3154
+ INBOUND_FEDNOW_TRANSFER_DECLINE =
3155
+ T.let(
3156
+ :inbound_fednow_transfer_decline,
3157
+ Increase::DeclinedTransaction::Source::Category::TaggedSymbol
3158
+ )
3159
+
3119
3160
  # Wire Decline: details will be under the `wire_decline` object.
3120
3161
  WIRE_DECLINE =
3121
3162
  T.let(
@@ -3660,6 +3701,124 @@ module Increase
3660
3701
  end
3661
3702
  end
3662
3703
 
3704
+ class InboundFednowTransferDecline < Increase::Internal::Type::BaseModel
3705
+ OrHash =
3706
+ T.type_alias do
3707
+ T.any(
3708
+ Increase::DeclinedTransaction::Source::InboundFednowTransferDecline,
3709
+ Increase::Internal::AnyHash
3710
+ )
3711
+ end
3712
+
3713
+ # Why the transfer was declined.
3714
+ sig do
3715
+ returns(
3716
+ Increase::DeclinedTransaction::Source::InboundFednowTransferDecline::Reason::TaggedSymbol
3717
+ )
3718
+ end
3719
+ attr_accessor :reason
3720
+
3721
+ # The identifier of the FedNow Transfer that led to this declined transaction.
3722
+ sig { returns(String) }
3723
+ attr_accessor :transfer_id
3724
+
3725
+ # An Inbound FedNow Transfer Decline object. This field will be present in the
3726
+ # JSON response if and only if `category` is equal to
3727
+ # `inbound_fednow_transfer_decline`.
3728
+ sig do
3729
+ params(
3730
+ reason:
3731
+ Increase::DeclinedTransaction::Source::InboundFednowTransferDecline::Reason::OrSymbol,
3732
+ transfer_id: String
3733
+ ).returns(T.attached_class)
3734
+ end
3735
+ def self.new(
3736
+ # Why the transfer was declined.
3737
+ reason:,
3738
+ # The identifier of the FedNow Transfer that led to this declined transaction.
3739
+ transfer_id:
3740
+ )
3741
+ end
3742
+
3743
+ sig do
3744
+ override.returns(
3745
+ {
3746
+ reason:
3747
+ Increase::DeclinedTransaction::Source::InboundFednowTransferDecline::Reason::TaggedSymbol,
3748
+ transfer_id: String
3749
+ }
3750
+ )
3751
+ end
3752
+ def to_hash
3753
+ end
3754
+
3755
+ # Why the transfer was declined.
3756
+ module Reason
3757
+ extend Increase::Internal::Type::Enum
3758
+
3759
+ TaggedSymbol =
3760
+ T.type_alias do
3761
+ T.all(
3762
+ Symbol,
3763
+ Increase::DeclinedTransaction::Source::InboundFednowTransferDecline::Reason
3764
+ )
3765
+ end
3766
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
3767
+
3768
+ # The account number is canceled.
3769
+ ACCOUNT_NUMBER_CANCELED =
3770
+ T.let(
3771
+ :account_number_canceled,
3772
+ Increase::DeclinedTransaction::Source::InboundFednowTransferDecline::Reason::TaggedSymbol
3773
+ )
3774
+
3775
+ # The account number is disabled.
3776
+ ACCOUNT_NUMBER_DISABLED =
3777
+ T.let(
3778
+ :account_number_disabled,
3779
+ Increase::DeclinedTransaction::Source::InboundFednowTransferDecline::Reason::TaggedSymbol
3780
+ )
3781
+
3782
+ # Your account is restricted.
3783
+ ACCOUNT_RESTRICTED =
3784
+ T.let(
3785
+ :account_restricted,
3786
+ Increase::DeclinedTransaction::Source::InboundFednowTransferDecline::Reason::TaggedSymbol
3787
+ )
3788
+
3789
+ # Your account is inactive.
3790
+ GROUP_LOCKED =
3791
+ T.let(
3792
+ :group_locked,
3793
+ Increase::DeclinedTransaction::Source::InboundFednowTransferDecline::Reason::TaggedSymbol
3794
+ )
3795
+
3796
+ # The account's entity is not active.
3797
+ ENTITY_NOT_ACTIVE =
3798
+ T.let(
3799
+ :entity_not_active,
3800
+ Increase::DeclinedTransaction::Source::InboundFednowTransferDecline::Reason::TaggedSymbol
3801
+ )
3802
+
3803
+ # Your account is not enabled to receive FedNow transfers.
3804
+ FEDNOW_NOT_ENABLED =
3805
+ T.let(
3806
+ :fednow_not_enabled,
3807
+ Increase::DeclinedTransaction::Source::InboundFednowTransferDecline::Reason::TaggedSymbol
3808
+ )
3809
+
3810
+ sig do
3811
+ override.returns(
3812
+ T::Array[
3813
+ Increase::DeclinedTransaction::Source::InboundFednowTransferDecline::Reason::TaggedSymbol
3814
+ ]
3815
+ )
3816
+ end
3817
+ def self.values
3818
+ end
3819
+ end
3820
+ end
3821
+
3663
3822
  class InboundRealTimePaymentsTransferDecline < Increase::Internal::Type::BaseModel
3664
3823
  OrHash =
3665
3824
  T.type_alias do
@@ -211,6 +211,13 @@ module Increase
211
211
  Increase::DeclinedTransactionListParams::Category::In::TaggedSymbol
212
212
  )
213
213
 
214
+ # Inbound FedNow Transfer Decline: details will be under the `inbound_fednow_transfer_decline` object.
215
+ INBOUND_FEDNOW_TRANSFER_DECLINE =
216
+ T.let(
217
+ :inbound_fednow_transfer_decline,
218
+ Increase::DeclinedTransactionListParams::Category::In::TaggedSymbol
219
+ )
220
+
214
221
  # Wire Decline: details will be under the `wire_decline` object.
215
222
  WIRE_DECLINE =
216
223
  T.let(
@@ -408,6 +408,20 @@ module Increase
408
408
  Increase::Event::Category::TaggedSymbol
409
409
  )
410
410
 
411
+ # Occurs whenever an Inbound FedNow Transfer is created.
412
+ INBOUND_FEDNOW_TRANSFER_CREATED =
413
+ T.let(
414
+ :"inbound_fednow_transfer.created",
415
+ Increase::Event::Category::TaggedSymbol
416
+ )
417
+
418
+ # Occurs whenever an Inbound FedNow Transfer is updated.
419
+ INBOUND_FEDNOW_TRANSFER_UPDATED =
420
+ T.let(
421
+ :"inbound_fednow_transfer.updated",
422
+ Increase::Event::Category::TaggedSymbol
423
+ )
424
+
411
425
  # Occurs whenever an Inbound Mail Item is created.
412
426
  INBOUND_MAIL_ITEM_CREATED =
413
427
  T.let(
@@ -501,6 +501,20 @@ module Increase
501
501
  Increase::EventListParams::Category::In::TaggedSymbol
502
502
  )
503
503
 
504
+ # Occurs whenever an Inbound FedNow Transfer is created.
505
+ INBOUND_FEDNOW_TRANSFER_CREATED =
506
+ T.let(
507
+ :"inbound_fednow_transfer.created",
508
+ Increase::EventListParams::Category::In::TaggedSymbol
509
+ )
510
+
511
+ # Occurs whenever an Inbound FedNow Transfer is updated.
512
+ INBOUND_FEDNOW_TRANSFER_UPDATED =
513
+ T.let(
514
+ :"inbound_fednow_transfer.updated",
515
+ Increase::EventListParams::Category::In::TaggedSymbol
516
+ )
517
+
504
518
  # Occurs whenever an Inbound Mail Item is created.
505
519
  INBOUND_MAIL_ITEM_CREATED =
506
520
  T.let(
@@ -485,6 +485,20 @@ module Increase
485
485
  Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
486
486
  )
487
487
 
488
+ # Occurs whenever an Inbound FedNow Transfer is created.
489
+ INBOUND_FEDNOW_TRANSFER_CREATED =
490
+ T.let(
491
+ :"inbound_fednow_transfer.created",
492
+ Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
493
+ )
494
+
495
+ # Occurs whenever an Inbound FedNow Transfer is updated.
496
+ INBOUND_FEDNOW_TRANSFER_UPDATED =
497
+ T.let(
498
+ :"inbound_fednow_transfer.updated",
499
+ Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
500
+ )
501
+
488
502
  # Occurs whenever an Inbound Mail Item is created.
489
503
  INBOUND_MAIL_ITEM_CREATED =
490
504
  T.let(
@@ -465,6 +465,20 @@ module Increase
465
465
  Increase::EventSubscriptionCreateParams::SelectedEventCategory::TaggedSymbol
466
466
  )
467
467
 
468
+ # Occurs whenever an Inbound FedNow Transfer is created.
469
+ INBOUND_FEDNOW_TRANSFER_CREATED =
470
+ T.let(
471
+ :"inbound_fednow_transfer.created",
472
+ Increase::EventSubscriptionCreateParams::SelectedEventCategory::TaggedSymbol
473
+ )
474
+
475
+ # Occurs whenever an Inbound FedNow Transfer is updated.
476
+ INBOUND_FEDNOW_TRANSFER_UPDATED =
477
+ T.let(
478
+ :"inbound_fednow_transfer.updated",
479
+ Increase::EventSubscriptionCreateParams::SelectedEventCategory::TaggedSymbol
480
+ )
481
+
468
482
  # Occurs whenever an Inbound Mail Item is created.
469
483
  INBOUND_MAIL_ITEM_CREATED =
470
484
  T.let(
@@ -650,6 +650,30 @@ module Increase
650
650
  end
651
651
  attr_writer :inbound_check_deposit_return_intention
652
652
 
653
+ # An Inbound FedNow Transfer Confirmation object. This field will be present in
654
+ # the JSON response if and only if `category` is equal to
655
+ # `inbound_fednow_transfer_confirmation`. An Inbound FedNow Transfer Confirmation
656
+ # is created when a FedNow transfer is initiated at another bank and received by
657
+ # Increase.
658
+ sig do
659
+ returns(
660
+ T.nilable(
661
+ Increase::Transaction::Source::InboundFednowTransferConfirmation
662
+ )
663
+ )
664
+ end
665
+ attr_reader :inbound_fednow_transfer_confirmation
666
+
667
+ sig do
668
+ params(
669
+ inbound_fednow_transfer_confirmation:
670
+ T.nilable(
671
+ Increase::Transaction::Source::InboundFednowTransferConfirmation::OrHash
672
+ )
673
+ ).void
674
+ end
675
+ attr_writer :inbound_fednow_transfer_confirmation
676
+
653
677
  # An Inbound Real-Time Payments Transfer Confirmation object. This field will be
654
678
  # present in the JSON response if and only if `category` is equal to
655
679
  # `inbound_real_time_payments_transfer_confirmation`. An Inbound Real-Time
@@ -956,6 +980,10 @@ module Increase
956
980
  T.nilable(
957
981
  Increase::Transaction::Source::InboundCheckDepositReturnIntention::OrHash
958
982
  ),
983
+ inbound_fednow_transfer_confirmation:
984
+ T.nilable(
985
+ Increase::Transaction::Source::InboundFednowTransferConfirmation::OrHash
986
+ ),
959
987
  inbound_real_time_payments_transfer_confirmation:
960
988
  T.nilable(
961
989
  Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation::OrHash
@@ -1115,6 +1143,12 @@ module Increase
1115
1143
  # Intention is created when Increase receives an Inbound Check and the User
1116
1144
  # requests that it be returned.
1117
1145
  inbound_check_deposit_return_intention:,
1146
+ # An Inbound FedNow Transfer Confirmation object. This field will be present in
1147
+ # the JSON response if and only if `category` is equal to
1148
+ # `inbound_fednow_transfer_confirmation`. An Inbound FedNow Transfer Confirmation
1149
+ # is created when a FedNow transfer is initiated at another bank and received by
1150
+ # Increase.
1151
+ inbound_fednow_transfer_confirmation:,
1118
1152
  # An Inbound Real-Time Payments Transfer Confirmation object. This field will be
1119
1153
  # present in the JSON response if and only if `category` is equal to
1120
1154
  # `inbound_real_time_payments_transfer_confirmation`. An Inbound Real-Time
@@ -1235,6 +1269,10 @@ module Increase
1235
1269
  T.nilable(
1236
1270
  Increase::Transaction::Source::InboundCheckDepositReturnIntention
1237
1271
  ),
1272
+ inbound_fednow_transfer_confirmation:
1273
+ T.nilable(
1274
+ Increase::Transaction::Source::InboundFednowTransferConfirmation
1275
+ ),
1238
1276
  inbound_real_time_payments_transfer_confirmation:
1239
1277
  T.nilable(
1240
1278
  Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation
@@ -7975,6 +8013,13 @@ module Increase
7975
8013
  Increase::Transaction::Source::Category::TaggedSymbol
7976
8014
  )
7977
8015
 
8016
+ # Inbound FedNow Transfer Confirmation: details will be under the `inbound_fednow_transfer_confirmation` object.
8017
+ INBOUND_FEDNOW_TRANSFER_CONFIRMATION =
8018
+ T.let(
8019
+ :inbound_fednow_transfer_confirmation,
8020
+ Increase::Transaction::Source::Category::TaggedSymbol
8021
+ )
8022
+
7978
8023
  # Inbound Real-Time Payments Transfer Confirmation: details will be under the `inbound_real_time_payments_transfer_confirmation` object.
7979
8024
  INBOUND_REAL_TIME_PAYMENTS_TRANSFER_CONFIRMATION =
7980
8025
  T.let(
@@ -9463,6 +9508,36 @@ module Increase
9463
9508
  end
9464
9509
  end
9465
9510
 
9511
+ class InboundFednowTransferConfirmation < Increase::Internal::Type::BaseModel
9512
+ OrHash =
9513
+ T.type_alias do
9514
+ T.any(
9515
+ Increase::Transaction::Source::InboundFednowTransferConfirmation,
9516
+ Increase::Internal::AnyHash
9517
+ )
9518
+ end
9519
+
9520
+ # The identifier of the FedNow Transfer that led to this Transaction.
9521
+ sig { returns(String) }
9522
+ attr_accessor :transfer_id
9523
+
9524
+ # An Inbound FedNow Transfer Confirmation object. This field will be present in
9525
+ # the JSON response if and only if `category` is equal to
9526
+ # `inbound_fednow_transfer_confirmation`. An Inbound FedNow Transfer Confirmation
9527
+ # is created when a FedNow transfer is initiated at another bank and received by
9528
+ # Increase.
9529
+ sig { params(transfer_id: String).returns(T.attached_class) }
9530
+ def self.new(
9531
+ # The identifier of the FedNow Transfer that led to this Transaction.
9532
+ transfer_id:
9533
+ )
9534
+ end
9535
+
9536
+ sig { override.returns({ transfer_id: String }) }
9537
+ def to_hash
9538
+ end
9539
+ end
9540
+
9466
9541
  class InboundRealTimePaymentsTransferConfirmation < Increase::Internal::Type::BaseModel
9467
9542
  OrHash =
9468
9543
  T.type_alias do
@@ -306,6 +306,13 @@ module Increase
306
306
  Increase::TransactionListParams::Category::In::TaggedSymbol
307
307
  )
308
308
 
309
+ # Inbound FedNow Transfer Confirmation: details will be under the `inbound_fednow_transfer_confirmation` object.
310
+ INBOUND_FEDNOW_TRANSFER_CONFIRMATION =
311
+ T.let(
312
+ :inbound_fednow_transfer_confirmation,
313
+ Increase::TransactionListParams::Category::In::TaggedSymbol
314
+ )
315
+
309
316
  # Inbound Real-Time Payments Transfer Confirmation: details will be under the `inbound_real_time_payments_transfer_confirmation` object.
310
317
  INBOUND_REAL_TIME_PAYMENTS_TRANSFER_CONFIRMATION =
311
318
  T.let(
@@ -111,6 +111,7 @@ module Increase
111
111
  category: Increase::Models::DeclinedTransaction::Source::category,
112
112
  check_decline: Increase::DeclinedTransaction::Source::CheckDecline?,
113
113
  check_deposit_rejection: Increase::DeclinedTransaction::Source::CheckDepositRejection?,
114
+ inbound_fednow_transfer_decline: Increase::DeclinedTransaction::Source::InboundFednowTransferDecline?,
114
115
  inbound_real_time_payments_transfer_decline: Increase::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline?,
115
116
  other: top?,
116
117
  wire_decline: Increase::DeclinedTransaction::Source::WireDecline?
@@ -127,6 +128,8 @@ module Increase
127
128
 
128
129
  attr_accessor check_deposit_rejection: Increase::DeclinedTransaction::Source::CheckDepositRejection?
129
130
 
131
+ attr_accessor inbound_fednow_transfer_decline: Increase::DeclinedTransaction::Source::InboundFednowTransferDecline?
132
+
130
133
  attr_accessor inbound_real_time_payments_transfer_decline: Increase::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline?
131
134
 
132
135
  attr_accessor other: top?
@@ -139,6 +142,7 @@ module Increase
139
142
  category: Increase::Models::DeclinedTransaction::Source::category,
140
143
  check_decline: Increase::DeclinedTransaction::Source::CheckDecline?,
141
144
  check_deposit_rejection: Increase::DeclinedTransaction::Source::CheckDepositRejection?,
145
+ inbound_fednow_transfer_decline: Increase::DeclinedTransaction::Source::InboundFednowTransferDecline?,
142
146
  inbound_real_time_payments_transfer_decline: Increase::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline?,
143
147
  other: top?,
144
148
  wire_decline: Increase::DeclinedTransaction::Source::WireDecline?
@@ -150,6 +154,7 @@ module Increase
150
154
  category: Increase::Models::DeclinedTransaction::Source::category,
151
155
  check_decline: Increase::DeclinedTransaction::Source::CheckDecline?,
152
156
  check_deposit_rejection: Increase::DeclinedTransaction::Source::CheckDepositRejection?,
157
+ inbound_fednow_transfer_decline: Increase::DeclinedTransaction::Source::InboundFednowTransferDecline?,
153
158
  inbound_real_time_payments_transfer_decline: Increase::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline?,
154
159
  other: top?,
155
160
  wire_decline: Increase::DeclinedTransaction::Source::WireDecline?
@@ -1197,6 +1202,7 @@ module Increase
1197
1202
  | :card_decline
1198
1203
  | :check_decline
1199
1204
  | :inbound_real_time_payments_transfer_decline
1205
+ | :inbound_fednow_transfer_decline
1200
1206
  | :wire_decline
1201
1207
  | :check_deposit_rejection
1202
1208
  | :other
@@ -1216,6 +1222,9 @@ module Increase
1216
1222
  # Inbound Real-Time Payments Transfer Decline: details will be under the `inbound_real_time_payments_transfer_decline` object.
1217
1223
  INBOUND_REAL_TIME_PAYMENTS_TRANSFER_DECLINE: :inbound_real_time_payments_transfer_decline
1218
1224
 
1225
+ # Inbound FedNow Transfer Decline: details will be under the `inbound_fednow_transfer_decline` object.
1226
+ INBOUND_FEDNOW_TRANSFER_DECLINE: :inbound_fednow_transfer_decline
1227
+
1219
1228
  # Wire Decline: details will be under the `wire_decline` object.
1220
1229
  WIRE_DECLINE: :wire_decline
1221
1230
 
@@ -1475,6 +1484,60 @@ module Increase
1475
1484
  end
1476
1485
  end
1477
1486
 
1487
+ type inbound_fednow_transfer_decline =
1488
+ {
1489
+ reason: Increase::Models::DeclinedTransaction::Source::InboundFednowTransferDecline::reason,
1490
+ transfer_id: String
1491
+ }
1492
+
1493
+ class InboundFednowTransferDecline < Increase::Internal::Type::BaseModel
1494
+ attr_accessor reason: Increase::Models::DeclinedTransaction::Source::InboundFednowTransferDecline::reason
1495
+
1496
+ attr_accessor transfer_id: String
1497
+
1498
+ def initialize: (
1499
+ reason: Increase::Models::DeclinedTransaction::Source::InboundFednowTransferDecline::reason,
1500
+ transfer_id: String
1501
+ ) -> void
1502
+
1503
+ def to_hash: -> {
1504
+ reason: Increase::Models::DeclinedTransaction::Source::InboundFednowTransferDecline::reason,
1505
+ transfer_id: String
1506
+ }
1507
+
1508
+ type reason =
1509
+ :account_number_canceled
1510
+ | :account_number_disabled
1511
+ | :account_restricted
1512
+ | :group_locked
1513
+ | :entity_not_active
1514
+ | :fednow_not_enabled
1515
+
1516
+ module Reason
1517
+ extend Increase::Internal::Type::Enum
1518
+
1519
+ # The account number is canceled.
1520
+ ACCOUNT_NUMBER_CANCELED: :account_number_canceled
1521
+
1522
+ # The account number is disabled.
1523
+ ACCOUNT_NUMBER_DISABLED: :account_number_disabled
1524
+
1525
+ # Your account is restricted.
1526
+ ACCOUNT_RESTRICTED: :account_restricted
1527
+
1528
+ # Your account is inactive.
1529
+ GROUP_LOCKED: :group_locked
1530
+
1531
+ # The account's entity is not active.
1532
+ ENTITY_NOT_ACTIVE: :entity_not_active
1533
+
1534
+ # Your account is not enabled to receive FedNow transfers.
1535
+ FEDNOW_NOT_ENABLED: :fednow_not_enabled
1536
+
1537
+ def self?.values: -> ::Array[Increase::Models::DeclinedTransaction::Source::InboundFednowTransferDecline::reason]
1538
+ end
1539
+ end
1540
+
1478
1541
  type inbound_real_time_payments_transfer_decline =
1479
1542
  {
1480
1543
  amount: Integer,
@@ -88,6 +88,7 @@ module Increase
88
88
  | :card_decline
89
89
  | :check_decline
90
90
  | :inbound_real_time_payments_transfer_decline
91
+ | :inbound_fednow_transfer_decline
91
92
  | :wire_decline
92
93
  | :check_deposit_rejection
93
94
  | :other
@@ -107,6 +108,9 @@ module Increase
107
108
  # Inbound Real-Time Payments Transfer Decline: details will be under the `inbound_real_time_payments_transfer_decline` object.
108
109
  INBOUND_REAL_TIME_PAYMENTS_TRANSFER_DECLINE: :inbound_real_time_payments_transfer_decline
109
110
 
111
+ # Inbound FedNow Transfer Decline: details will be under the `inbound_fednow_transfer_decline` object.
112
+ INBOUND_FEDNOW_TRANSFER_DECLINE: :inbound_fednow_transfer_decline
113
+
110
114
  # Wire Decline: details will be under the `wire_decline` object.
111
115
  WIRE_DECLINE: :wire_decline
112
116
 
@@ -93,6 +93,8 @@ module Increase
93
93
  | :"inbound_ach_transfer_return.updated"
94
94
  | :"inbound_check_deposit.created"
95
95
  | :"inbound_check_deposit.updated"
96
+ | :"inbound_fednow_transfer.created"
97
+ | :"inbound_fednow_transfer.updated"
96
98
  | :"inbound_mail_item.created"
97
99
  | :"inbound_mail_item.updated"
98
100
  | :"inbound_real_time_payments_transfer.created"
@@ -301,6 +303,12 @@ module Increase
301
303
  # Occurs whenever an Inbound Check Deposit is updated.
302
304
  INBOUND_CHECK_DEPOSIT_UPDATED: :"inbound_check_deposit.updated"
303
305
 
306
+ # Occurs whenever an Inbound FedNow Transfer is created.
307
+ INBOUND_FEDNOW_TRANSFER_CREATED: :"inbound_fednow_transfer.created"
308
+
309
+ # Occurs whenever an Inbound FedNow Transfer is updated.
310
+ INBOUND_FEDNOW_TRANSFER_UPDATED: :"inbound_fednow_transfer.updated"
311
+
304
312
  # Occurs whenever an Inbound Mail Item is created.
305
313
  INBOUND_MAIL_ITEM_CREATED: :"inbound_mail_item.created"
306
314
 
@@ -126,6 +126,8 @@ module Increase
126
126
  | :"inbound_ach_transfer_return.updated"
127
127
  | :"inbound_check_deposit.created"
128
128
  | :"inbound_check_deposit.updated"
129
+ | :"inbound_fednow_transfer.created"
130
+ | :"inbound_fednow_transfer.updated"
129
131
  | :"inbound_mail_item.created"
130
132
  | :"inbound_mail_item.updated"
131
133
  | :"inbound_real_time_payments_transfer.created"
@@ -334,6 +336,12 @@ module Increase
334
336
  # Occurs whenever an Inbound Check Deposit is updated.
335
337
  INBOUND_CHECK_DEPOSIT_UPDATED: :"inbound_check_deposit.updated"
336
338
 
339
+ # Occurs whenever an Inbound FedNow Transfer is created.
340
+ INBOUND_FEDNOW_TRANSFER_CREATED: :"inbound_fednow_transfer.created"
341
+
342
+ # Occurs whenever an Inbound FedNow Transfer is updated.
343
+ INBOUND_FEDNOW_TRANSFER_UPDATED: :"inbound_fednow_transfer.updated"
344
+
337
345
  # Occurs whenever an Inbound Mail Item is created.
338
346
  INBOUND_MAIL_ITEM_CREATED: :"inbound_mail_item.created"
339
347
 
@@ -103,6 +103,8 @@ module Increase
103
103
  | :"inbound_ach_transfer_return.updated"
104
104
  | :"inbound_check_deposit.created"
105
105
  | :"inbound_check_deposit.updated"
106
+ | :"inbound_fednow_transfer.created"
107
+ | :"inbound_fednow_transfer.updated"
106
108
  | :"inbound_mail_item.created"
107
109
  | :"inbound_mail_item.updated"
108
110
  | :"inbound_real_time_payments_transfer.created"
@@ -311,6 +313,12 @@ module Increase
311
313
  # Occurs whenever an Inbound Check Deposit is updated.
312
314
  INBOUND_CHECK_DEPOSIT_UPDATED: :"inbound_check_deposit.updated"
313
315
 
316
+ # Occurs whenever an Inbound FedNow Transfer is created.
317
+ INBOUND_FEDNOW_TRANSFER_CREATED: :"inbound_fednow_transfer.created"
318
+
319
+ # Occurs whenever an Inbound FedNow Transfer is updated.
320
+ INBOUND_FEDNOW_TRANSFER_UPDATED: :"inbound_fednow_transfer.updated"
321
+
314
322
  # Occurs whenever an Inbound Mail Item is created.
315
323
  INBOUND_MAIL_ITEM_CREATED: :"inbound_mail_item.created"
316
324
 
@@ -97,6 +97,8 @@ module Increase
97
97
  | :"inbound_ach_transfer_return.updated"
98
98
  | :"inbound_check_deposit.created"
99
99
  | :"inbound_check_deposit.updated"
100
+ | :"inbound_fednow_transfer.created"
101
+ | :"inbound_fednow_transfer.updated"
100
102
  | :"inbound_mail_item.created"
101
103
  | :"inbound_mail_item.updated"
102
104
  | :"inbound_real_time_payments_transfer.created"
@@ -305,6 +307,12 @@ module Increase
305
307
  # Occurs whenever an Inbound Check Deposit is updated.
306
308
  INBOUND_CHECK_DEPOSIT_UPDATED: :"inbound_check_deposit.updated"
307
309
 
310
+ # Occurs whenever an Inbound FedNow Transfer is created.
311
+ INBOUND_FEDNOW_TRANSFER_CREATED: :"inbound_fednow_transfer.created"
312
+
313
+ # Occurs whenever an Inbound FedNow Transfer is updated.
314
+ INBOUND_FEDNOW_TRANSFER_UPDATED: :"inbound_fednow_transfer.updated"
315
+
308
316
  # Occurs whenever an Inbound Mail Item is created.
309
317
  INBOUND_MAIL_ITEM_CREATED: :"inbound_mail_item.created"
310
318
 
@@ -129,6 +129,7 @@ module Increase
129
129
  inbound_ach_transfer_return_intention: Increase::Transaction::Source::InboundACHTransferReturnIntention?,
130
130
  inbound_check_adjustment: Increase::Transaction::Source::InboundCheckAdjustment?,
131
131
  inbound_check_deposit_return_intention: Increase::Transaction::Source::InboundCheckDepositReturnIntention?,
132
+ inbound_fednow_transfer_confirmation: Increase::Transaction::Source::InboundFednowTransferConfirmation?,
132
133
  inbound_real_time_payments_transfer_confirmation: Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation?,
133
134
  inbound_wire_reversal: Increase::Transaction::Source::InboundWireReversal?,
134
135
  inbound_wire_transfer: Increase::Transaction::Source::InboundWireTransfer?,
@@ -190,6 +191,8 @@ module Increase
190
191
 
191
192
  attr_accessor inbound_check_deposit_return_intention: Increase::Transaction::Source::InboundCheckDepositReturnIntention?
192
193
 
194
+ attr_accessor inbound_fednow_transfer_confirmation: Increase::Transaction::Source::InboundFednowTransferConfirmation?
195
+
193
196
  attr_accessor inbound_real_time_payments_transfer_confirmation: Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation?
194
197
 
195
198
  attr_accessor inbound_wire_reversal: Increase::Transaction::Source::InboundWireReversal?
@@ -238,6 +241,7 @@ module Increase
238
241
  inbound_ach_transfer_return_intention: Increase::Transaction::Source::InboundACHTransferReturnIntention?,
239
242
  inbound_check_adjustment: Increase::Transaction::Source::InboundCheckAdjustment?,
240
243
  inbound_check_deposit_return_intention: Increase::Transaction::Source::InboundCheckDepositReturnIntention?,
244
+ inbound_fednow_transfer_confirmation: Increase::Transaction::Source::InboundFednowTransferConfirmation?,
241
245
  inbound_real_time_payments_transfer_confirmation: Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation?,
242
246
  inbound_wire_reversal: Increase::Transaction::Source::InboundWireReversal?,
243
247
  inbound_wire_transfer: Increase::Transaction::Source::InboundWireTransfer?,
@@ -276,6 +280,7 @@ module Increase
276
280
  inbound_ach_transfer_return_intention: Increase::Transaction::Source::InboundACHTransferReturnIntention?,
277
281
  inbound_check_adjustment: Increase::Transaction::Source::InboundCheckAdjustment?,
278
282
  inbound_check_deposit_return_intention: Increase::Transaction::Source::InboundCheckDepositReturnIntention?,
283
+ inbound_fednow_transfer_confirmation: Increase::Transaction::Source::InboundFednowTransferConfirmation?,
279
284
  inbound_real_time_payments_transfer_confirmation: Increase::Transaction::Source::InboundRealTimePaymentsTransferConfirmation?,
280
285
  inbound_wire_reversal: Increase::Transaction::Source::InboundWireReversal?,
281
286
  inbound_wire_transfer: Increase::Transaction::Source::InboundWireTransfer?,
@@ -3156,6 +3161,7 @@ module Increase
3156
3161
  | :inbound_ach_transfer_return_intention
3157
3162
  | :inbound_check_deposit_return_intention
3158
3163
  | :inbound_check_adjustment
3164
+ | :inbound_fednow_transfer_confirmation
3159
3165
  | :inbound_real_time_payments_transfer_confirmation
3160
3166
  | :inbound_wire_reversal
3161
3167
  | :inbound_wire_transfer
@@ -3234,6 +3240,9 @@ module Increase
3234
3240
  # Inbound Check Adjustment: details will be under the `inbound_check_adjustment` object.
3235
3241
  INBOUND_CHECK_ADJUSTMENT: :inbound_check_adjustment
3236
3242
 
3243
+ # Inbound FedNow Transfer Confirmation: details will be under the `inbound_fednow_transfer_confirmation` object.
3244
+ INBOUND_FEDNOW_TRANSFER_CONFIRMATION: :inbound_fednow_transfer_confirmation
3245
+
3237
3246
  # Inbound Real-Time Payments Transfer Confirmation: details will be under the `inbound_real_time_payments_transfer_confirmation` object.
3238
3247
  INBOUND_REAL_TIME_PAYMENTS_TRANSFER_CONFIRMATION: :inbound_real_time_payments_transfer_confirmation
3239
3248
 
@@ -3870,6 +3879,16 @@ module Increase
3870
3879
  }
3871
3880
  end
3872
3881
 
3882
+ type inbound_fednow_transfer_confirmation = { transfer_id: String }
3883
+
3884
+ class InboundFednowTransferConfirmation < Increase::Internal::Type::BaseModel
3885
+ attr_accessor transfer_id: String
3886
+
3887
+ def initialize: (transfer_id: String) -> void
3888
+
3889
+ def to_hash: -> { transfer_id: String }
3890
+ end
3891
+
3873
3892
  type inbound_real_time_payments_transfer_confirmation =
3874
3893
  {
3875
3894
  amount: Integer,
@@ -102,6 +102,7 @@ module Increase
102
102
  | :inbound_ach_transfer_return_intention
103
103
  | :inbound_check_deposit_return_intention
104
104
  | :inbound_check_adjustment
105
+ | :inbound_fednow_transfer_confirmation
105
106
  | :inbound_real_time_payments_transfer_confirmation
106
107
  | :inbound_wire_reversal
107
108
  | :inbound_wire_transfer
@@ -180,6 +181,9 @@ module Increase
180
181
  # Inbound Check Adjustment: details will be under the `inbound_check_adjustment` object.
181
182
  INBOUND_CHECK_ADJUSTMENT: :inbound_check_adjustment
182
183
 
184
+ # Inbound FedNow Transfer Confirmation: details will be under the `inbound_fednow_transfer_confirmation` object.
185
+ INBOUND_FEDNOW_TRANSFER_CONFIRMATION: :inbound_fednow_transfer_confirmation
186
+
183
187
  # Inbound Real-Time Payments Transfer Confirmation: details will be under the `inbound_real_time_payments_transfer_confirmation` object.
184
188
  INBOUND_REAL_TIME_PAYMENTS_TRANSFER_CONFIRMATION: :inbound_real_time_payments_transfer_confirmation
185
189
 
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.78.0
4
+ version: 1.79.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-09-16 00:00:00.000000000 Z
11
+ date: 2025-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool