increase 1.348.0 → 1.349.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/README.md +1 -1
- data/lib/increase/models/account_create_params.rb +15 -15
- data/lib/increase/models/entity.rb +293 -1
- data/lib/increase/models/event.rb +3 -0
- data/lib/increase/models/event_list_params.rb +3 -0
- data/lib/increase/models/event_subscription.rb +3 -0
- data/lib/increase/models/event_subscription_create_params.rb +3 -0
- data/lib/increase/models/inbound_check_deposit.rb +5 -2
- data/lib/increase/models/inbound_fednow_transfer.rb +18 -1
- data/lib/increase/models/pending_transaction.rb +7 -7
- data/lib/increase/models/pending_transaction_list_params.rb +1 -1
- data/lib/increase/models/physical_card_create_params.rb +6 -3
- data/lib/increase/models/simulations/inbound_check_deposit_adjustment_params.rb +8 -11
- data/lib/increase/models/transaction.rb +5 -2
- data/lib/increase/models/unwrap_webhook_event.rb +3 -0
- data/lib/increase/resources/physical_cards.rb +2 -1
- data/lib/increase/resources/simulations/inbound_check_deposits.rb +4 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/account_create_params.rbi +37 -21
- data/rbi/increase/models/entity.rbi +491 -0
- data/rbi/increase/models/event.rbi +7 -0
- data/rbi/increase/models/event_list_params.rbi +7 -0
- data/rbi/increase/models/event_subscription.rbi +7 -0
- data/rbi/increase/models/event_subscription_create_params.rbi +7 -0
- data/rbi/increase/models/inbound_check_deposit.rbi +4 -2
- data/rbi/increase/models/inbound_fednow_transfer.rbi +16 -0
- data/rbi/increase/models/pending_transaction.rbi +7 -7
- data/rbi/increase/models/pending_transaction_list_params.rbi +1 -1
- data/rbi/increase/models/physical_card_create_params.rbi +6 -3
- data/rbi/increase/models/simulations/inbound_check_deposit_adjustment_params.rbi +8 -23
- data/rbi/increase/models/transaction.rbi +4 -2
- data/rbi/increase/models/unwrap_webhook_event.rbi +7 -0
- data/rbi/increase/resources/physical_cards.rbi +2 -1
- data/rbi/increase/resources/simulations/inbound_check_deposits.rbi +4 -1
- data/sig/increase/models/account_create_params.rbs +20 -12
- data/sig/increase/models/entity.rbs +227 -1
- data/sig/increase/models/event.rbs +4 -0
- data/sig/increase/models/event_list_params.rbs +4 -0
- data/sig/increase/models/event_subscription.rbs +4 -0
- data/sig/increase/models/event_subscription_create_params.rbs +4 -0
- data/sig/increase/models/inbound_fednow_transfer.rbs +10 -0
- data/sig/increase/models/pending_transaction.rbs +1 -1
- data/sig/increase/models/pending_transaction_list_params.rbs +1 -1
- data/sig/increase/models/simulations/inbound_check_deposit_adjustment_params.rbs +1 -15
- data/sig/increase/models/unwrap_webhook_event.rbs +4 -0
- metadata +2 -2
|
@@ -183,6 +183,7 @@ module Increase
|
|
|
183
183
|
| :"physical_card_profile.updated"
|
|
184
184
|
| :"physical_check.created"
|
|
185
185
|
| :"physical_check.updated"
|
|
186
|
+
| :"plaid_processor_token.created"
|
|
186
187
|
| :"checkbook.created"
|
|
187
188
|
| :"checkbook.updated"
|
|
188
189
|
| :"program.created"
|
|
@@ -507,6 +508,9 @@ module Increase
|
|
|
507
508
|
# Occurs whenever a Physical Check is updated.
|
|
508
509
|
PHYSICAL_CHECK_UPDATED: :"physical_check.updated"
|
|
509
510
|
|
|
511
|
+
# Occurs whenever a Plaid Processor Token is created.
|
|
512
|
+
PLAID_PROCESSOR_TOKEN_CREATED: :"plaid_processor_token.created"
|
|
513
|
+
|
|
510
514
|
# Occurs whenever a Checkbook is created.
|
|
511
515
|
CHECKBOOK_CREATED: :"checkbook.created"
|
|
512
516
|
|
|
@@ -167,6 +167,7 @@ module Increase
|
|
|
167
167
|
| :"physical_card_profile.updated"
|
|
168
168
|
| :"physical_check.created"
|
|
169
169
|
| :"physical_check.updated"
|
|
170
|
+
| :"plaid_processor_token.created"
|
|
170
171
|
| :"checkbook.created"
|
|
171
172
|
| :"checkbook.updated"
|
|
172
173
|
| :"program.created"
|
|
@@ -491,6 +492,9 @@ module Increase
|
|
|
491
492
|
# Occurs whenever a Physical Check is updated.
|
|
492
493
|
PHYSICAL_CHECK_UPDATED: :"physical_check.updated"
|
|
493
494
|
|
|
495
|
+
# Occurs whenever a Plaid Processor Token is created.
|
|
496
|
+
PLAID_PROCESSOR_TOKEN_CREATED: :"plaid_processor_token.created"
|
|
497
|
+
|
|
494
498
|
# Occurs whenever a Checkbook is created.
|
|
495
499
|
CHECKBOOK_CREATED: :"checkbook.created"
|
|
496
500
|
|
|
@@ -170,6 +170,7 @@ module Increase
|
|
|
170
170
|
| :"physical_card_profile.updated"
|
|
171
171
|
| :"physical_check.created"
|
|
172
172
|
| :"physical_check.updated"
|
|
173
|
+
| :"plaid_processor_token.created"
|
|
173
174
|
| :"checkbook.created"
|
|
174
175
|
| :"checkbook.updated"
|
|
175
176
|
| :"program.created"
|
|
@@ -494,6 +495,9 @@ module Increase
|
|
|
494
495
|
# Occurs whenever a Physical Check is updated.
|
|
495
496
|
PHYSICAL_CHECK_UPDATED: :"physical_check.updated"
|
|
496
497
|
|
|
498
|
+
# Occurs whenever a Plaid Processor Token is created.
|
|
499
|
+
PLAID_PROCESSOR_TOKEN_CREATED: :"plaid_processor_token.created"
|
|
500
|
+
|
|
497
501
|
# Occurs whenever a Checkbook is created.
|
|
498
502
|
CHECKBOOK_CREATED: :"checkbook.created"
|
|
499
503
|
|
|
@@ -14,8 +14,10 @@ module Increase
|
|
|
14
14
|
debtor_name: String,
|
|
15
15
|
debtor_routing_number: String,
|
|
16
16
|
decline: Increase::InboundFednowTransfer::Decline?,
|
|
17
|
+
end_to_end_identification: String?,
|
|
17
18
|
status: Increase::Models::InboundFednowTransfer::status,
|
|
18
19
|
transaction_id: String?,
|
|
20
|
+
transaction_identification: String?,
|
|
19
21
|
type: Increase::Models::InboundFednowTransfer::type_,
|
|
20
22
|
unique_end_to_end_transaction_reference: String?,
|
|
21
23
|
unstructured_remittance_information: String?
|
|
@@ -46,10 +48,14 @@ module Increase
|
|
|
46
48
|
|
|
47
49
|
attr_accessor decline: Increase::InboundFednowTransfer::Decline?
|
|
48
50
|
|
|
51
|
+
attr_accessor end_to_end_identification: String?
|
|
52
|
+
|
|
49
53
|
attr_accessor status: Increase::Models::InboundFednowTransfer::status
|
|
50
54
|
|
|
51
55
|
attr_accessor transaction_id: String?
|
|
52
56
|
|
|
57
|
+
attr_accessor transaction_identification: String?
|
|
58
|
+
|
|
53
59
|
attr_accessor type: Increase::Models::InboundFednowTransfer::type_
|
|
54
60
|
|
|
55
61
|
attr_accessor unique_end_to_end_transaction_reference: String?
|
|
@@ -69,8 +75,10 @@ module Increase
|
|
|
69
75
|
debtor_name: String,
|
|
70
76
|
debtor_routing_number: String,
|
|
71
77
|
decline: Increase::InboundFednowTransfer::Decline?,
|
|
78
|
+
end_to_end_identification: String?,
|
|
72
79
|
status: Increase::Models::InboundFednowTransfer::status,
|
|
73
80
|
transaction_id: String?,
|
|
81
|
+
transaction_identification: String?,
|
|
74
82
|
type: Increase::Models::InboundFednowTransfer::type_,
|
|
75
83
|
unique_end_to_end_transaction_reference: String?,
|
|
76
84
|
unstructured_remittance_information: String?
|
|
@@ -89,8 +97,10 @@ module Increase
|
|
|
89
97
|
debtor_name: String,
|
|
90
98
|
debtor_routing_number: String,
|
|
91
99
|
decline: Increase::InboundFednowTransfer::Decline?,
|
|
100
|
+
end_to_end_identification: String?,
|
|
92
101
|
status: Increase::Models::InboundFednowTransfer::status,
|
|
93
102
|
transaction_id: String?,
|
|
103
|
+
transaction_identification: String?,
|
|
94
104
|
type: Increase::Models::InboundFednowTransfer::type_,
|
|
95
105
|
unique_end_to_end_transaction_reference: String?,
|
|
96
106
|
unstructured_remittance_information: String?
|
|
@@ -1834,7 +1834,7 @@ module Increase
|
|
|
1834
1834
|
# The Pending Transaction is still awaiting confirmation.
|
|
1835
1835
|
PENDING: :pending
|
|
1836
1836
|
|
|
1837
|
-
# The Pending Transaction is confirmed. An associated Transaction exists for this object. The Pending Transaction will no longer count against your balance and can generally be hidden from UIs, etc. The Pending Transaction's `amount` is
|
|
1837
|
+
# The Pending Transaction is confirmed. An associated Transaction exists for this object. The Pending Transaction will no longer count against your balance and can generally be hidden from UIs, etc. The Pending Transaction's `amount` is the amount that was still held when it completed, which can differ from the amount of the associated Transaction.
|
|
1838
1838
|
COMPLETE: :complete
|
|
1839
1839
|
|
|
1840
1840
|
def self?.values: -> ::Array[Increase::Models::PendingTransaction::status]
|
|
@@ -228,7 +228,7 @@ module Increase
|
|
|
228
228
|
# The Pending Transaction is still awaiting confirmation.
|
|
229
229
|
PENDING: :pending
|
|
230
230
|
|
|
231
|
-
# The Pending Transaction is confirmed. An associated Transaction exists for this object. The Pending Transaction will no longer count against your balance and can generally be hidden from UIs, etc. The Pending Transaction's `amount` is
|
|
231
|
+
# The Pending Transaction is confirmed. An associated Transaction exists for this object. The Pending Transaction will no longer count against your balance and can generally be hidden from UIs, etc. The Pending Transaction's `amount` is the amount that was still held when it completed, which can differ from the amount of the associated Transaction.
|
|
232
232
|
COMPLETE: :complete
|
|
233
233
|
|
|
234
234
|
def self?.values: -> ::Array[Increase::Models::PendingTransactionListParams::Status::in_]
|
|
@@ -39,12 +39,7 @@ module Increase
|
|
|
39
39
|
request_options: Increase::RequestOptions
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
-
type reason =
|
|
43
|
-
:late_return
|
|
44
|
-
| :wrong_payee_credit
|
|
45
|
-
| :adjusted_amount
|
|
46
|
-
| :non_conforming_item
|
|
47
|
-
| :paid
|
|
42
|
+
type reason = :late_return | :wrong_payee_credit
|
|
48
43
|
|
|
49
44
|
module Reason
|
|
50
45
|
extend Increase::Internal::Type::Enum
|
|
@@ -55,15 +50,6 @@ module Increase
|
|
|
55
50
|
# The check was deposited to the wrong payee and the depositing institution has reimbursed the funds with a Wrong Payee Credit.
|
|
56
51
|
WRONG_PAYEE_CREDIT: :wrong_payee_credit
|
|
57
52
|
|
|
58
|
-
# The check was deposited with a different amount than what was written on the check.
|
|
59
|
-
ADJUSTED_AMOUNT: :adjusted_amount
|
|
60
|
-
|
|
61
|
-
# The recipient was not able to process the check. This usually happens for e.g., low quality images.
|
|
62
|
-
NON_CONFORMING_ITEM: :non_conforming_item
|
|
63
|
-
|
|
64
|
-
# The check has already been deposited elsewhere and so this is a duplicate.
|
|
65
|
-
PAID: :paid
|
|
66
|
-
|
|
67
53
|
def self?.values: -> ::Array[Increase::Models::Simulations::InboundCheckDepositAdjustmentParams::reason]
|
|
68
54
|
end
|
|
69
55
|
end
|
|
@@ -141,6 +141,7 @@ module Increase
|
|
|
141
141
|
| :"physical_card_profile.updated"
|
|
142
142
|
| :"physical_check.created"
|
|
143
143
|
| :"physical_check.updated"
|
|
144
|
+
| :"plaid_processor_token.created"
|
|
144
145
|
| :"checkbook.created"
|
|
145
146
|
| :"checkbook.updated"
|
|
146
147
|
| :"program.created"
|
|
@@ -465,6 +466,9 @@ module Increase
|
|
|
465
466
|
# Occurs whenever a Physical Check is updated.
|
|
466
467
|
PHYSICAL_CHECK_UPDATED: :"physical_check.updated"
|
|
467
468
|
|
|
469
|
+
# Occurs whenever a Plaid Processor Token is created.
|
|
470
|
+
PLAID_PROCESSOR_TOKEN_CREATED: :"plaid_processor_token.created"
|
|
471
|
+
|
|
468
472
|
# Occurs whenever a Checkbook is created.
|
|
469
473
|
CHECKBOOK_CREATED: :"checkbook.created"
|
|
470
474
|
|
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.349.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-08-
|
|
11
|
+
date: 2026-08-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|