increase 1.130.0 → 1.132.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.
Files changed (62) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +16 -0
  3. data/README.md +1 -1
  4. data/lib/increase/models/account.rb +0 -15
  5. data/lib/increase/models/account_transfer.rb +0 -15
  6. data/lib/increase/models/ach_transfer.rb +0 -30
  7. data/lib/increase/models/card_payment.rb +0 -210
  8. data/lib/increase/models/card_push_transfer.rb +0 -15
  9. data/lib/increase/models/check_deposit.rb +0 -60
  10. data/lib/increase/models/check_transfer.rb +11 -16
  11. data/lib/increase/models/check_transfer_create_params.rb +11 -1
  12. data/lib/increase/models/declined_transaction.rb +0 -60
  13. data/lib/increase/models/fednow_transfer.rb +0 -15
  14. data/lib/increase/models/inbound_check_deposit.rb +0 -15
  15. data/lib/increase/models/inbound_fednow_transfer.rb +0 -15
  16. data/lib/increase/models/inbound_real_time_payments_transfer.rb +0 -15
  17. data/lib/increase/models/intrafi_balance.rb +0 -15
  18. data/lib/increase/models/pending_transaction.rb +0 -90
  19. data/lib/increase/models/real_time_payments_transfer.rb +0 -15
  20. data/lib/increase/models/transaction.rb +0 -255
  21. data/lib/increase/models/wire_transfer.rb +0 -15
  22. data/lib/increase/resources/check_transfers.rb +3 -1
  23. data/lib/increase/version.rb +1 -1
  24. data/rbi/increase/models/account.rbi +0 -15
  25. data/rbi/increase/models/account_transfer.rbi +0 -15
  26. data/rbi/increase/models/ach_transfer.rbi +0 -50
  27. data/rbi/increase/models/card_payment.rbi +0 -490
  28. data/rbi/increase/models/card_push_transfer.rbi +0 -15
  29. data/rbi/increase/models/check_deposit.rbi +0 -140
  30. data/rbi/increase/models/check_transfer.rbi +15 -18
  31. data/rbi/increase/models/check_transfer_create_params.rbi +15 -0
  32. data/rbi/increase/models/declined_transaction.rbi +0 -120
  33. data/rbi/increase/models/fednow_transfer.rbi +0 -15
  34. data/rbi/increase/models/inbound_check_deposit.rbi +0 -15
  35. data/rbi/increase/models/inbound_fednow_transfer.rbi +0 -20
  36. data/rbi/increase/models/inbound_real_time_payments_transfer.rbi +0 -35
  37. data/rbi/increase/models/intrafi_balance.rbi +0 -15
  38. data/rbi/increase/models/pending_transaction.rbi +0 -190
  39. data/rbi/increase/models/real_time_payments_transfer.rbi +0 -35
  40. data/rbi/increase/models/transaction.rbi +0 -575
  41. data/rbi/increase/models/wire_transfer.rbi +0 -15
  42. data/rbi/increase/resources/check_transfers.rbi +5 -0
  43. data/sig/increase/models/account.rbs +1 -16
  44. data/sig/increase/models/account_transfer.rbs +1 -16
  45. data/sig/increase/models/ach_transfer.rbs +2 -32
  46. data/sig/increase/models/card_payment.rbs +14 -224
  47. data/sig/increase/models/card_push_transfer.rbs +1 -16
  48. data/sig/increase/models/check_deposit.rbs +4 -64
  49. data/sig/increase/models/check_transfer.rbs +9 -19
  50. data/sig/increase/models/check_transfer_create_params.rbs +8 -1
  51. data/sig/increase/models/declined_transaction.rbs +4 -64
  52. data/sig/increase/models/fednow_transfer.rbs +1 -16
  53. data/sig/increase/models/inbound_check_deposit.rbs +1 -16
  54. data/sig/increase/models/inbound_fednow_transfer.rbs +1 -16
  55. data/sig/increase/models/inbound_real_time_payments_transfer.rbs +1 -16
  56. data/sig/increase/models/intrafi_balance.rbs +1 -16
  57. data/sig/increase/models/pending_transaction.rbs +6 -96
  58. data/sig/increase/models/real_time_payments_transfer.rbs +1 -16
  59. data/sig/increase/models/transaction.rbs +17 -272
  60. data/sig/increase/models/wire_transfer.rbs +1 -16
  61. data/sig/increase/resources/check_transfers.rbs +1 -0
  62. metadata +2 -2
@@ -180,21 +180,6 @@ module Increase
180
180
  T.type_alias { T.all(Symbol, Increase::PendingTransaction::Currency) }
181
181
  OrSymbol = T.type_alias { T.any(Symbol, String) }
182
182
 
