increase 1.333.1 → 1.335.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 +21 -0
- data/README.md +26 -5
- data/lib/increase/models/ach_prenotification.rb +5 -2
- data/lib/increase/models/ach_prenotification_create_params.rb +2 -2
- data/lib/increase/models/ach_transfer.rb +9 -3
- data/lib/increase/models/ach_transfer_create_params.rb +3 -0
- data/lib/increase/models/card.rb +9 -1
- data/lib/increase/models/card_dispute.rb +40 -1
- data/lib/increase/models/card_dispute_list_params.rb +3 -0
- data/lib/increase/models/card_payment.rb +74 -6
- data/lib/increase/models/card_push_transfer.rb +53 -1
- data/lib/increase/models/check_transfer.rb +4 -8
- data/lib/increase/models/declined_transaction.rb +4 -1
- data/lib/increase/models/digital_wallet_token.rb +59 -1
- data/lib/increase/models/entity.rb +1 -1
- data/lib/increase/models/event.rb +12 -0
- data/lib/increase/models/event_list_params.rb +12 -0
- data/lib/increase/models/event_subscription.rb +12 -0
- data/lib/increase/models/event_subscription_create_params.rb +12 -0
- data/lib/increase/models/export.rb +17 -1
- data/lib/increase/models/export_create_params.rb +78 -1
- data/lib/increase/models/fednow_transfer.rb +47 -1
- data/lib/increase/models/inbound_wire_transfer.rb +9 -1
- data/lib/increase/models/pending_transaction.rb +57 -1
- data/lib/increase/models/physical_card.rb +1 -1
- data/lib/increase/models/physical_card_profile.rb +38 -1
- data/lib/increase/models/real_time_decision.rb +55 -1
- data/lib/increase/models/simulations/ach_transfer_create_notification_of_change_params.rb +3 -0
- data/lib/increase/models/simulations/card_authorization_create_params.rb +4 -1
- data/lib/increase/models/simulations/card_balance_inquiry_create_params.rb +1 -1
- data/lib/increase/models/simulations/check_deposit_submit_params.rb +21 -2
- data/lib/increase/models/simulations/digital_wallet_token_request_create_response.rb +6 -0
- data/lib/increase/models/simulations/entity_update_validation_params.rb +1 -1
- data/lib/increase/models/simulations/inbound_wire_transfer_create_params.rb +10 -1
- data/lib/increase/models/simulations/physical_card_create_params.rb +1 -1
- data/lib/increase/models/transaction.rb +23 -8
- data/lib/increase/models/unwrap_webhook_event.rb +12 -0
- data/lib/increase/models/wire_drawdown_request.rb +20 -1
- data/lib/increase/resources/events.rb +4 -1
- data/lib/increase/resources/exports.rb +3 -1
- data/lib/increase/resources/simulations/check_deposits.rb +3 -0
- data/lib/increase/resources/simulations/inbound_wire_transfers.rb +3 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/ach_prenotification.rbi +9 -2
- data/rbi/increase/models/ach_prenotification_create_params.rbi +2 -2
- data/rbi/increase/models/ach_transfer.rbi +14 -4
- data/rbi/increase/models/ach_transfer_create_params.rbi +4 -0
- data/rbi/increase/models/card.rbi +8 -0
- data/rbi/increase/models/card_dispute.rbi +56 -0
- data/rbi/increase/models/card_dispute_list_params.rbi +7 -0
- data/rbi/increase/models/card_payment.rbi +156 -7
- data/rbi/increase/models/card_push_transfer.rbi +56 -0
- data/rbi/increase/models/check_transfer.rbi +4 -10
- data/rbi/increase/models/declined_transaction.rbi +8 -1
- data/rbi/increase/models/digital_wallet_token.rbi +131 -0
- data/rbi/increase/models/entity.rbi +1 -1
- data/rbi/increase/models/event.rbi +22 -0
- data/rbi/increase/models/event_list_params.rbi +28 -0
- data/rbi/increase/models/event_subscription.rbi +28 -0
- data/rbi/increase/models/event_subscription_create_params.rbi +28 -0
- data/rbi/increase/models/export.rbi +25 -5
- data/rbi/increase/models/export_create_params.rbi +151 -0
- data/rbi/increase/models/fednow_transfer.rbi +77 -0
- data/rbi/increase/models/inbound_wire_transfer.rbi +8 -0
- data/rbi/increase/models/pending_transaction.rbi +129 -0
- data/rbi/increase/models/physical_card.rbi +1 -1
- data/rbi/increase/models/physical_card_profile.rbi +60 -0
- data/rbi/increase/models/real_time_decision.rbi +127 -0
- data/rbi/increase/models/simulations/ach_transfer_create_notification_of_change_params.rbi +7 -0
- data/rbi/increase/models/simulations/card_authorization_create_params.rbi +8 -1
- data/rbi/increase/models/simulations/card_balance_inquiry_create_params.rbi +1 -1
- data/rbi/increase/models/simulations/check_deposit_submit_params.rbi +21 -3
- data/rbi/increase/models/simulations/digital_wallet_token_request_create_response.rbi +14 -0
- data/rbi/increase/models/simulations/entity_update_validation_params.rbi +1 -1
- data/rbi/increase/models/simulations/inbound_wire_transfer_create_params.rbi +13 -0
- data/rbi/increase/models/simulations/physical_card_create_params.rbi +1 -1
- data/rbi/increase/models/transaction.rbi +31 -10
- data/rbi/increase/models/unwrap_webhook_event.rbi +28 -0
- data/rbi/increase/models/wire_drawdown_request.rbi +22 -0
- data/rbi/increase/resources/events.rbi +4 -1
- data/rbi/increase/resources/exports.rbi +3 -0
- data/rbi/increase/resources/simulations/check_deposits.rbi +1 -0
- data/rbi/increase/resources/simulations/inbound_wire_transfers.rbi +4 -0
- data/sig/increase/models/ach_prenotification.rbs +7 -3
- data/sig/increase/models/ach_prenotification_create_params.rbs +2 -2
- data/sig/increase/models/ach_transfer.rbs +9 -2
- data/sig/increase/models/ach_transfer_create_params.rbs +4 -1
- data/sig/increase/models/card.rbs +5 -0
- data/sig/increase/models/card_dispute.rbs +21 -0
- data/sig/increase/models/card_dispute_list_params.rbs +4 -0
- data/sig/increase/models/card_payment.rbs +49 -1
- data/sig/increase/models/card_push_transfer.rbs +30 -0
- data/sig/increase/models/check_transfer.rbs +5 -5
- data/sig/increase/models/declined_transaction.rbs +5 -1
- data/sig/increase/models/digital_wallet_token.rbs +61 -2
- data/sig/increase/models/entity.rbs +1 -1
- data/sig/increase/models/event.rbs +16 -0
- data/sig/increase/models/event_list_params.rbs +16 -0
- data/sig/increase/models/event_subscription.rbs +16 -0
- data/sig/increase/models/event_subscription_create_params.rbs +16 -0
- data/sig/increase/models/export.rbs +23 -3
- data/sig/increase/models/export_create_params.rbs +76 -0
- data/sig/increase/models/fednow_transfer.rbs +37 -0
- data/sig/increase/models/inbound_wire_transfer.rbs +5 -0
- data/sig/increase/models/pending_transaction.rbs +40 -0
- data/sig/increase/models/physical_card.rbs +1 -1
- data/sig/increase/models/physical_card_profile.rbs +17 -0
- data/sig/increase/models/real_time_decision.rbs +40 -0
- data/sig/increase/models/simulations/ach_transfer_create_notification_of_change_params.rbs +5 -1
- data/sig/increase/models/simulations/card_authorization_create_params.rbs +5 -1
- data/sig/increase/models/simulations/card_balance_inquiry_create_params.rbs +1 -1
- data/sig/increase/models/simulations/check_deposit_submit_params.rbs +10 -3
- data/sig/increase/models/simulations/digital_wallet_token_request_create_response.rbs +8 -0
- data/sig/increase/models/simulations/entity_update_validation_params.rbs +1 -1
- data/sig/increase/models/simulations/inbound_wire_transfer_create_params.rbs +7 -0
- data/sig/increase/models/simulations/physical_card_create_params.rbs +1 -1
- data/sig/increase/models/transaction.rbs +9 -0
- data/sig/increase/models/unwrap_webhook_event.rbs +16 -0
- data/sig/increase/models/wire_drawdown_request.rbs +10 -0
- data/sig/increase/resources/exports.rbs +1 -0
- data/sig/increase/resources/simulations/inbound_wire_transfers.rbs +1 -0
- metadata +4 -4
|
@@ -457,6 +457,7 @@ module Increase
|
|
|
457
457
|
digital_wallet_token_id: String?,
|
|
458
458
|
direction: Increase::Models::PendingTransaction::Source::CardAuthorization::direction,
|
|
459
459
|
expires_at: Time,
|
|
460
|
+
healthcare: Increase::PendingTransaction::Source::CardAuthorization::Healthcare?,
|
|
460
461
|
merchant_acceptor_id: String,
|
|
461
462
|
merchant_category_code: String,
|
|
462
463
|
merchant_city: String?,
|
|
@@ -498,6 +499,8 @@ module Increase
|
|
|
498
499
|
|
|
499
500
|
attr_accessor expires_at: Time
|
|
500
501
|
|
|
502
|
+
attr_accessor healthcare: Increase::PendingTransaction::Source::CardAuthorization::Healthcare?
|
|
503
|
+
|
|
501
504
|
attr_accessor merchant_acceptor_id: String
|
|
502
505
|
|
|
503
506
|
attr_accessor merchant_category_code: String
|
|
@@ -548,6 +551,7 @@ module Increase
|
|
|
548
551
|
digital_wallet_token_id: String?,
|
|
549
552
|
direction: Increase::Models::PendingTransaction::Source::CardAuthorization::direction,
|
|
550
553
|
expires_at: Time,
|
|
554
|
+
healthcare: Increase::PendingTransaction::Source::CardAuthorization::Healthcare?,
|
|
551
555
|
merchant_acceptor_id: String,
|
|
552
556
|
merchant_category_code: String,
|
|
553
557
|
merchant_city: String?,
|
|
@@ -580,6 +584,7 @@ module Increase
|
|
|
580
584
|
digital_wallet_token_id: String?,
|
|
581
585
|
direction: Increase::Models::PendingTransaction::Source::CardAuthorization::direction,
|
|
582
586
|
expires_at: Time,
|
|
587
|
+
healthcare: Increase::PendingTransaction::Source::CardAuthorization::Healthcare?,
|
|
583
588
|
merchant_acceptor_id: String,
|
|
584
589
|
merchant_category_code: String,
|
|
585
590
|
merchant_city: String?,
|
|
@@ -826,6 +831,37 @@ module Increase
|
|
|
826
831
|
def self?.values: -> ::Array[Increase::Models::PendingTransaction::Source::CardAuthorization::direction]
|
|
827
832
|
end
|
|
828
833
|
|
|
834
|
+
type healthcare =
|
|
835
|
+
{
|
|
836
|
+
merchant_ninety_percent_eligibility: Increase::Models::PendingTransaction::Source::CardAuthorization::Healthcare::merchant_ninety_percent_eligibility
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
class Healthcare < Increase::Internal::Type::BaseModel
|
|
840
|
+
attr_accessor merchant_ninety_percent_eligibility: Increase::Models::PendingTransaction::Source::CardAuthorization::Healthcare::merchant_ninety_percent_eligibility
|
|
841
|
+
|
|
842
|
+
def initialize: (
|
|
843
|
+
merchant_ninety_percent_eligibility: Increase::Models::PendingTransaction::Source::CardAuthorization::Healthcare::merchant_ninety_percent_eligibility
|
|
844
|
+
) -> void
|
|
845
|
+
|
|
846
|
+
def to_hash: -> {
|
|
847
|
+
merchant_ninety_percent_eligibility: Increase::Models::PendingTransaction::Source::CardAuthorization::Healthcare::merchant_ninety_percent_eligibility
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
type merchant_ninety_percent_eligibility = :eligible | :not_eligible
|
|
851
|
+
|
|
852
|
+
module MerchantNinetyPercentEligibility
|
|
853
|
+
extend Increase::Internal::Type::Enum
|
|
854
|
+
|
|
855
|
+
# The merchant is eligible for treatment under the 90% rule.
|
|
856
|
+
ELIGIBLE: :eligible
|
|
857
|
+
|
|
858
|
+
# The merchant is not eligible for treatment under the 90% rule.
|
|
859
|
+
NOT_ELIGIBLE: :not_eligible
|
|
860
|
+
|
|
861
|
+
def self?.values: -> ::Array[Increase::Models::PendingTransaction::Source::CardAuthorization::Healthcare::merchant_ninety_percent_eligibility]
|
|
862
|
+
end
|
|
863
|
+
end
|
|
864
|
+
|
|
829
865
|
type network_details =
|
|
830
866
|
{
|
|
831
867
|
category: Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkDetails::category,
|
|
@@ -1116,6 +1152,7 @@ module Increase
|
|
|
1116
1152
|
| :quasi_cash
|
|
1117
1153
|
| :refund
|
|
1118
1154
|
| :cash_disbursement
|
|
1155
|
+
| :cash_deposit
|
|
1119
1156
|
| :balance_inquiry
|
|
1120
1157
|
| :unknown
|
|
1121
1158
|
|
|
@@ -1146,6 +1183,9 @@ module Increase
|
|
|
1146
1183
|
# Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
|
|
1147
1184
|
CASH_DISBURSEMENT: :cash_disbursement
|
|
1148
1185
|
|
|
1186
|
+
# Cash deposit transactions are used to deposit cash at an ATM or a point of sale.
|
|
1187
|
+
CASH_DEPOSIT: :cash_deposit
|
|
1188
|
+
|
|
1149
1189
|
# A balance inquiry transaction is used to check the balance of an account associated with a card.
|
|
1150
1190
|
BALANCE_INQUIRY: :balance_inquiry
|
|
1151
1191
|
|
|
@@ -327,7 +327,7 @@ module Increase
|
|
|
327
327
|
# The physical card has been processed for delivery.
|
|
328
328
|
PROCESSED_FOR_DELIVERY: :processed_for_delivery
|
|
329
329
|
|
|
330
|
-
# The physical card has been delivered.
|
|
330
|
+
# The physical card has been delivered. Note that some couriers track delivery status based on driver location data rather than an explicit scan. While uncommon, a single physical card may have more than one delivered event.
|
|
331
331
|
DELIVERED: :delivered
|
|
332
332
|
|
|
333
333
|
# There is an issue preventing delivery. The delivery will be attempted again if possible. If the issue cannot be resolved, the physical card will be returned to sender.
|
|
@@ -10,6 +10,7 @@ module Increase
|
|
|
10
10
|
creator: Increase::Models::PhysicalCardProfile::creator,
|
|
11
11
|
description: String,
|
|
12
12
|
front_image_file_id: String?,
|
|
13
|
+
front_text: Increase::PhysicalCardProfile::FrontText?,
|
|
13
14
|
idempotency_key: String?,
|
|
14
15
|
is_default: bool,
|
|
15
16
|
program_id: String,
|
|
@@ -34,6 +35,8 @@ module Increase
|
|
|
34
35
|
|
|
35
36
|
attr_accessor front_image_file_id: String?
|
|
36
37
|
|
|
38
|
+
attr_accessor front_text: Increase::PhysicalCardProfile::FrontText?
|
|
39
|
+
|
|
37
40
|
attr_accessor idempotency_key: String?
|
|
38
41
|
|
|
39
42
|
attr_accessor is_default: bool
|
|
@@ -53,6 +56,7 @@ module Increase
|
|
|
53
56
|
creator: Increase::Models::PhysicalCardProfile::creator,
|
|
54
57
|
description: String,
|
|
55
58
|
front_image_file_id: String?,
|
|
59
|
+
front_text: Increase::PhysicalCardProfile::FrontText?,
|
|
56
60
|
idempotency_key: String?,
|
|
57
61
|
is_default: bool,
|
|
58
62
|
program_id: String,
|
|
@@ -69,6 +73,7 @@ module Increase
|
|
|
69
73
|
creator: Increase::Models::PhysicalCardProfile::creator,
|
|
70
74
|
description: String,
|
|
71
75
|
front_image_file_id: String?,
|
|
76
|
+
front_text: Increase::PhysicalCardProfile::FrontText?,
|
|
72
77
|
idempotency_key: String?,
|
|
73
78
|
is_default: bool,
|
|
74
79
|
program_id: String,
|
|
@@ -90,6 +95,18 @@ module Increase
|
|
|
90
95
|
def self?.values: -> ::Array[Increase::Models::PhysicalCardProfile::creator]
|
|
91
96
|
end
|
|
92
97
|
|
|
98
|
+
type front_text = { :line1 => String, :line2 => String? }
|
|
99
|
+
|
|
100
|
+
class FrontText < Increase::Internal::Type::BaseModel
|
|
101
|
+
attr_accessor line1: String
|
|
102
|
+
|
|
103
|
+
attr_accessor line2: String?
|
|
104
|
+
|
|
105
|
+
def initialize: (line1: String, line2: String?) -> void
|
|
106
|
+
|
|
107
|
+
def to_hash: -> { :line1 => String, :line2 => String? }
|
|
108
|
+
end
|
|
109
|
+
|
|
93
110
|
type status =
|
|
94
111
|
:pending_creating
|
|
95
112
|
| :pending_reviewing
|
|
@@ -716,6 +716,7 @@ module Increase
|
|
|
716
716
|
decline: Increase::RealTimeDecision::CardAuthorization::Decline?,
|
|
717
717
|
digital_wallet_token_id: String?,
|
|
718
718
|
direction: Increase::Models::RealTimeDecision::CardAuthorization::direction,
|
|
719
|
+
healthcare: Increase::RealTimeDecision::CardAuthorization::Healthcare?,
|
|
719
720
|
merchant_acceptor_id: String,
|
|
720
721
|
merchant_category_code: String,
|
|
721
722
|
merchant_city: String?,
|
|
@@ -756,6 +757,8 @@ module Increase
|
|
|
756
757
|
|
|
757
758
|
attr_accessor direction: Increase::Models::RealTimeDecision::CardAuthorization::direction
|
|
758
759
|
|
|
760
|
+
attr_accessor healthcare: Increase::RealTimeDecision::CardAuthorization::Healthcare?
|
|
761
|
+
|
|
759
762
|
attr_accessor merchant_acceptor_id: String
|
|
760
763
|
|
|
761
764
|
attr_accessor merchant_category_code: String
|
|
@@ -807,6 +810,7 @@ module Increase
|
|
|
807
810
|
decline: Increase::RealTimeDecision::CardAuthorization::Decline?,
|
|
808
811
|
digital_wallet_token_id: String?,
|
|
809
812
|
direction: Increase::Models::RealTimeDecision::CardAuthorization::direction,
|
|
813
|
+
healthcare: Increase::RealTimeDecision::CardAuthorization::Healthcare?,
|
|
810
814
|
merchant_acceptor_id: String,
|
|
811
815
|
merchant_category_code: String,
|
|
812
816
|
merchant_city: String?,
|
|
@@ -839,6 +843,7 @@ module Increase
|
|
|
839
843
|
decline: Increase::RealTimeDecision::CardAuthorization::Decline?,
|
|
840
844
|
digital_wallet_token_id: String?,
|
|
841
845
|
direction: Increase::Models::RealTimeDecision::CardAuthorization::direction,
|
|
846
|
+
healthcare: Increase::RealTimeDecision::CardAuthorization::Healthcare?,
|
|
842
847
|
merchant_acceptor_id: String,
|
|
843
848
|
merchant_category_code: String,
|
|
844
849
|
merchant_city: String?,
|
|
@@ -1131,6 +1136,37 @@ module Increase
|
|
|
1131
1136
|
def self?.values: -> ::Array[Increase::Models::RealTimeDecision::CardAuthorization::direction]
|
|
1132
1137
|
end
|
|
1133
1138
|
|
|
1139
|
+
type healthcare =
|
|
1140
|
+
{
|
|
1141
|
+
merchant_ninety_percent_eligibility: Increase::Models::RealTimeDecision::CardAuthorization::Healthcare::merchant_ninety_percent_eligibility
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
class Healthcare < Increase::Internal::Type::BaseModel
|
|
1145
|
+
attr_accessor merchant_ninety_percent_eligibility: Increase::Models::RealTimeDecision::CardAuthorization::Healthcare::merchant_ninety_percent_eligibility
|
|
1146
|
+
|
|
1147
|
+
def initialize: (
|
|
1148
|
+
merchant_ninety_percent_eligibility: Increase::Models::RealTimeDecision::CardAuthorization::Healthcare::merchant_ninety_percent_eligibility
|
|
1149
|
+
) -> void
|
|
1150
|
+
|
|
1151
|
+
def to_hash: -> {
|
|
1152
|
+
merchant_ninety_percent_eligibility: Increase::Models::RealTimeDecision::CardAuthorization::Healthcare::merchant_ninety_percent_eligibility
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1155
|
+
type merchant_ninety_percent_eligibility = :eligible | :not_eligible
|
|
1156
|
+
|
|
1157
|
+
module MerchantNinetyPercentEligibility
|
|
1158
|
+
extend Increase::Internal::Type::Enum
|
|
1159
|
+
|
|
1160
|
+
# The merchant is eligible for treatment under the 90% rule.
|
|
1161
|
+
ELIGIBLE: :eligible
|
|
1162
|
+
|
|
1163
|
+
# The merchant is not eligible for treatment under the 90% rule.
|
|
1164
|
+
NOT_ELIGIBLE: :not_eligible
|
|
1165
|
+
|
|
1166
|
+
def self?.values: -> ::Array[Increase::Models::RealTimeDecision::CardAuthorization::Healthcare::merchant_ninety_percent_eligibility]
|
|
1167
|
+
end
|
|
1168
|
+
end
|
|
1169
|
+
|
|
1134
1170
|
type network_details =
|
|
1135
1171
|
{
|
|
1136
1172
|
category: Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::category,
|
|
@@ -1435,6 +1471,7 @@ module Increase
|
|
|
1435
1471
|
| :quasi_cash
|
|
1436
1472
|
| :refund
|
|
1437
1473
|
| :cash_disbursement
|
|
1474
|
+
| :cash_deposit
|
|
1438
1475
|
| :balance_inquiry
|
|
1439
1476
|
| :unknown
|
|
1440
1477
|
|
|
@@ -1465,6 +1502,9 @@ module Increase
|
|
|
1465
1502
|
# Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
|
|
1466
1503
|
CASH_DISBURSEMENT: :cash_disbursement
|
|
1467
1504
|
|
|
1505
|
+
# Cash deposit transactions are used to deposit cash at an ATM or a point of sale.
|
|
1506
|
+
CASH_DEPOSIT: :cash_deposit
|
|
1507
|
+
|
|
1468
1508
|
# A balance inquiry transaction is used to check the balance of an account associated with a card.
|
|
1469
1509
|
BALANCE_INQUIRY: :balance_inquiry
|
|
1470
1510
|
|
|
@@ -53,7 +53,8 @@ module Increase
|
|
|
53
53
|
request_options: Increase::RequestOptions
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
-
type corrected_account_funding =
|
|
56
|
+
type corrected_account_funding =
|
|
57
|
+
:checking | :savings | :loan | :general_ledger
|
|
57
58
|
|
|
58
59
|
module CorrectedAccountFunding
|
|
59
60
|
extend Increase::Internal::Type::Enum
|
|
@@ -64,6 +65,9 @@ module Increase
|
|
|
64
65
|
# A savings account.
|
|
65
66
|
SAVINGS: :savings
|
|
66
67
|
|
|
68
|
+
# A loan account used in a lender-borrower relationship. Uncommon.
|
|
69
|
+
LOAN: :loan
|
|
70
|
+
|
|
67
71
|
# A bank's general ledger. Uncommon.
|
|
68
72
|
GENERAL_LEDGER: :general_ledger
|
|
69
73
|
|
|
@@ -200,7 +200,7 @@ module Increase
|
|
|
200
200
|
# The attempted card transaction is not allowed per Increase's terms.
|
|
201
201
|
TRANSACTION_NOT_ALLOWED: :transaction_not_allowed
|
|
202
202
|
|
|
203
|
-
# The transaction was blocked by a
|
|
203
|
+
# The transaction was blocked by a limit or an authorization control.
|
|
204
204
|
BREACHES_LIMIT: :breaches_limit
|
|
205
205
|
|
|
206
206
|
# Your application declined the transaction via webhook.
|
|
@@ -345,6 +345,7 @@ module Increase
|
|
|
345
345
|
| :quasi_cash
|
|
346
346
|
| :refund
|
|
347
347
|
| :cash_disbursement
|
|
348
|
+
| :cash_deposit
|
|
348
349
|
| :balance_inquiry
|
|
349
350
|
|
|
350
351
|
module Category
|
|
@@ -374,6 +375,9 @@ module Increase
|
|
|
374
375
|
# Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
|
|
375
376
|
CASH_DISBURSEMENT: :cash_disbursement
|
|
376
377
|
|
|
378
|
+
# Cash deposit transactions are used to deposit cash at an ATM or a point of sale.
|
|
379
|
+
CASH_DEPOSIT: :cash_deposit
|
|
380
|
+
|
|
377
381
|
# A balance inquiry transaction is used to check the balance of an account associated with a card.
|
|
378
382
|
BALANCE_INQUIRY: :balance_inquiry
|
|
379
383
|
|
|
@@ -186,7 +186,7 @@ module Increase
|
|
|
186
186
|
# The attempted card transaction is not allowed per Increase's terms.
|
|
187
187
|
TRANSACTION_NOT_ALLOWED: :transaction_not_allowed
|
|
188
188
|
|
|
189
|
-
# The transaction was blocked by a
|
|
189
|
+
# The transaction was blocked by a limit or an authorization control.
|
|
190
190
|
BREACHES_LIMIT: :breaches_limit
|
|
191
191
|
|
|
192
192
|
# Your application declined the transaction via webhook.
|
|
@@ -36,7 +36,8 @@ module Increase
|
|
|
36
36
|
{
|
|
37
37
|
account_number: String,
|
|
38
38
|
routing_number: String,
|
|
39
|
-
auxiliary_on_us: String
|
|
39
|
+
auxiliary_on_us: String,
|
|
40
|
+
serial_number: String
|
|
40
41
|
}
|
|
41
42
|
|
|
42
43
|
class Scan < Increase::Internal::Type::BaseModel
|
|
@@ -48,16 +49,22 @@ module Increase
|
|
|
48
49
|
|
|
49
50
|
def auxiliary_on_us=: (String) -> String
|
|
50
51
|
|
|
52
|
+
attr_reader serial_number: String?
|
|
53
|
+
|
|
54
|
+
def serial_number=: (String) -> String
|
|
55
|
+
|
|
51
56
|
def initialize: (
|
|
52
57
|
account_number: String,
|
|
53
58
|
routing_number: String,
|
|
54
|
-
?auxiliary_on_us: String
|
|
59
|
+
?auxiliary_on_us: String,
|
|
60
|
+
?serial_number: String
|
|
55
61
|
) -> void
|
|
56
62
|
|
|
57
63
|
def to_hash: -> {
|
|
58
64
|
account_number: String,
|
|
59
65
|
routing_number: String,
|
|
60
|
-
auxiliary_on_us: String
|
|
66
|
+
auxiliary_on_us: String,
|
|
67
|
+
serial_number: String
|
|
61
68
|
}
|
|
62
69
|
end
|
|
63
70
|
end
|
|
@@ -32,6 +32,8 @@ module Increase
|
|
|
32
32
|
| :no_verification_method
|
|
33
33
|
| :webhook_timed_out
|
|
34
34
|
| :webhook_declined
|
|
35
|
+
| :incorrect_card_verification_code
|
|
36
|
+
| :declined_by_token_requestor
|
|
35
37
|
|
|
36
38
|
module DeclineReason
|
|
37
39
|
extend Increase::Internal::Type::Enum
|
|
@@ -48,6 +50,12 @@ module Increase
|
|
|
48
50
|
# Your webhook declined the token provisioning attempt.
|
|
49
51
|
WEBHOOK_DECLINED: :webhook_declined
|
|
50
52
|
|
|
53
|
+
# The tokenization attempt failed because the Card Verification Code (CVC) was incorrect.
|
|
54
|
+
INCORRECT_CARD_VERIFICATION_CODE: :incorrect_card_verification_code
|
|
55
|
+
|
|
56
|
+
# The tokenization attempt was declined by the token requestor.
|
|
57
|
+
DECLINED_BY_TOKEN_REQUESTOR: :declined_by_token_requestor
|
|
58
|
+
|
|
51
59
|
def self?.values: -> ::Array[Increase::Models::Simulations::DigitalWalletTokenRequestCreateResponse::decline_reason]
|
|
52
60
|
end
|
|
53
61
|
|
|
@@ -53,7 +53,7 @@ module Increase
|
|
|
53
53
|
module Category
|
|
54
54
|
extend Increase::Internal::Type::Enum
|
|
55
55
|
|
|
56
|
-
# The entity's tax identifier could not be
|
|
56
|
+
# The entity's tax identifier could not be verified. Update the tax ID with the [update an entity API](/documentation/api/entities#update-an-entity.corporation.legal_identifier).
|
|
57
57
|
ENTITY_TAX_IDENTIFIER: :entity_tax_identifier
|
|
58
58
|
|
|
59
59
|
# The entity's address could not be validated. Update the address with the [update an entity API](/documentation/api/entities#update-an-entity.corporation.address).
|
|
@@ -16,6 +16,7 @@ module Increase
|
|
|
16
16
|
end_to_end_identification: String,
|
|
17
17
|
instructing_agent_routing_number: String,
|
|
18
18
|
instruction_identification: String,
|
|
19
|
+
purpose: String,
|
|
19
20
|
unique_end_to_end_transaction_reference: String,
|
|
20
21
|
unstructured_remittance_information: String,
|
|
21
22
|
wire_drawdown_request_id: String
|
|
@@ -74,6 +75,10 @@ module Increase
|
|
|
74
75
|
|
|
75
76
|
def instruction_identification=: (String) -> String
|
|
76
77
|
|
|
78
|
+
attr_reader purpose: String?
|
|
79
|
+
|
|
80
|
+
def purpose=: (String) -> String
|
|
81
|
+
|
|
77
82
|
attr_reader unique_end_to_end_transaction_reference: String?
|
|
78
83
|
|
|
79
84
|
def unique_end_to_end_transaction_reference=: (String) -> String
|
|
@@ -100,6 +105,7 @@ module Increase
|
|
|
100
105
|
?end_to_end_identification: String,
|
|
101
106
|
?instructing_agent_routing_number: String,
|
|
102
107
|
?instruction_identification: String,
|
|
108
|
+
?purpose: String,
|
|
103
109
|
?unique_end_to_end_transaction_reference: String,
|
|
104
110
|
?unstructured_remittance_information: String,
|
|
105
111
|
?wire_drawdown_request_id: String,
|
|
@@ -120,6 +126,7 @@ module Increase
|
|
|
120
126
|
end_to_end_identification: String,
|
|
121
127
|
instructing_agent_routing_number: String,
|
|
122
128
|
instruction_identification: String,
|
|
129
|
+
purpose: String,
|
|
123
130
|
unique_end_to_end_transaction_reference: String,
|
|
124
131
|
unstructured_remittance_information: String,
|
|
125
132
|
wire_drawdown_request_id: String,
|
|
@@ -72,7 +72,7 @@ module Increase
|
|
|
72
72
|
# The physical card has been processed for delivery.
|
|
73
73
|
PROCESSED_FOR_DELIVERY: :processed_for_delivery
|
|
74
74
|
|
|
75
|
-
# The physical card has been delivered.
|
|
75
|
+
# The physical card has been delivered. Note that some couriers track delivery status based on driver location data rather than an explicit scan. While uncommon, a single physical card may have more than one delivered event.
|
|
76
76
|
DELIVERED: :delivered
|
|
77
77
|
|
|
78
78
|
# There is an issue preventing delivery. The delivery will be attempted again if possible. If the issue cannot be resolved, the physical card will be returned to sender.
|
|
@@ -1750,6 +1750,7 @@ module Increase
|
|
|
1750
1750
|
| :quasi_cash
|
|
1751
1751
|
| :refund
|
|
1752
1752
|
| :cash_disbursement
|
|
1753
|
+
| :cash_deposit
|
|
1753
1754
|
| :balance_inquiry
|
|
1754
1755
|
| :unknown
|
|
1755
1756
|
|
|
@@ -1780,6 +1781,9 @@ module Increase
|
|
|
1780
1781
|
# Cash disbursement transactions are used to withdraw cash from an ATM or a point of sale.
|
|
1781
1782
|
CASH_DISBURSEMENT: :cash_disbursement
|
|
1782
1783
|
|
|
1784
|
+
# Cash deposit transactions are used to deposit cash at an ATM or a point of sale.
|
|
1785
|
+
CASH_DEPOSIT: :cash_deposit
|
|
1786
|
+
|
|
1783
1787
|
# A balance inquiry transaction is used to check the balance of an account associated with a card.
|
|
1784
1788
|
BALANCE_INQUIRY: :balance_inquiry
|
|
1785
1789
|
|
|
@@ -5357,6 +5361,7 @@ module Increase
|
|
|
5357
5361
|
input_message_accountability_data: String?,
|
|
5358
5362
|
instructing_agent_routing_number: String?,
|
|
5359
5363
|
instruction_identification: String?,
|
|
5364
|
+
purpose: String?,
|
|
5360
5365
|
transfer_id: String,
|
|
5361
5366
|
unique_end_to_end_transaction_reference: String?,
|
|
5362
5367
|
unstructured_remittance_information: String?
|
|
@@ -5391,6 +5396,8 @@ module Increase
|
|
|
5391
5396
|
|
|
5392
5397
|
attr_accessor instruction_identification: String?
|
|
5393
5398
|
|
|
5399
|
+
attr_accessor purpose: String?
|
|
5400
|
+
|
|
5394
5401
|
attr_accessor transfer_id: String
|
|
5395
5402
|
|
|
5396
5403
|
attr_accessor unique_end_to_end_transaction_reference: String?
|
|
@@ -5412,6 +5419,7 @@ module Increase
|
|
|
5412
5419
|
input_message_accountability_data: String?,
|
|
5413
5420
|
instructing_agent_routing_number: String?,
|
|
5414
5421
|
instruction_identification: String?,
|
|
5422
|
+
purpose: String?,
|
|
5415
5423
|
transfer_id: String,
|
|
5416
5424
|
unique_end_to_end_transaction_reference: String?,
|
|
5417
5425
|
unstructured_remittance_information: String?
|
|
@@ -5432,6 +5440,7 @@ module Increase
|
|
|
5432
5440
|
input_message_accountability_data: String?,
|
|
5433
5441
|
instructing_agent_routing_number: String?,
|
|
5434
5442
|
instruction_identification: String?,
|
|
5443
|
+
purpose: String?,
|
|
5435
5444
|
transfer_id: String,
|
|
5436
5445
|
unique_end_to_end_transaction_reference: String?,
|
|
5437
5446
|
unstructured_remittance_information: String?
|
|
@@ -112,6 +112,10 @@ module Increase
|
|
|
112
112
|
| :"intrafi_account_enrollment.updated"
|
|
113
113
|
| :"intrafi_exclusion.created"
|
|
114
114
|
| :"intrafi_exclusion.updated"
|
|
115
|
+
| :"loan_application.created"
|
|
116
|
+
| :"loan_application.updated"
|
|
117
|
+
| :"loan_offer.created"
|
|
118
|
+
| :"loan_offer.updated"
|
|
115
119
|
| :"lockbox.created"
|
|
116
120
|
| :"lockbox.updated"
|
|
117
121
|
| :"oauth_connection.created"
|
|
@@ -363,6 +367,18 @@ module Increase
|
|
|
363
367
|
# Occurs whenever an IntraFi Exclusion is updated.
|
|
364
368
|
INTRAFI_EXCLUSION_UPDATED: :"intrafi_exclusion.updated"
|
|
365
369
|
|
|
370
|
+
# Occurs whenever a Loan Application is created.
|
|
371
|
+
LOAN_APPLICATION_CREATED: :"loan_application.created"
|
|
372
|
+
|
|
373
|
+
# Occurs whenever a Loan Application is updated.
|
|
374
|
+
LOAN_APPLICATION_UPDATED: :"loan_application.updated"
|
|
375
|
+
|
|
376
|
+
# Occurs whenever a Loan Offer is created.
|
|
377
|
+
LOAN_OFFER_CREATED: :"loan_offer.created"
|
|
378
|
+
|
|
379
|
+
# Occurs whenever a Loan Offer is updated.
|
|
380
|
+
LOAN_OFFER_UPDATED: :"loan_offer.updated"
|
|
381
|
+
|
|
366
382
|
# Occurs whenever a Lockbox is created.
|
|
367
383
|
LOCKBOX_CREATED: :"lockbox.created"
|
|
368
384
|
|
|
@@ -14,11 +14,13 @@ module Increase
|
|
|
14
14
|
debtor_external_account_id: String?,
|
|
15
15
|
debtor_name: String,
|
|
16
16
|
debtor_routing_number: String,
|
|
17
|
+
end_to_end_identification: String?,
|
|
17
18
|
fulfillment_inbound_wire_transfer_id: String?,
|
|
18
19
|
idempotency_key: String?,
|
|
19
20
|
status: Increase::Models::WireDrawdownRequest::status,
|
|
20
21
|
submission: Increase::WireDrawdownRequest::Submission?,
|
|
21
22
|
type: Increase::Models::WireDrawdownRequest::type_,
|
|
23
|
+
unique_end_to_end_transaction_reference: String?,
|
|
22
24
|
unstructured_remittance_information: String
|
|
23
25
|
}
|
|
24
26
|
|
|
@@ -47,6 +49,8 @@ module Increase
|
|
|
47
49
|
|
|
48
50
|
attr_accessor debtor_routing_number: String
|
|
49
51
|
|
|
52
|
+
attr_accessor end_to_end_identification: String?
|
|
53
|
+
|
|
50
54
|
attr_accessor fulfillment_inbound_wire_transfer_id: String?
|
|
51
55
|
|
|
52
56
|
attr_accessor idempotency_key: String?
|
|
@@ -57,6 +61,8 @@ module Increase
|
|
|
57
61
|
|
|
58
62
|
attr_accessor type: Increase::Models::WireDrawdownRequest::type_
|
|
59
63
|
|
|
64
|
+
attr_accessor unique_end_to_end_transaction_reference: String?
|
|
65
|
+
|
|
60
66
|
attr_accessor unstructured_remittance_information: String
|
|
61
67
|
|
|
62
68
|
def initialize: (
|
|
@@ -72,11 +78,13 @@ module Increase
|
|
|
72
78
|
debtor_external_account_id: String?,
|
|
73
79
|
debtor_name: String,
|
|
74
80
|
debtor_routing_number: String,
|
|
81
|
+
end_to_end_identification: String?,
|
|
75
82
|
fulfillment_inbound_wire_transfer_id: String?,
|
|
76
83
|
idempotency_key: String?,
|
|
77
84
|
status: Increase::Models::WireDrawdownRequest::status,
|
|
78
85
|
submission: Increase::WireDrawdownRequest::Submission?,
|
|
79
86
|
type: Increase::Models::WireDrawdownRequest::type_,
|
|
87
|
+
unique_end_to_end_transaction_reference: String?,
|
|
80
88
|
unstructured_remittance_information: String
|
|
81
89
|
) -> void
|
|
82
90
|
|
|
@@ -93,11 +101,13 @@ module Increase
|
|
|
93
101
|
debtor_external_account_id: String?,
|
|
94
102
|
debtor_name: String,
|
|
95
103
|
debtor_routing_number: String,
|
|
104
|
+
end_to_end_identification: String?,
|
|
96
105
|
fulfillment_inbound_wire_transfer_id: String?,
|
|
97
106
|
idempotency_key: String?,
|
|
98
107
|
status: Increase::Models::WireDrawdownRequest::status,
|
|
99
108
|
submission: Increase::WireDrawdownRequest::Submission?,
|
|
100
109
|
type: Increase::Models::WireDrawdownRequest::type_,
|
|
110
|
+
unique_end_to_end_transaction_reference: String?,
|
|
101
111
|
unstructured_remittance_information: String
|
|
102
112
|
}
|
|
103
113
|
|
|
@@ -9,6 +9,7 @@ module Increase
|
|
|
9
9
|
?bookkeeping_account_balance_csv: Increase::ExportCreateParams::BookkeepingAccountBalanceCsv,
|
|
10
10
|
?daily_account_balance_csv: Increase::ExportCreateParams::DailyAccountBalanceCsv,
|
|
11
11
|
?entity_csv: Increase::ExportCreateParams::EntityCsv,
|
|
12
|
+
?fee_csv: Increase::ExportCreateParams::FeeCsv,
|
|
12
13
|
?funding_instructions: Increase::ExportCreateParams::FundingInstructions,
|
|
13
14
|
?transaction_csv: Increase::ExportCreateParams::TransactionCsv,
|
|
14
15
|
?vendor_csv: Increase::ExportCreateParams::VendorCsv,
|
|
@@ -16,6 +16,7 @@ module Increase
|
|
|
16
16
|
?end_to_end_identification: String,
|
|
17
17
|
?instructing_agent_routing_number: String,
|
|
18
18
|
?instruction_identification: String,
|
|
19
|
+
?purpose: String,
|
|
19
20
|
?unique_end_to_end_transaction_reference: String,
|
|
20
21
|
?unstructured_remittance_information: String,
|
|
21
22
|
?wire_drawdown_request_id: String,
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: increase
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.335.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Increase
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-06-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|
|
@@ -1327,14 +1327,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
1327
1327
|
requirements:
|
|
1328
1328
|
- - ">="
|
|
1329
1329
|
- !ruby/object:Gem::Version
|
|
1330
|
-
version: 3.
|
|
1330
|
+
version: 3.3.0
|
|
1331
1331
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1332
1332
|
requirements:
|
|
1333
1333
|
- - ">="
|
|
1334
1334
|
- !ruby/object:Gem::Version
|
|
1335
1335
|
version: '0'
|
|
1336
1336
|
requirements: []
|
|
1337
|
-
rubygems_version: 3.
|
|
1337
|
+
rubygems_version: 3.5.3
|
|
1338
1338
|
signing_key:
|
|
1339
1339
|
specification_version: 4
|
|
1340
1340
|
summary: Ruby library to access the Increase API
|