increase 1.74.0 → 1.75.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: 352bb87a18fd3d72daceebb792dbe799ed16031c9d391d00ae2684eac0e69f76
4
- data.tar.gz: 1b109684e3a04dd2e6c3791c5bd1909dc2f7983aa5ee1d8664fe140dc083d97f
3
+ metadata.gz: baf2b72dbcaf86691a64468f68997ec9a66c140283eb57431e50149917d6307e
4
+ data.tar.gz: 9e190d36936a97a560bd921cbd78c71bfa5bb242b93560328976735dd95a25ba
5
5
  SHA512:
6
- metadata.gz: de5fa34162c12fe09c537bf2f3355defb96145c1c0645ae3127160554aa731ac1234418f4c8492cde61411fddf8e71ebf8e152e4e5cf5e0c29a939ac8b02fe1b
7
- data.tar.gz: 38da026295f5dcdc4bc2cf1da7c491042640d8ab00d0119c15be7ea67eec98a058db03dfdc706a303c74ff002c3c8a76227061e8d8b522c78b86b8d914561248
6
+ metadata.gz: 4e2c10c828ffc0fa1815b8451f52f3bbd0a2cd8e71261495c79598e531072dede4872d394cde33016a48ff4b14e90ec6ee0514288a33cff366bfbb00410eb839
7
+ data.tar.gz: 6b2de401f44e9e6d4ae90941a53d9bfe40116a6ce0ff255339df363f44180950de26c5ba8efc4cb2cb3ce645321a5fbb63949e8b881970561faccf165e8ef48e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.75.0 (2025-09-12)
4
+
5
+ Full Changelog: [v1.74.0...v1.75.0](https://github.com/Increase/increase-ruby/compare/v1.74.0...v1.75.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([21b0ffb](https://github.com/Increase/increase-ruby/commit/21b0ffbca60d9fabfde03cec0620a98e39bffe19))
10
+
3
11
  ## 1.74.0 (2025-09-12)
4
12
 
5
13
  Full Changelog: [v1.73.0...v1.74.0](https://github.com/Increase/increase-ruby/compare/v1.73.0...v1.74.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.74.0"
18
+ gem "increase", "~> 1.75.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -263,6 +263,15 @@ module Increase
263
263
  -> { Increase::PendingTransaction::Source::CheckTransferInstruction },
264
264
  nil?: true
265
265
 
266
+ # @!attribute fed_now_transfer_instruction
267
+ # A FedNow Transfer Instruction object. This field will be present in the JSON
268
+ # response if and only if `category` is equal to `fed_now_transfer_instruction`.
269
+ #
270
+ # @return [Increase::Models::PendingTransaction::Source::FedNowTransferInstruction, nil]
271
+ required :fed_now_transfer_instruction,
272
+ -> { Increase::PendingTransaction::Source::FedNowTransferInstruction },
273
+ nil?: true
274
+
266
275
  # @!attribute inbound_funds_hold
267
276
  # An Inbound Funds Hold object. This field will be present in the JSON response if
268
277
  # and only if `category` is equal to `inbound_funds_hold`. We hold funds for
@@ -330,7 +339,7 @@ module Increase
330
339
  -> { Increase::PendingTransaction::Source::WireTransferInstruction },
331
340
  nil?: true
332
341
 
333
- # @!method initialize(account_transfer_instruction:, ach_transfer_instruction:, card_authorization:, card_push_transfer_instruction:, category:, check_deposit_instruction:, check_transfer_instruction:, inbound_funds_hold:, inbound_wire_transfer_reversal:, other:, real_time_payments_transfer_instruction:, swift_transfer_instruction:, user_initiated_hold:, wire_transfer_instruction:)
342
+ # @!method initialize(account_transfer_instruction:, ach_transfer_instruction:, card_authorization:, card_push_transfer_instruction:, category:, check_deposit_instruction:, check_transfer_instruction:, fed_now_transfer_instruction:, inbound_funds_hold:, inbound_wire_transfer_reversal:, other:, real_time_payments_transfer_instruction:, swift_transfer_instruction:, user_initiated_hold:, wire_transfer_instruction:)
334
343
  # Some parameter documentations has been truncated, see
335
344
  # {Increase::Models::PendingTransaction::Source} for more details.
336
345
  #
@@ -352,6 +361,8 @@ module Increase
352
361
  #
353
362
  # @param check_transfer_instruction [Increase::Models::PendingTransaction::Source::CheckTransferInstruction, nil] A Check Transfer Instruction object. This field will be present in the JSON resp
354
363
  #
364
+ # @param fed_now_transfer_instruction [Increase::Models::PendingTransaction::Source::FedNowTransferInstruction, nil] A FedNow Transfer Instruction object. This field will be present in the JSON res
365
+ #
355
366
  # @param inbound_funds_hold [Increase::Models::PendingTransaction::Source::InboundFundsHold, nil] An Inbound Funds Hold object. This field will be present in the JSON response if
356
367
  #
357
368
  # @param inbound_wire_transfer_reversal [Increase::Models::PendingTransaction::Source::InboundWireTransferReversal, nil] An Inbound Wire Transfer Reversal object. This field will be present in the JSON
@@ -1623,6 +1634,9 @@ module Increase
1623
1634
  # Check Transfer Instruction: details will be under the `check_transfer_instruction` object.
1624
1635
  CHECK_TRANSFER_INSTRUCTION = :check_transfer_instruction
1625
1636
 
1637
+ # FedNow Transfer Instruction: details will be under the `fed_now_transfer_instruction` object.
1638
+ FED_NOW_TRANSFER_INSTRUCTION = :fed_now_transfer_instruction
1639
+
1626
1640
  # Inbound Funds Hold: details will be under the `inbound_funds_hold` object.
1627
1641
  INBOUND_FUNDS_HOLD = :inbound_funds_hold
1628
1642
 
@@ -1799,6 +1813,21 @@ module Increase
1799
1813
  end
1800
1814
  end
1801
1815
 
1816
+ # @see Increase::Models::PendingTransaction::Source#fed_now_transfer_instruction
1817
+ class FedNowTransferInstruction < Increase::Internal::Type::BaseModel
1818
+ # @!attribute transfer_id
1819
+ # The identifier of the FedNow Transfer that led to this Pending Transaction.
1820
+ #
1821
+ # @return [String]
1822
+ required :transfer_id, String
1823
+
1824
+ # @!method initialize(transfer_id:)
1825
+ # A FedNow Transfer Instruction object. This field will be present in the JSON
1826
+ # response if and only if `category` is equal to `fed_now_transfer_instruction`.
1827
+ #
1828
+ # @param transfer_id [String] The identifier of the FedNow Transfer that led to this Pending Transaction.
1829
+ end
1830
+
1802
1831
  # @see Increase::Models::PendingTransaction::Source#inbound_funds_hold
1803
1832
  class InboundFundsHold < Increase::Internal::Type::BaseModel
1804
1833
  # @!attribute amount
@@ -103,6 +103,9 @@ module Increase
103
103
  # Check Transfer Instruction: details will be under the `check_transfer_instruction` object.
104
104
  CHECK_TRANSFER_INSTRUCTION = :check_transfer_instruction
105
105
 
106
+ # FedNow Transfer Instruction: details will be under the `fed_now_transfer_instruction` object.
107
+ FED_NOW_TRANSFER_INSTRUCTION = :fed_now_transfer_instruction
108
+
106
109
  # Inbound Funds Hold: details will be under the `inbound_funds_hold` object.
107
110
  INBOUND_FUNDS_HOLD = :inbound_funds_hold
108
111
 
@@ -338,6 +338,17 @@ module Increase
338
338
  },
339
339
  nil?: true
340
340
 
341
+ # @!attribute fed_now_transfer_acknowledgement
342
+ # A FedNow Transfer Acknowledgement object. This field will be present in the JSON
343
+ # response if and only if `category` is equal to
344
+ # `fed_now_transfer_acknowledgement`. A FedNow Transfer Acknowledgement is created
345
+ # when a FedNow Transfer sent from Increase is acknowledged by the receiving bank.
346
+ #
347
+ # @return [Increase::Models::Transaction::Source::FedNowTransferAcknowledgement, nil]
348
+ required :fed_now_transfer_acknowledgement,
349
+ -> { Increase::Transaction::Source::FedNowTransferAcknowledgement },
350
+ nil?: true
351
+
341
352
  # @!attribute fee_payment
342
353
  # A Fee Payment object. This field will be present in the JSON response if and
343
354
  # only if `category` is equal to `fee_payment`. A Fee Payment represents a payment
@@ -507,7 +518,7 @@ module Increase
507
518
  },