183
- # Canadian Dollar (CAD)
184
- CAD = T.let(:CAD, Increase::PendingTransaction::Currency::TaggedSymbol)
185
-
186
- # Swiss Franc (CHF)
187
- CHF = T.let(:CHF, Increase::PendingTransaction::Currency::TaggedSymbol)
188
-
189
- # Euro (EUR)
190
- EUR = T.let(:EUR, Increase::PendingTransaction::Currency::TaggedSymbol)
191
-
192
- # British Pound (GBP)
193
- GBP = T.let(:GBP, Increase::PendingTransaction::Currency::TaggedSymbol)
194
-
195
- # Japanese Yen (JPY)
196
- JPY = T.let(:JPY, Increase::PendingTransaction::Currency::TaggedSymbol)
197
-
198
183
  # US Dollar (USD)
199
184
  USD = T.let(:USD, Increase::PendingTransaction::Currency::TaggedSymbol)
200
185
 
@@ -784,41 +769,6 @@ module Increase
784
769
  end
785
770
  OrSymbol = T.type_alias { T.any(Symbol, String) }
786
771
 
787
- # Canadian Dollar (CAD)
788
- CAD =
789
- T.let(
790
- :CAD,
791
- Increase::PendingTransaction::Source::AccountTransferInstruction::Currency::TaggedSymbol
792
- )
793
-
794
- # Swiss Franc (CHF)
795
- CHF =
796
- T.let(
797
- :CHF,
798
- Increase::PendingTransaction::Source::AccountTransferInstruction::Currency::TaggedSymbol
799
- )
800
-
801
- # Euro (EUR)
802
- EUR =
803
- T.let(
804
- :EUR,
805
- Increase::PendingTransaction::Source::AccountTransferInstruction::Currency::TaggedSymbol
806
- )
807
-
808
- # British Pound (GBP)
809
- GBP =
810
- T.let(
811
- :GBP,
812
- Increase::PendingTransaction::Source::AccountTransferInstruction::Currency::TaggedSymbol
813
- )
814
-
815
- # Japanese Yen (JPY)
816
- JPY =
817
- T.let(
818
- :JPY,
819
- Increase::PendingTransaction::Source::AccountTransferInstruction::Currency::TaggedSymbol
820
- )
821
-
822
772
  # US Dollar (USD)
823
773
  USD =
