increase 1.73.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 +4 -4
- data/CHANGELOG.md +16 -0
- data/README.md +1 -1
- data/lib/increase/models/pending_transaction.rb +30 -1
- data/lib/increase/models/pending_transaction_list_params.rb +3 -0
- data/lib/increase/models/real_time_decision_action_params.rb +1 -44
- data/lib/increase/models/transaction.rb +34 -1
- data/lib/increase/models/transaction_list_params.rb +3 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/pending_transaction.rbi +66 -0
- data/rbi/increase/models/pending_transaction_list_params.rbi +7 -0
- data/rbi/increase/models/real_time_decision_action_params.rbi +3 -102
- data/rbi/increase/models/transaction.rbi +72 -0
- data/rbi/increase/models/transaction_list_params.rbi +7 -0
- data/sig/increase/models/pending_transaction.rbs +19 -0
- data/sig/increase/models/pending_transaction_list_params.rbs +4 -0
- data/sig/increase/models/real_time_decision_action_params.rbs +3 -44
- data/sig/increase/models/transaction.rbs +19 -0
- data/sig/increase/models/transaction_list_params.rbs +4 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: baf2b72dbcaf86691a64468f68997ec9a66c140283eb57431e50149917d6307e
|
4
|
+
data.tar.gz: 9e190d36936a97a560bd921cbd78c71bfa5bb242b93560328976735dd95a25ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e2c10c828ffc0fa1815b8451f52f3bbd0a2cd8e71261495c79598e531072dede4872d394cde33016a48ff4b14e90ec6ee0514288a33cff366bfbb00410eb839
|
7
|
+
data.tar.gz: 6b2de401f44e9e6d4ae90941a53d9bfe40116a6ce0ff255339df363f44180950de26c5ba8efc4cb2cb3ce645321a5fbb63949e8b881970561faccf165e8ef48e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
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
|
+
|
11
|
+
## 1.74.0 (2025-09-12)
|
12
|
+
|
13
|
+
Full Changelog: [v1.73.0...v1.74.0](https://github.com/Increase/increase-ruby/compare/v1.73.0...v1.74.0)
|
14
|
+
|
15
|
+
### Features
|
16
|
+
|
17
|
+
* **api:** api update ([a039096](https://github.com/Increase/increase-ruby/commit/a039096e79751ab557fae350119599801bcebb1c))
|
18
|
+
|
3
19
|
## 1.73.0 (2025-09-09)
|
4
20
|
|
5
21
|
Full Changelog: [v1.72.0...v1.73.0](https://github.com/Increase/increase-ruby/compare/v1.72.0...v1.73.0)
|
data/README.md
CHANGED
@@ -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
|
|
@@ -152,17 +152,7 @@ module Increase
|
|
152
152
|
# @return [Increase::Models::RealTimeDecisionActionParams::CardAuthorization::Decline, nil]
|
153
153
|
optional :decline, -> { Increase::RealTimeDecisionActionParams::CardAuthorization::Decline }
|
154
154
|
|
155
|
-
# @!
|
156
|
-
# The reason the card authorization was declined. This translates to a specific
|
157
|
-
# decline code that is sent to the card network. This field is deprecated, please
|
158
|
-
# transition to using the `decline` object as this field will be removed in a
|
159
|
-
# future release.
|
160
|
-
#
|
161
|
-
# @return [Symbol, Increase::Models::RealTimeDecisionActionParams::CardAuthorization::DeclineReason, nil]
|
162
|
-
optional :decline_reason,
|
163
|
-
enum: -> { Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason }
|
164
|
-
|
165
|
-
# @!method initialize(decision:, approval: nil, decline: nil, decline_reason: nil)
|
155
|
+
# @!method initialize(decision:, approval: nil, decline: nil)
|
166
156
|
# Some parameter documentations has been truncated, see
|
167
157
|
# {Increase::Models::RealTimeDecisionActionParams::CardAuthorization} for more
|
168
158
|
# details.
|
@@ -175,8 +165,6 @@ module Increase
|
|
175
165
|
# @param approval [Increase::Models::RealTimeDecisionActionParams::CardAuthorization::Approval] If your application approves the authorization, this contains metadata about you
|
176
166
|
#
|
177
167
|
# @param decline [Increase::Models::RealTimeDecisionActionParams::CardAuthorization::Decline] If your application declines the authorization, this contains details about the
|
178
|
-
#
|
179
|
-
# @param decline_reason [Symbol, Increase::Models::RealTimeDecisionActionParams::CardAuthorization::DeclineReason] The reason the card authorization was declined. This translates to a specific de
|
180
168
|
|
181
169
|
# Whether the card authorization should be approved or declined.
|
182
170
|
#
|
@@ -340,37 +328,6 @@ module Increase
|
|
340
328
|
# @return [Array<Symbol>]
|
341
329
|
end
|
342
330
|
end
|
343
|
-
|
344
|
-
# The reason the card authorization was declined. This translates to a specific
|
345
|
-
# decline code that is sent to the card network. This field is deprecated, please
|
346
|
-
# transition to using the `decline` object as this field will be removed in a
|
347
|
-
# future release.
|
348
|
-
#
|
349
|
-
# @see Increase::Models::RealTimeDecisionActionParams::CardAuthorization#decline_reason
|
350
|
-
module DeclineReason
|
351
|
-
extend Increase::Internal::Type::Enum
|
352
|
-
|
353
|
-
# The cardholder does not have sufficient funds to cover the transaction. The merchant may attempt to process the transaction again.
|
354
|
-
INSUFFICIENT_FUNDS = :insufficient_funds
|
355
|
-
|
356
|
-
# This type of transaction is not allowed for this card. This transaction should not be retried.
|
357
|
-
TRANSACTION_NEVER_ALLOWED = :transaction_never_allowed
|
358
|
-
|
359
|
-
# The transaction amount exceeds the cardholder's approval limit. The merchant may attempt to process the transaction again.
|
360
|
-
EXCEEDS_APPROVAL_LIMIT = :exceeds_approval_limit
|
361
|
-
|
362
|
-
# The card has been temporarily disabled or not yet activated. The merchant may attempt to process the transaction again.
|
363
|
-
CARD_TEMPORARILY_DISABLED = :card_temporarily_disabled
|
364
|
-
|
365
|
-
# The transaction is suspected to be fraudulent. The merchant may attempt to process the transaction again.
|
366
|
-
SUSPECTED_FRAUD = :suspected_fraud
|
367
|
-
|
368
|
-
# The transaction was declined for another reason. The merchant may attempt to process the transaction again. This should be used sparingly.
|
369
|
-
OTHER = :other
|
370
|
-
|
371
|
-
# @!method self.values
|
372
|
-
# @return [Array<Symbol>]
|
373
|
-
end
|
374
331
|
end
|
375
332
|
|
376
333
|
class DigitalWalletAuthentication < Increase::Internal::Type::BaseModel
|
@@ -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
|
|
data/lib/increase/version.rb
CHANGED
@@ -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(
|
@@ -387,27 +387,6 @@ module Increase
|
|
387
387
|
end
|
388
388
|
attr_writer :decline
|
389
389
|
|
390
|
-
# The reason the card authorization was declined. This translates to a specific
|
391
|
-
# decline code that is sent to the card network. This field is deprecated, please
|
392
|
-
# transition to using the `decline` object as this field will be removed in a
|
393
|
-
# future release.
|
394
|
-
sig do
|
395
|
-
returns(
|
396
|
-
T.nilable(
|
397
|
-
Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::OrSymbol
|
398
|
-
)
|
399
|
-
)
|
400
|
-
end
|
401
|
-
attr_reader :decline_reason
|
402
|
-
|
403
|
-
sig do
|
404
|
-
params(
|
405
|
-
decline_reason:
|
406
|
-
Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::OrSymbol
|
407
|
-
).void
|
408
|
-
end
|
409
|
-
attr_writer :decline_reason
|
410
|
-
|
411
390
|
# If the Real-Time Decision relates to a card authorization attempt, this object
|
412
391
|
# contains your response to the authorization.
|
413
392
|
sig do
|
@@ -417,9 +396,7 @@ module Increase
|
|
417
396
|
approval:
|
418
397
|
Increase::RealTimeDecisionActionParams::CardAuthorization::Approval::OrHash,
|
419
398
|
decline:
|
420
|
-
Increase::RealTimeDecisionActionParams::CardAuthorization::Decline::OrHash
|
421
|
-
decline_reason:
|
422
|
-
Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::OrSymbol
|
399
|
+
Increase::RealTimeDecisionActionParams::CardAuthorization::Decline::OrHash
|
423
400
|
).returns(T.attached_class)
|
424
401
|
end
|
425
402
|
def self.new(
|
@@ -432,12 +409,7 @@ module Increase
|
|
432
409
|
approval: nil,
|
433
410
|
# If your application declines the authorization, this contains details about the
|
434
411
|
# decline.
|
435
|
-
decline: nil
|
436
|
-
# The reason the card authorization was declined. This translates to a specific
|
437
|
-
# decline code that is sent to the card network. This field is deprecated, please
|
438
|
-
# transition to using the `decline` object as this field will be removed in a
|
439
|
-
# future release.
|
440
|
-
decline_reason: nil
|
412
|
+
decline: nil
|
441
413
|
)
|
442
414
|
end
|
443
415
|
|
@@ -449,9 +421,7 @@ module Increase
|
|
449
421
|
approval:
|
450
422
|
Increase::RealTimeDecisionActionParams::CardAuthorization::Approval,
|
451
423
|
decline:
|
452
|
-
Increase::RealTimeDecisionActionParams::CardAuthorization::Decline
|
453
|
-
decline_reason:
|
454
|
-
Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::OrSymbol
|
424
|
+
Increase::RealTimeDecisionActionParams::CardAuthorization::Decline
|
455
425
|
}
|
456
426
|
)
|
457
427
|
end
|
@@ -824,75 +794,6 @@ module Increase
|
|
824
794
|
end
|
825
795
|
end
|
826
796
|
end
|
827
|
-
|
828
|
-
# The reason the card authorization was declined. This translates to a specific
|
829
|
-
# decline code that is sent to the card network. This field is deprecated, please
|
830
|
-
# transition to using the `decline` object as this field will be removed in a
|
831
|
-
# future release.
|
832
|
-
module DeclineReason
|
833
|
-
extend Increase::Internal::Type::Enum
|
834
|
-
|
835
|
-
TaggedSymbol =
|
836
|
-
T.type_alias do
|
837
|
-
T.all(
|
838
|
-
Symbol,
|
839
|
-
Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason
|
840
|
-
)
|
841
|
-
end
|
842
|
-
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
843
|
-
|
844
|
-
# The cardholder does not have sufficient funds to cover the transaction. The merchant may attempt to process the transaction again.
|
845
|
-
INSUFFICIENT_FUNDS =
|
846
|
-
T.let(
|
847
|
-
:insufficient_funds,
|
848
|
-
Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::TaggedSymbol
|
849
|
-
)
|
850
|
-
|
851
|
-
# This type of transaction is not allowed for this card. This transaction should not be retried.
|
852
|
-
TRANSACTION_NEVER_ALLOWED =
|
853
|
-
T.let(
|
854
|
-
:transaction_never_allowed,
|
855
|
-
Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::TaggedSymbol
|
856
|
-
)
|
857
|
-
|
858
|
-
# The transaction amount exceeds the cardholder's approval limit. The merchant may attempt to process the transaction again.
|
859
|
-
EXCEEDS_APPROVAL_LIMIT =
|
860
|
-
T.let(
|
861
|
-
:exceeds_approval_limit,
|
862
|
-
Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::TaggedSymbol
|
863
|
-
)
|
864
|
-
|
865
|
-
# The card has been temporarily disabled or not yet activated. The merchant may attempt to process the transaction again.
|
866
|
-
CARD_TEMPORARILY_DISABLED =
|
867
|
-
T.let(
|
868
|
-
:card_temporarily_disabled,
|
869
|
-
Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::TaggedSymbol
|
870
|
-
)
|
871
|
-
|
872
|
-
# The transaction is suspected to be fraudulent. The merchant may attempt to process the transaction again.
|
873
|
-
SUSPECTED_FRAUD =
|
874
|
-
T.let(
|
875
|
-
:suspected_fraud,
|
876
|
-
Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::TaggedSymbol
|
877
|
-
)
|
878
|
-
|
879
|
-
# The transaction was declined for another reason. The merchant may attempt to process the transaction again. This should be used sparingly.
|
880
|
-
OTHER =
|
881
|
-
T.let(
|
882
|
-
:other,
|
883
|
-
Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::TaggedSymbol
|
884
|
-
)
|
885
|
-
|
886
|
-
sig do
|
887
|
-
override.returns(
|
888
|
-
T::Array[
|
889
|
-
Increase::RealTimeDecisionActionParams::CardAuthorization::DeclineReason::TaggedSymbol
|
890
|
-
]
|
891
|
-
)
|
892
|
-
end
|
893
|
-
def self.values
|
894
|
-
end
|
895
|
-
end
|
896
797
|
end
|
897
798
|
|
898
799
|
class DigitalWalletAuthentication < Increase::Internal::Type::BaseModel
|
@@ -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
|
|
@@ -131,8 +131,7 @@ module Increase
|
|
131
131
|
{
|
132
132
|
decision: Increase::Models::RealTimeDecisionActionParams::CardAuthorization::decision,
|
133
133
|
approval: Increase::RealTimeDecisionActionParams::CardAuthorization::Approval,
|
134
|
-
decline: Increase::RealTimeDecisionActionParams::CardAuthorization::Decline
|
135
|
-
decline_reason: Increase::Models::RealTimeDecisionActionParams::CardAuthorization::decline_reason
|
134
|
+
decline: Increase::RealTimeDecisionActionParams::CardAuthorization::Decline
|
136
135
|
}
|
137
136
|
|
138
137
|
class CardAuthorization < Increase::Internal::Type::BaseModel
|
@@ -150,24 +149,16 @@ module Increase
|
|
150
149
|
Increase::RealTimeDecisionActionParams::CardAuthorization::Decline
|
151
150
|
) -> Increase::RealTimeDecisionActionParams::CardAuthorization::Decline
|
152
151
|
|
153
|
-
attr_reader decline_reason: Increase::Models::RealTimeDecisionActionParams::CardAuthorization::decline_reason?
|
154
|
-
|
155
|
-
def decline_reason=: (
|
156
|
-
Increase::Models::RealTimeDecisionActionParams::CardAuthorization::decline_reason
|
157
|
-
) -> Increase::Models::RealTimeDecisionActionParams::CardAuthorization::decline_reason
|
158
|
-
|
159
152
|
def initialize: (
|
160
153
|
decision: Increase::Models::RealTimeDecisionActionParams::CardAuthorization::decision,
|
161
154
|
?approval: Increase::RealTimeDecisionActionParams::CardAuthorization::Approval,
|
162
|
-
?decline: Increase::RealTimeDecisionActionParams::CardAuthorization::Decline
|
163
|
-
?decline_reason: Increase::Models::RealTimeDecisionActionParams::CardAuthorization::decline_reason
|
155
|
+
?decline: Increase::RealTimeDecisionActionParams::CardAuthorization::Decline
|
164
156
|
) -> void
|
165
157
|
|
166
158
|
def to_hash: -> {
|
167
159
|
decision: Increase::Models::RealTimeDecisionActionParams::CardAuthorization::decision,
|
168
160
|
approval: Increase::RealTimeDecisionActionParams::CardAuthorization::Approval,
|
169
|
-
decline: Increase::RealTimeDecisionActionParams::CardAuthorization::Decline
|
170
|
-
decline_reason: Increase::Models::RealTimeDecisionActionParams::CardAuthorization::decline_reason
|
161
|
+
decline: Increase::RealTimeDecisionActionParams::CardAuthorization::Decline
|
171
162
|
}
|
172
163
|
|
173
164
|
type decision = :approve | :decline
|
@@ -303,38 +294,6 @@ module Increase
|
|
303
294
|
def self?.values: -> ::Array[Increase::Models::RealTimeDecisionActionParams::CardAuthorization::Decline::reason]
|
304
295
|
end
|
305
296
|
end
|
306
|
-
|
307
|
-
type decline_reason =
|
308
|
-
:insufficient_funds
|
309
|
-
| :transaction_never_allowed
|
310
|
-
| :exceeds_approval_limit
|
311
|
-
| :card_temporarily_disabled
|
312
|
-
| :suspected_fraud
|
313
|
-
| :other
|
314
|
-
|
315
|
-
module DeclineReason
|
316
|
-
extend Increase::Internal::Type::Enum
|
317
|
-
|
318
|
-
# The cardholder does not have sufficient funds to cover the transaction. The merchant may attempt to process the transaction again.
|
319
|
-
INSUFFICIENT_FUNDS: :insufficient_funds
|
320
|
-
|
321
|
-
# This type of transaction is not allowed for this card. This transaction should not be retried.
|
322
|
-
TRANSACTION_NEVER_ALLOWED: :transaction_never_allowed
|
323
|
-
|
324
|
-
# The transaction amount exceeds the cardholder's approval limit. The merchant may attempt to process the transaction again.
|
325
|
-
EXCEEDS_APPROVAL_LIMIT: :exceeds_approval_limit
|
326
|
-
|
327
|
-
# The card has been temporarily disabled or not yet activated. The merchant may attempt to process the transaction again.
|
328
|
-
CARD_TEMPORARILY_DISABLED: :card_temporarily_disabled
|
329
|
-
|
330
|
-
# The transaction is suspected to be fraudulent. The merchant may attempt to process the transaction again.
|
331
|
-
SUSPECTED_FRAUD: :suspected_fraud
|
332
|
-
|
333
|
-
# The transaction was declined for another reason. The merchant may attempt to process the transaction again. This should be used sparingly.
|
334
|
-
OTHER: :other
|
335
|
-
|
336
|
-
def self?.values: -> ::Array[Increase::Models::RealTimeDecisionActionParams::CardAuthorization::decline_reason]
|
337
|
-
end
|
338
297
|
end
|
339
298
|
|
340
299
|
type digital_wallet_authentication =
|
@@ -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,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: increase
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.75.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-
|
11
|
+
date: 2025-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|