508
519
  nil?: true
509
520
 
510
- # @!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:, 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:)
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:, fed_now_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:)
511
522
  # Some parameter documentations has been truncated, see
512
523
  # {Increase::Models::Transaction::Source} for more details.
513
524
  #
@@ -550,6 +561,8 @@ module Increase
550
561
  #
551
562
  # @param check_transfer_deposit [Increase::Models::Transaction::Source::CheckTransferDeposit, nil] A Check Transfer Deposit object. This field will be present in the JSON response
552
563
  #
564
+ # @param fed_now_transfer_acknowledgement [Increase::Models::Transaction::Source::FedNowTransferAcknowledgement, nil] A FedNow Transfer Acknowledgement object. This field will be present in the JSON
565
+ #
553
566
  # @param fee_payment [Increase::Models::Transaction::Source::FeePayment, nil] A Fee Payment object. This field will be present in the JSON response if and onl
554
567
  #
555
568
  # @param inbound_ach_transfer [Increase::Models::Transaction::Source::InboundACHTransfer, nil] An Inbound ACH Transfer Intention object. This field will be present in the JSON
@@ -4247,6 +4260,9 @@ module Increase
4247
4260
  # Check Deposit Return: details will be under the `check_deposit_return` object.
4248
4261
  CHECK_DEPOSIT_RETURN = :check_deposit_return