824
774
  T.let(
@@ -2063,41 +2013,6 @@ module Increase
2063
2013
  end
2064
2014
  OrSymbol = T.type_alias { T.any(Symbol, String) }
2065
2015
 
2066
- # Canadian Dollar (CAD)
2067
- CAD =
2068
- T.let(
2069
- :CAD,
2070
- Increase::PendingTransaction::Source::CardAuthorization::Currency::TaggedSymbol
2071
- )
2072
-
2073
- # Swiss Franc (CHF)
2074
- CHF =
2075
- T.let(
2076
- :CHF,
2077
- Increase::PendingTransaction::Source::CardAuthorization::Currency::TaggedSymbol
2078
- )
2079
-
2080
- # Euro (EUR)
2081
- EUR =
2082
- T.let(
2083
- :EUR,
2084
- Increase::PendingTransaction::Source::CardAuthorization::Currency::TaggedSymbol
2085
- )
2086
-
2087
- # British Pound (GBP)
2088
- GBP =
2089
- T.let(
2090
- :GBP,
2091
- Increase::PendingTransaction::Source::CardAuthorization::Currency::TaggedSymbol
2092
- )
2093
-
2094
- # Japanese Yen (JPY)
2095
- JPY =
2096
- T.let(
2097
- :JPY,
2098
- Increase::PendingTransaction::Source::CardAuthorization::Currency::TaggedSymbol
2099
- )
2100
-
2101
2016
  # US Dollar (USD)
2102
2017
  USD =
2103
2018
  T.let(
@@ -3409,41 +3324,6 @@ module Increase
3409
3324
  end
3410
3325
  OrSymbol = T.type_alias { T.any(Symbol, String) }
3411
3326
 
3412
- # Canadian Dollar (CAD)
3413
- CAD =
3414
- T.let(
3415
- :CAD,
3416
- Increase::PendingTransaction::Source::CheckDepositInstruction::Currency::TaggedSymbol
3417
- )
3418
-
3419
- # Swiss Franc (CHF)
3420
- CHF =
3421
- T.let(
3422
- :CHF,
3423
- Increase::PendingTransaction::Source::CheckDepositInstruction::Currency::TaggedSymbol
3424
- )
3425
-
3426
- # Euro (EUR)
3427
- EUR =
3428
- T.let(
3429
- :EUR,
3430
- Increase::PendingTransaction::Source::CheckDepositInstruction::Currency::TaggedSymbol
3431
- )
3432
-
3433
- # British Pound (GBP)
3434
- GBP =
3435
- T.let(
3436
- :GBP,
3437
- Increase::PendingTransaction::Source::CheckDepositInstruction::Currency::TaggedSymbol
3438
- )
3439
-
3440
- # Japanese Yen (JPY)
3441
- JPY =
3442
- T.let(
3443
- :JPY,
3444
- Increase::PendingTransaction::Source::CheckDepositInstruction::Currency::TaggedSymbol
3445
- )
3446
-
3447
3327
  # US Dollar (USD)
3448
3328
  USD =
3449
3329
  T.let(
@@ -3537,41 +3417,6 @@ module Increase
3537
3417
  end
3538
3418
  OrSymbol = T.type_alias { T.any(Symbol, String) }
3539
3419
 
3540
- # Canadian Dollar (CAD)
3541
- CAD =
3542
- T.let(
3543
- :CAD,
3544
- Increase::PendingTransaction::Source::CheckTransferInstruction::Currency::TaggedSymbol
3545
- )
3546
-
3547
- # Swiss Franc (CHF)
3548
- CHF =
3549
- T.let(
3550
- :CHF,
3551
- Increase::PendingTransaction::Source::CheckTransferInstruction::Currency::TaggedSymbol
3552
- )
3553
-
3554
- # Euro (EUR)
3555
- EUR =
3556
- T.let(
3557
- :EUR,
3558
- Increase::PendingTransaction::Source::CheckTransferInstruction::Currency::TaggedSymbol
3559
- )
3560
-
3561
- # British Pound (GBP)
3562
- GBP =
3563
- T.let(
3564
- :GBP,
3565
- Increase::PendingTransaction::Source::CheckTransferInstruction::Currency::TaggedSymbol
3566
- )
3567
-
3568
- # Japanese Yen (JPY)
3569
- JPY =
3570
- T.let(
3571
- :JPY,
3572
- Increase::PendingTransaction::Source::CheckTransferInstruction::Currency::TaggedSymbol
3573
- )
3574
-
3575
3420
  # US Dollar (USD)
3576
3421
  USD =
3577
3422
  T.let(
@@ -3762,41 +3607,6 @@ module Increase
3762
3607
  end
3763
3608
  OrSymbol = T.type_alias { T.any(Symbol, String) }
3764
3609
 
3765
- # Canadian Dollar (CAD)
3766
- CAD =
3767
- T.let(
3768
- :CAD,
3769
- Increase::PendingTransaction::Source::InboundFundsHold::Currency::TaggedSymbol
3770
- )
3771
-
3772
- # Swiss Franc (CHF)
3773
- CHF =
3774
- T.let(
3775
- :CHF,
3776
- Increase::PendingTransaction::Source::InboundFundsHold::Currency::TaggedSymbol
3777
- )
3778
-
3779
- # Euro (EUR)
3780
- EUR =
3781
- T.let(
3782
- :EUR,
3783
- Increase::PendingTransaction::Source::InboundFundsHold::Currency::TaggedSymbol
3784
- )
3785
-
3786
- # British Pound (GBP)
3787
- GBP =
3788
- T.let(
3789
- :GBP,
3790
- Increase::PendingTransaction::Source::InboundFundsHold::Currency::TaggedSymbol
3791
- )
3792
-
3793
- # Japanese Yen (JPY)
3794
- JPY =
3795
- T.let(
3796
- :JPY,
3797
- Increase::PendingTransaction::Source::InboundFundsHold::Currency::TaggedSymbol
3798
- )
3799
-
3800
3610
  # US Dollar (USD)
3801
3611
  USD =
3802
3612
  T.let(
@@ -711,41 +711,6 @@ module Increase
711
711
  end
712
712
  OrSymbol = T.type_alias { T.any(Symbol, String) }
713
713
 
714
- # Canadian Dollar (CAD)
715
- CAD =
716
- T.let(
717
- :CAD,
718
- Increase::RealTimePaymentsTransfer::Currency::TaggedSymbol
719
- )
720
-
721
- # Swiss Franc (CHF)
722
- CHF =
723
- T.let(
724
- :CHF,
725
- Increase::RealTimePaymentsTransfer::Currency::TaggedSymbol
726
- )
727
-
728
- # Euro (EUR)
729
- EUR =
730
- T.let(
731
- :EUR,
732
- Increase::RealTimePaymentsTransfer::Currency::TaggedSymbol
733
- )
734
-
735
- # British Pound (GBP)
736
- GBP =
737
- T.let(
738
- :GBP,
739
- Increase::RealTimePaymentsTransfer::Currency::TaggedSymbol
740
- )
741
-
742
- # Japanese Yen (JPY)
743
- JPY =
744
- T.let(
745
- :JPY,
746
- Increase::RealTimePaymentsTransfer::Currency::TaggedSymbol
747
- )
748
-
749
714
  # US Dollar (USD)
750
715
  USD =
751
716
  T.let(