4249
4262
 
4263
+ # FedNow Transfer Acknowledgement: details will be under the `fed_now_transfer_acknowledgement` object.
4264
+ FED_NOW_TRANSFER_ACKNOWLEDGEMENT = :fed_now_transfer_acknowledgement
4265
+
4250
4266
  # Check Transfer Deposit: details will be under the `check_transfer_deposit` object.
4251
4267
  CHECK_TRANSFER_DEPOSIT = :check_transfer_deposit
4252
4268
 
@@ -4693,6 +4709,23 @@ module Increase
4693
4709
  end
4694
4710
  end
4695
4711
 
4712
+ # @see Increase::Models::Transaction::Source#fed_now_transfer_acknowledgement
4713
+ class FedNowTransferAcknowledgement < Increase::Internal::Type::BaseModel
4714
+ # @!attribute transfer_id
4715
+ # The identifier of the FedNow Transfer that led to this Transaction.
4716
+ #
4717
+ # @return [String]
4718
+ required :transfer_id, String
4719
+
4720
+ # @!method initialize(transfer_id:)
4721
+ # A FedNow Transfer Acknowledgement object. This field will be present in the JSON
4722
+ # response if and only if `category` is equal to
4723
+ # `fed_now_transfer_acknowledgement`. A FedNow Transfer Acknowledgement is created
4724
+ # when a FedNow Transfer sent from Increase is acknowledged by the receiving bank.
4725
+ #
4726
+ # @param transfer_id [String] The identifier of the FedNow Transfer that led to this Transaction.
4727
+ end
4728
+
4696
4729
  # @see Increase::Models::Transaction::Source#fee_payment
4697
4730
  class FeePayment < Increase::Internal::Type::BaseModel
4698
4731
  # @!attribute amount
@@ -121,6 +121,9 @@ module Increase
121
121
  # Check Deposit Return: details will be under the `check_deposit_return` object.
122
122
  CHECK_DEPOSIT_RETURN = :check_deposit_return
123
123
 
124
+ # FedNow Transfer Acknowledgement: details will be under the `fed_now_transfer_acknowledgement` object.
125
+ FED_NOW_TRANSFER_ACKNOWLEDGEMENT = :fed_now_transfer_acknowledgement
126
+
124
127
  # Check Transfer Deposit: details will be under the `check_transfer_deposit` object.
125
128
  CHECK_TRANSFER_DEPOSIT = :check_transfer_deposit
126
129
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.74.0"
4
+ VERSION = "1.75.0"
5
5
  end
@@ -416,6 +416,27 @@ module Increase
416
416
  end
417
417
  attr_writer :check_transfer_instruction
418
418
 
419
+ # A FedNow Transfer Instruction object. This field will be present in the JSON
420
+ # response if and only if `category` is equal to `fed_now_transfer_instruction`.
421
+ sig do
422
+ returns(
423
+ T.nilable(
424
+ Increase::PendingTransaction::Source::FedNowTransferInstruction
425
+ )
426
+ )
427
+ end
428
+ attr_reader :fed_now_transfer_instruction
429
+
430
+ sig do
431
+ params(
432
+ fed_now_transfer_instruction:
433
+ T.nilable(
434
+ Increase::PendingTransaction::Source::FedNowTransferInstruction::OrHash
435
+ )
436
+ ).void
437
+ end
438
+ attr_writer :fed_now_transfer_instruction
439
+
419
440
  # An Inbound Funds Hold object. This field will be present in the JSON response if
420
441
  # and only if `category` is equal to `inbound_funds_hold`. We hold funds for
421
442
  # certain transaction types to account for return windows where funds might still
@@ -565,6 +586,10 @@ module Increase
565
586
  T.nilable(
566
587
  Increase::PendingTransaction::Source::CheckTransferInstruction::OrHash
567
588
  ),
589
+ fed_now_transfer_instruction:
590
+ T.nilable(
591
+ Increase::PendingTransaction::Source::FedNowTransferInstruction::OrHash
592
+ ),
568
593
  inbound_funds_hold:
569
594
  T.nilable(
570
595
  Increase::PendingTransaction::Source::InboundFundsHold::OrHash
@@ -613,6 +638,9 @@ module Increase
613
638
  # A Check Transfer Instruction object. This field will be present in the JSON
614
639
  # response if and only if `category` is equal to `check_transfer_instruction`.
615
640
  check_transfer_instruction:,
641
+ # A FedNow Transfer Instruction object. This field will be present in the JSON
642
+ # response if and only if `category` is equal to `fed_now_transfer_instruction`.
643
+ fed_now_transfer_instruction:,
616
644
  # An Inbound Funds Hold object. This field will be present in the JSON response if
617
645
  # and only if `category` is equal to `inbound_funds_hold`. We hold funds for
618
646
  # certain transaction types to account for return windows where funds might still
@@ -672,6 +700,10 @@ module Increase
672
700
  T.nilable(
673
701
  Increase::PendingTransaction::Source::CheckTransferInstruction
674
702
  ),
703
+ fed_now_transfer_instruction:
704
+ T.nilable(
705
+ Increase::PendingTransaction::Source::FedNowTransferInstruction
706
+ ),
675
707
  inbound_funds_hold:
676
708
  T.nilable(
677
709
  Increase::PendingTransaction::Source::InboundFundsHold
@@ -3057,6 +3089,13 @@ module Increase
3057
3089
  Increase::PendingTransaction::Source::Category::TaggedSymbol
3058
3090
  )
3059
3091
 
3092
+ # FedNow Transfer Instruction: details will be under the `fed_now_transfer_instruction` object.
3093
+ FED_NOW_TRANSFER_INSTRUCTION =
3094
+ T.let(
3095
+ :fed_now_transfer_instruction,
3096
+ Increase::PendingTransaction::Source::Category::TaggedSymbol
3097
+ )
3098
+
3060
3099
  # Inbound Funds Hold: details will be under the `inbound_funds_hold` object.
3061
3100
  INBOUND_FUNDS_HOLD =
3062
3101
  T.let(
@@ -3400,6 +3439,33 @@ module Increase
3400
3439
  end
3401
3440
  end
3402
3441
 
3442
+ class FedNowTransferInstruction < Increase::Internal::Type::BaseModel
3443
+ OrHash =
3444
+ T.type_alias do
3445
+ T.any(
3446
+ Increase::PendingTransaction::Source::FedNowTransferInstruction,
3447
+ Increase::Internal::AnyHash
3448
+ )
3449
+ end
3450
+
3451
+ # The identifier of the FedNow Transfer that led to this Pending Transaction.
3452
+ sig { returns(String) }
3453
+ attr_accessor :transfer_id
3454
+
3455
+ # A FedNow Transfer Instruction object. This field will be present in the JSON
3456
+ # response if and only if `category` is equal to `fed_now_transfer_instruction`.
3457
+ sig { params(transfer_id: String).returns(T.attached_class) }
3458
+ def self.new(
3459
+ # The identifier of the FedNow Transfer that led to this Pending Transaction.
3460
+ transfer_id:
3461
+ )
3462
+ end
3463
+
3464
+ sig { override.returns({ transfer_id: String }) }
3465
+ def to_hash
3466
+ end
3467
+ end
3468
+
3403
3469
  class InboundFundsHold < Increase::Internal::Type::BaseModel
3404
3470
  OrHash =
3405
3471
  T.type_alias do
@@ -230,6 +230,13 @@ module Increase
230
230
  Increase::PendingTransactionListParams::Category::In::TaggedSymbol
231
231
  )
232
232
 
233
+ # FedNow Transfer Instruction: details will be under the `fed_now_transfer_instruction` object.
234
+ FED_NOW_TRANSFER_INSTRUCTION =
235
+ T.let(
236
+ :fed_now_transfer_instruction,
237
+ Increase::PendingTransactionListParams::Category::In::TaggedSymbol
238
+ )
239
+
233
240
  # Inbound Funds Hold: details will be under the `inbound_funds_hold` object.
234
241
  INBOUND_FUNDS_HOLD =
235
242
  T.let(
@@ -525,6 +525,29 @@ module Increase
525
525
  end
526
526
  attr_writer :check_transfer_deposit
527
527
 
528
+ # A FedNow Transfer Acknowledgement object. This field will be present in the JSON
529
+ # response if and only if `category` is equal to
530
+ # `fed_now_transfer_acknowledgement`. A FedNow Transfer Acknowledgement is created
531
+ # when a FedNow Transfer sent from Increase is acknowledged by the receiving bank.
532
+ sig do
533
+ returns(
534
+ T.nilable(
535
+ Increase::Transaction::Source::FedNowTransferAcknowledgement
536
+ )
537
+ )
538
+ end
539
+ attr_reader :fed_now_transfer_acknowledgement
540
+
541
+ sig do
542
+ params(
543
+ fed_now_transfer_acknowledgement:
544
+ T.nilable(
545
+ Increase::Transaction::Source::FedNowTransferAcknowledgement::OrHash
546
+ )
547
+ ).void
548
+ end
549
+ attr_writer :fed_now_transfer_acknowledgement
550
+
528
551
  # A Fee Payment object. This field will be present in the JSON response if and
529
552
  # only if `category` is equal to `fee_payment`. A Fee Payment represents a payment
530
553
  # made to Increase.
@@ -911,6 +934,10 @@ module Increase
911
934
  T.nilable(
912
935
  Increase::Transaction::Source::CheckTransferDeposit::OrHash
913
936
  ),
937
+ fed_now_transfer_acknowledgement:
938
+ T.nilable(
939
+ Increase::Transaction::Source::FedNowTransferAcknowledgement::OrHash
940
+ ),
914
941
  fee_payment:
915
942
  T.nilable(Increase::Transaction::Source::FeePayment::OrHash),
916
943
  inbound_ach_transfer:
@@ -1057,6 +1084,11 @@ module Increase
1057
1084
  # is a check drawn on an Increase account that has been deposited by an external
1058
1085
  # bank account. These types of checks are not pre-registered.
1059
1086
  check_transfer_deposit:,
1087
+ # A FedNow Transfer Acknowledgement object. This field will be present in the JSON
1088
+ # response if and only if `category` is equal to
1089
+ # `fed_now_transfer_acknowledgement`. A FedNow Transfer Acknowledgement is created
1090
+ # when a FedNow Transfer sent from Increase is acknowledged by the receiving bank.
1091
+ fed_now_transfer_acknowledgement:,
1060
1092
  # A Fee Payment object. This field will be present in the JSON response if and
1061
1093
  # only if `category` is equal to `fee_payment`. A Fee Payment represents a payment
1062
1094
  # made to Increase.
@@ -1184,6 +1216,10 @@ module Increase
1184
1216
  T.nilable(Increase::Transaction::Source::CheckDepositReturn),
1185
1217
  check_transfer_deposit:
1186
1218
  T.nilable(Increase::Transaction::Source::CheckTransferDeposit),
1219
+ fed_now_transfer_acknowledgement:
1220
+ T.nilable(
1221
+ Increase::Transaction::Source::FedNowTransferAcknowledgement
1222
+ ),
1187
1223
  fee_payment: T.nilable(Increase::Transaction::Source::FeePayment),
1188
1224
  inbound_ach_transfer:
1189
1225
  T.nilable(Increase::Transaction::Source::InboundACHTransfer),
@@ -7890,6 +7926,13 @@ module Increase
7890
7926
  Increase::Transaction::Source::Category::TaggedSymbol
7891
7927
  )
7892
7928
 
7929
+ # FedNow Transfer Acknowledgement: details will be under the `fed_now_transfer_acknowledgement` object.
7930
+ FED_NOW_TRANSFER_ACKNOWLEDGEMENT =
7931
+ T.let(
7932
+ :fed_now_transfer_acknowledgement,
7933
+ Increase::Transaction::Source::Category::TaggedSymbol
7934
+ )
7935
+
7893
7936
  # Check Transfer Deposit: details will be under the `check_transfer_deposit` object.
7894
7937
  CHECK_TRANSFER_DEPOSIT =
7895
7938
  T.let(
@@ -8724,6 +8767,35 @@ module Increase
8724
8767
  end
8725
8768
  end
8726
8769
 
8770
+ class FedNowTransferAcknowledgement < Increase::Internal::Type::BaseModel
8771
+ OrHash =
8772
+ T.type_alias do
8773
+ T.any(
8774
+ Increase::Transaction::Source::FedNowTransferAcknowledgement,
8775
+ Increase::Internal::AnyHash
8776
+ )
8777
+ end
8778
+
8779
+ # The identifier of the FedNow Transfer that led to this Transaction.
8780
+ sig { returns(String) }
8781
+ attr_accessor :transfer_id
8782
+
8783
+ # A FedNow Transfer Acknowledgement object. This field will be present in the JSON
8784
+ # response if and only if `category` is equal to
8785
+ # `fed_now_transfer_acknowledgement`. A FedNow Transfer Acknowledgement is created
8786
+ # when a FedNow Transfer sent from Increase is acknowledged by the receiving bank.
8787
+ sig { params(transfer_id: String).returns(T.attached_class) }
8788
+ def self.new(
8789
+ # The identifier of the FedNow Transfer that led to this Transaction.
8790
+ transfer_id:
8791
+ )
8792
+ end
8793
+
8794
+ sig { override.returns({ transfer_id: String }) }
8795
+ def to_hash
8796
+ end
8797
+ end
8798
+
8727
8799
  class FeePayment < Increase::Internal::Type::BaseModel
8728
8800
  OrHash =
8729
8801
  T.type_alias do
@@ -257,6 +257,13 @@ module Increase
257
257
  Increase::TransactionListParams::Category::In::TaggedSymbol
258
258
  )
259
259
 
260
+ # FedNow Transfer Acknowledgement: details will be under the `fed_now_transfer_acknowledgement` object.
261
+ FED_NOW_TRANSFER_ACKNOWLEDGEMENT =
262
+ T.let(
263
+ :fed_now_transfer_acknowledgement,
264
+ Increase::TransactionListParams::Category::In::TaggedSymbol
265
+ )
266
+
260
267
  # Check Transfer Deposit: details will be under the `check_transfer_deposit` object.
261
268
  CHECK_TRANSFER_DEPOSIT =
262
269
  T.let(
@@ -142,6 +142,7 @@ module Increase
142
142
  category: Increase::Models::PendingTransaction::Source::category,
143
143
  check_deposit_instruction: Increase::PendingTransaction::Source::CheckDepositInstruction?,
144
144
  check_transfer_instruction: Increase::PendingTransaction::Source::CheckTransferInstruction?,
145
+ fed_now_transfer_instruction: Increase::PendingTransaction::Source::FedNowTransferInstruction?,
145
146
  inbound_funds_hold: Increase::PendingTransaction::Source::InboundFundsHold?,
146
147
  inbound_wire_transfer_reversal: Increase::PendingTransaction::Source::InboundWireTransferReversal?,
147
148
  other: top?,
@@ -166,6 +167,8 @@ module Increase
166
167
 
167
168
  attr_accessor check_transfer_instruction: Increase::PendingTransaction::Source::CheckTransferInstruction?
168
169
 
170
+ attr_accessor fed_now_transfer_instruction: Increase::PendingTransaction::Source::FedNowTransferInstruction?
171
+
169
172
  attr_accessor inbound_funds_hold: Increase::PendingTransaction::Source::InboundFundsHold?
170
173
 
171
174
  attr_accessor inbound_wire_transfer_reversal: Increase::PendingTransaction::Source::InboundWireTransferReversal?
@@ -188,6 +191,7 @@ module Increase
188
191
  category: Increase::Models::PendingTransaction::Source::category,
189
192
  check_deposit_instruction: Increase::PendingTransaction::Source::CheckDepositInstruction?,
190
193
  check_transfer_instruction: Increase::PendingTransaction::Source::CheckTransferInstruction?,
194
+ fed_now_transfer_instruction: Increase::PendingTransaction::Source::FedNowTransferInstruction?,
191
195
  inbound_funds_hold: Increase::PendingTransaction::Source::InboundFundsHold?,
192
196
  inbound_wire_transfer_reversal: Increase::PendingTransaction::Source::InboundWireTransferReversal?,
193
197
  other: top?,
@@ -205,6 +209,7 @@ module Increase
205
209
  category: Increase::Models::PendingTransaction::Source::category,
206
210
  check_deposit_instruction: Increase::PendingTransaction::Source::CheckDepositInstruction?,
207
211
  check_transfer_instruction: Increase::PendingTransaction::Source::CheckTransferInstruction?,
212
+ fed_now_transfer_instruction: Increase::PendingTransaction::Source::FedNowTransferInstruction?,
208
213
  inbound_funds_hold: Increase::PendingTransaction::Source::InboundFundsHold?,
209
214
  inbound_wire_transfer_reversal: Increase::PendingTransaction::Source::InboundWireTransferReversal?,
210
215
  other: top?,
@@ -1062,6 +1067,7 @@ module Increase
1062
1067
  | :card_authorization
1063
1068
  | :check_deposit_instruction
1064
1069
  | :check_transfer_instruction
1070
+ | :fed_now_transfer_instruction
1065
1071
  | :inbound_funds_hold
1066
1072
  | :user_initiated_hold
1067
1073
  | :real_time_payments_transfer_instruction
@@ -1089,6 +1095,9 @@ module Increase
1089
1095
  # Check Transfer Instruction: details will be under the `check_transfer_instruction` object.
1090
1096
  CHECK_TRANSFER_INSTRUCTION: :check_transfer_instruction
1091
1097
 
1098
+ # FedNow Transfer Instruction: details will be under the `fed_now_transfer_instruction` object.
1099
+ FED_NOW_TRANSFER_INSTRUCTION: :fed_now_transfer_instruction
1100
+
1092
1101
  # Inbound Funds Hold: details will be under the `inbound_funds_hold` object.
1093
1102
  INBOUND_FUNDS_HOLD: :inbound_funds_hold
1094
1103
 
@@ -1232,6 +1241,16 @@ module Increase
1232
1241
  end
1233
1242
  end
1234
1243
 
1244
+ type fed_now_transfer_instruction = { transfer_id: String }
1245
+
1246
+ class FedNowTransferInstruction < Increase::Internal::Type::BaseModel
1247
+ attr_accessor transfer_id: String
1248
+
1249
+ def initialize: (transfer_id: String) -> void
1250
+
1251
+ def to_hash: -> { transfer_id: String }
1252
+ end
1253
+
1235
1254
  type inbound_funds_hold =
1236
1255
  {
1237
1256
  amount: Integer,
@@ -98,6 +98,7 @@ module Increase
98
98
  | :card_authorization
99
99
  | :check_deposit_instruction
100
100
  | :check_transfer_instruction
101
+ | :fed_now_transfer_instruction
101
102
  | :inbound_funds_hold
102
103
  | :user_initiated_hold
103
104
  | :real_time_payments_transfer_instruction
@@ -125,6 +126,9 @@ module Increase
125
126
  # Check Transfer Instruction: details will be under the `check_transfer_instruction` object.
126
127
  CHECK_TRANSFER_INSTRUCTION: :check_transfer_instruction
127
128
 
129
+ # FedNow Transfer Instruction: details will be under the `fed_now_transfer_instruction` object.
130
+ FED_NOW_TRANSFER_INSTRUCTION: :fed_now_transfer_instruction
131
+
128
132
  # Inbound Funds Hold: details will be under the `inbound_funds_hold` object.
129
133
  INBOUND_FUNDS_HOLD: :inbound_funds_hold
130
134
 
@@ -123,6 +123,7 @@ module Increase
123
123
  check_deposit_acceptance: Increase::Transaction::Source::CheckDepositAcceptance?,
124
124
  check_deposit_return: Increase::Transaction::Source::CheckDepositReturn?,
125
125
  check_transfer_deposit: Increase::Transaction::Source::CheckTransferDeposit?,
126
+ fed_now_transfer_acknowledgement: Increase::Transaction::Source::FedNowTransferAcknowledgement?,
126
127
  fee_payment: Increase::Transaction::Source::FeePayment?,
127
128
  inbound_ach_transfer: Increase::Transaction::Source::InboundACHTransfer?,
128
129
  inbound_ach_transfer_return_intention: Increase::Transaction::Source::InboundACHTransferReturnIntention?,
@@ -177,6 +178,8 @@ module Increase
177
178
 
178
179
  attr_accessor check_transfer_deposit: Increase::Transaction::Source::CheckTransferDeposit?
179
180
 
181
+ attr_accessor fed_now_transfer_acknowledgement: Increase::Transaction::Source::FedNowTransferAcknowledgement?
182
+
180
183
  attr_accessor fee_payment: Increase::Transaction::Source::FeePayment?
181
184
 
182
185
  attr_accessor inbound_ach_transfer: Increase::Transaction::Source::InboundACHTransfer?
@@ -229,6 +232,7 @@ module Increase
229
232
  check_deposit_acceptance: Increase::Transaction::Source::CheckDepositAcceptance?,
230
233
  check_deposit_return: Increase::Transaction::Source::CheckDepositReturn?,
231
234
  check_transfer_deposit: Increase::Transaction::Source::CheckTransferDeposit?,
235
+ fed_now_transfer_acknowledgement: Increase::Transaction::Source::FedNowTransferAcknowledgement?,
232
236
  fee_payment: Increase::Transaction::Source::FeePayment?,
233
237
  inbound_ach_transfer: Increase::Transaction::Source::InboundACHTransfer?,
234
238
  inbound_ach_transfer_return_intention: Increase::Transaction::Source::InboundACHTransferReturnIntention?,
@@ -266,6 +270,7 @@ module Increase
266
270
  check_deposit_acceptance: Increase::Transaction::Source::CheckDepositAcceptance?,
267
271
  check_deposit_return: Increase::Transaction::Source::CheckDepositReturn?,
268
272
  check_transfer_deposit: Increase::Transaction::Source::CheckTransferDeposit?,
273
+ fed_now_transfer_acknowledgement: Increase::Transaction::Source::FedNowTransferAcknowledgement?,
269
274
  fee_payment: Increase::Transaction::Source::FeePayment?,
270
275
  inbound_ach_transfer: Increase::Transaction::Source::InboundACHTransfer?,
271
276
  inbound_ach_transfer_return_intention: Increase::Transaction::Source::InboundACHTransferReturnIntention?,
@@ -3144,6 +3149,7 @@ module Increase
3144
3149
  | :card_revenue_payment
3145
3150
  | :check_deposit_acceptance
3146
3151
  | :check_deposit_return
3152
+ | :fed_now_transfer_acknowledgement
3147
3153
  | :check_transfer_deposit
3148
3154
  | :fee_payment
3149
3155
  | :inbound_ach_transfer
@@ -3207,6 +3213,9 @@ module Increase
3207
3213
  # Check Deposit Return: details will be under the `check_deposit_return` object.
3208
3214
  CHECK_DEPOSIT_RETURN: :check_deposit_return
3209
3215
 
3216
+ # FedNow Transfer Acknowledgement: details will be under the `fed_now_transfer_acknowledgement` object.
3217
+ FED_NOW_TRANSFER_ACKNOWLEDGEMENT: :fed_now_transfer_acknowledgement
3218
+
3210
3219
  # Check Transfer Deposit: details will be under the `check_transfer_deposit` object.
3211
3220
  CHECK_TRANSFER_DEPOSIT: :check_transfer_deposit
3212
3221
 
@@ -3585,6 +3594,16 @@ module Increase
3585
3594
  end
3586
3595
  end
3587
3596
 
3597
+ type fed_now_transfer_acknowledgement = { transfer_id: String }
3598
+
3599
+ class FedNowTransferAcknowledgement < Increase::Internal::Type::BaseModel
3600
+ attr_accessor transfer_id: String
3601
+
3602
+ def initialize: (transfer_id: String) -> void
3603
+
3604
+ def to_hash: -> { transfer_id: String }
3605
+ end
3606
+
3588
3607
  type fee_payment =
3589
3608
  {
3590
3609
  amount: Integer,
@@ -95,6 +95,7 @@ module Increase
95
95
  | :card_revenue_payment
96
96
  | :check_deposit_acceptance
97
97
  | :check_deposit_return
98
+ | :fed_now_transfer_acknowledgement
98
99
  | :check_transfer_deposit
99
100
  | :fee_payment
100
101
  | :inbound_ach_transfer
@@ -158,6 +159,9 @@ module Increase
158
159
  # Check Deposit Return: details will be under the `check_deposit_return` object.
159
160
  CHECK_DEPOSIT_RETURN: :check_deposit_return
160
161
 
162
+ # FedNow Transfer Acknowledgement: details will be under the `fed_now_transfer_acknowledgement` object.
163
+ FED_NOW_TRANSFER_ACKNOWLEDGEMENT: :fed_now_transfer_acknowledgement
164
+
161
165
  # Check Transfer Deposit: details will be under the `check_transfer_deposit` object.
162
166
  CHECK_TRANSFER_DEPOSIT: :check_transfer_deposit
163
167
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.74.0
4
+ version: 1.75.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase