increase 1.350.0 → 1.352.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_statement.rb +12 -4
- data/lib/increase/models/balance_lookup.rb +1 -59
- data/lib/increase/models/declined_transaction.rb +3 -0
- data/lib/increase/models/digital_wallet_token.rb +19 -1
- data/lib/increase/models/entity_create_params.rb +33 -20
- data/lib/increase/models/entity_update_params.rb +33 -20
- 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/inbound_ach_transfer.rb +9 -1
- data/lib/increase/models/inbound_real_time_payments_transfer.rb +3 -0
- data/lib/increase/models/pending_transaction.rb +121 -1
- data/lib/increase/models/pending_transaction_list_params.rb +6 -0
- data/lib/increase/models/simulations/physical_card_create_params.rb +9 -6
- data/lib/increase/models/transaction.rb +103 -1
- data/lib/increase/models/transaction_list_params.rb +6 -0
- data/lib/increase/models/unwrap_webhook_event.rb +12 -0
- data/lib/increase/resources/simulations/account_statements.rb +2 -1
- data/lib/increase/resources/simulations/physical_cards.rb +5 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/account_statement.rbi +12 -4
- data/rbi/increase/models/balance_lookup.rbi +3 -87
- data/rbi/increase/models/declined_transaction.rbi +7 -0
- data/rbi/increase/models/digital_wallet_token.rbi +16 -0
- data/rbi/increase/models/entity_create_params.rbi +39 -21
- data/rbi/increase/models/entity_update_params.rbi +39 -21
- data/rbi/increase/models/event.rbi +28 -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/inbound_ach_transfer.rbi +8 -0
- data/rbi/increase/models/inbound_real_time_payments_transfer.rbi +7 -0
- data/rbi/increase/models/pending_transaction.rbi +254 -0
- data/rbi/increase/models/pending_transaction_list_params.rbi +14 -0
- data/rbi/increase/models/simulations/physical_card_create_params.rbi +8 -6
- data/rbi/increase/models/transaction.rbi +178 -0
- data/rbi/increase/models/transaction_list_params.rbi +14 -0
- data/rbi/increase/models/unwrap_webhook_event.rbi +28 -0
- data/rbi/increase/resources/simulations/account_statements.rbi +2 -1
- data/rbi/increase/resources/simulations/physical_cards.rbi +4 -3
- data/sig/increase/models/balance_lookup.rbs +3 -42
- data/sig/increase/models/declined_transaction.rbs +4 -0
- data/sig/increase/models/digital_wallet_token.rbs +10 -0
- data/sig/increase/models/entity_create_params.rbs +20 -11
- data/sig/increase/models/entity_update_params.rbs +20 -11
- 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/inbound_ach_transfer.rbs +5 -0
- data/sig/increase/models/inbound_real_time_payments_transfer.rbs +4 -0
- data/sig/increase/models/pending_transaction.rbs +84 -0
- data/sig/increase/models/pending_transaction_list_params.rbs +8 -0
- data/sig/increase/models/transaction.rbs +50 -0
- data/sig/increase/models/transaction_list_params.rbs +8 -0
- data/sig/increase/models/unwrap_webhook_event.rbs +16 -0
- metadata +2 -2
|
@@ -120,7 +120,9 @@ module Increase
|
|
|
120
120
|
inbound_wire_transfer_reversal: Increase::PendingTransaction::Source::InboundWireTransferReversal?,
|
|
121
121
|
other: Increase::PendingTransaction::Source::Other?,
|
|
122
122
|
real_time_payments_transfer_instruction: Increase::PendingTransaction::Source::RealTimePaymentsTransferInstruction?,
|
|
123
|
+
sepa_instant_transfer_instruction: Increase::PendingTransaction::Source::SepaInstantTransferInstruction?,
|
|
123
124
|
swift_transfer_instruction: Increase::PendingTransaction::Source::SwiftTransferInstruction?,
|
|
125
|
+
uk_faster_payment_system_transfer_instruction: Increase::PendingTransaction::Source::UkFasterPaymentSystemTransferInstruction?,
|
|
124
126
|
user_initiated_hold: ::Hash[Symbol, top]?,
|
|
125
127
|
wire_transfer_instruction: Increase::PendingTransaction::Source::WireTransferInstruction?
|
|
126
128
|
}
|
|
@@ -154,8 +156,12 @@ module Increase
|
|
|
154
156
|
|
|
155
157
|
attr_accessor real_time_payments_transfer_instruction: Increase::PendingTransaction::Source::RealTimePaymentsTransferInstruction?
|
|
156
158
|
|
|
159
|
+
attr_accessor sepa_instant_transfer_instruction: Increase::PendingTransaction::Source::SepaInstantTransferInstruction?
|
|
160
|
+
|
|
157
161
|
attr_accessor swift_transfer_instruction: Increase::PendingTransaction::Source::SwiftTransferInstruction?
|
|
158
162
|
|
|
163
|
+
attr_accessor uk_faster_payment_system_transfer_instruction: Increase::PendingTransaction::Source::UkFasterPaymentSystemTransferInstruction?
|
|
164
|
+
|
|
159
165
|
attr_accessor user_initiated_hold: ::Hash[Symbol, top]?
|
|
160
166
|
|
|
161
167
|
attr_accessor wire_transfer_instruction: Increase::PendingTransaction::Source::WireTransferInstruction?
|
|
@@ -175,7 +181,9 @@ module Increase
|
|
|
175
181
|
?inbound_wire_transfer_reversal: Increase::PendingTransaction::Source::InboundWireTransferReversal?,
|
|
176
182
|
?other: Increase::PendingTransaction::Source::Other?,
|
|
177
183
|
?real_time_payments_transfer_instruction: Increase::PendingTransaction::Source::RealTimePaymentsTransferInstruction?,
|
|
184
|
+
?sepa_instant_transfer_instruction: Increase::PendingTransaction::Source::SepaInstantTransferInstruction?,
|
|
178
185
|
?swift_transfer_instruction: Increase::PendingTransaction::Source::SwiftTransferInstruction?,
|
|
186
|
+
?uk_faster_payment_system_transfer_instruction: Increase::PendingTransaction::Source::UkFasterPaymentSystemTransferInstruction?,
|
|
179
187
|
?user_initiated_hold: ::Hash[Symbol, top]?,
|
|
180
188
|
?wire_transfer_instruction: Increase::PendingTransaction::Source::WireTransferInstruction?
|
|
181
189
|
) -> void
|
|
@@ -195,7 +203,9 @@ module Increase
|
|
|
195
203
|
inbound_wire_transfer_reversal: Increase::PendingTransaction::Source::InboundWireTransferReversal?,
|
|
196
204
|
other: Increase::PendingTransaction::Source::Other?,
|
|
197
205
|
real_time_payments_transfer_instruction: Increase::PendingTransaction::Source::RealTimePaymentsTransferInstruction?,
|
|
206
|
+
sepa_instant_transfer_instruction: Increase::PendingTransaction::Source::SepaInstantTransferInstruction?,
|
|
198
207
|
swift_transfer_instruction: Increase::PendingTransaction::Source::SwiftTransferInstruction?,
|
|
208
|
+
uk_faster_payment_system_transfer_instruction: Increase::PendingTransaction::Source::UkFasterPaymentSystemTransferInstruction?,
|
|
199
209
|
user_initiated_hold: ::Hash[Symbol, top]?,
|
|
200
210
|
wire_transfer_instruction: Increase::PendingTransaction::Source::WireTransferInstruction?
|
|
201
211
|
}
|
|
@@ -216,6 +226,8 @@ module Increase
|
|
|
216
226
|
| :card_push_transfer_instruction
|
|
217
227
|
| :blockchain_onramp_transfer_instruction
|
|
218
228
|
| :blockchain_offramp_transfer
|
|
229
|
+
| :uk_faster_payment_system_transfer_instruction
|
|
230
|
+
| :sepa_instant_transfer_instruction
|
|
219
231
|
| :other
|
|
220
232
|
|
|
221
233
|
module Category
|
|
@@ -266,6 +278,12 @@ module Increase
|
|
|
266
278
|
# Blockchain Off-Ramp Transfer: details will be under the `blockchain_offramp_transfer` object.
|
|
267
279
|
BLOCKCHAIN_OFFRAMP_TRANSFER: :blockchain_offramp_transfer
|
|
268
280
|
|
|
281
|
+
# UK Faster Payment System Transfer Instruction: details will be under the `uk_faster_payment_system_transfer_instruction` object.
|
|
282
|
+
UK_FASTER_PAYMENT_SYSTEM_TRANSFER_INSTRUCTION: :uk_faster_payment_system_transfer_instruction
|
|
283
|
+
|
|
284
|
+
# SEPA Instant Transfer Instruction: details will be under the `sepa_instant_transfer_instruction` object.
|
|
285
|
+
SEPA_INSTANT_TRANSFER_INSTRUCTION: :sepa_instant_transfer_instruction
|
|
286
|
+
|
|
269
287
|
# The Pending Transaction was made for an undocumented or deprecated reason.
|
|
270
288
|
OTHER: :other
|
|
271
289
|
|
|
@@ -1778,6 +1796,39 @@ module Increase
|
|
|
1778
1796
|
def to_hash: -> { amount: Integer, transfer_id: String }
|
|
1779
1797
|
end
|
|
1780
1798
|
|
|
1799
|
+
type sepa_instant_transfer_instruction =
|
|
1800
|
+
{
|
|
1801
|
+
amount: Integer,
|
|
1802
|
+
currency: Increase::Models::PendingTransaction::Source::SepaInstantTransferInstruction::currency
|
|
1803
|
+
}
|
|
1804
|
+
|
|
1805
|
+
class SepaInstantTransferInstruction < Increase::Internal::Type::BaseModel
|
|
1806
|
+
attr_accessor amount: Integer
|
|
1807
|
+
|
|
1808
|
+
attr_accessor currency: Increase::Models::PendingTransaction::Source::SepaInstantTransferInstruction::currency
|
|
1809
|
+
|
|
1810
|
+
def initialize: (
|
|
1811
|
+
amount: Integer,
|
|
1812
|
+
currency: Increase::Models::PendingTransaction::Source::SepaInstantTransferInstruction::currency
|
|
1813
|
+
) -> void
|
|
1814
|
+
|
|
1815
|
+
def to_hash: -> {
|
|
1816
|
+
amount: Integer,
|
|
1817
|
+
currency: Increase::Models::PendingTransaction::Source::SepaInstantTransferInstruction::currency
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
type currency = :EUR
|
|
1821
|
+
|
|
1822
|
+
module Currency
|
|
1823
|
+
extend Increase::Internal::Type::Enum
|
|
1824
|
+
|
|
1825
|
+
# EUR
|
|
1826
|
+
EUR: :EUR
|
|
1827
|
+
|
|
1828
|
+
def self?.values: -> ::Array[Increase::Models::PendingTransaction::Source::SepaInstantTransferInstruction::currency]
|
|
1829
|
+
end
|
|
1830
|
+
end
|
|
1831
|
+
|
|
1781
1832
|
type swift_transfer_instruction = { transfer_id: String }
|
|
1782
1833
|
|
|
1783
1834
|
class SwiftTransferInstruction < Increase::Internal::Type::BaseModel
|
|
@@ -1788,6 +1839,39 @@ module Increase
|
|
|
1788
1839
|
def to_hash: -> { transfer_id: String }
|
|
1789
1840
|
end
|
|
1790
1841
|
|
|
1842
|
+
type uk_faster_payment_system_transfer_instruction =
|
|
1843
|
+
{
|
|
1844
|
+
amount: Integer,
|
|
1845
|
+
currency: Increase::Models::PendingTransaction::Source::UkFasterPaymentSystemTransferInstruction::currency
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
class UkFasterPaymentSystemTransferInstruction < Increase::Internal::Type::BaseModel
|
|
1849
|
+
attr_accessor amount: Integer
|
|
1850
|
+
|
|
1851
|
+
attr_accessor currency: Increase::Models::PendingTransaction::Source::UkFasterPaymentSystemTransferInstruction::currency
|
|
1852
|
+
|
|
1853
|
+
def initialize: (
|
|
1854
|
+
amount: Integer,
|
|
1855
|
+
currency: Increase::Models::PendingTransaction::Source::UkFasterPaymentSystemTransferInstruction::currency
|
|
1856
|
+
) -> void
|
|
1857
|
+
|
|
1858
|
+
def to_hash: -> {
|
|
1859
|
+
amount: Integer,
|
|
1860
|
+
currency: Increase::Models::PendingTransaction::Source::UkFasterPaymentSystemTransferInstruction::currency
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
type currency = :GBP
|
|
1864
|
+
|
|
1865
|
+
module Currency
|
|
1866
|
+
extend Increase::Internal::Type::Enum
|
|
1867
|
+
|
|
1868
|
+
# GBP
|
|
1869
|
+
GBP: :GBP
|
|
1870
|
+
|
|
1871
|
+
def self?.values: -> ::Array[Increase::Models::PendingTransaction::Source::UkFasterPaymentSystemTransferInstruction::currency]
|
|
1872
|
+
end
|
|
1873
|
+
end
|
|
1874
|
+
|
|
1791
1875
|
type wire_transfer_instruction =
|
|
1792
1876
|
{
|
|
1793
1877
|
account_number: String,
|
|
@@ -108,6 +108,8 @@ module Increase
|
|
|
108
108
|
| :card_push_transfer_instruction
|
|
109
109
|
| :blockchain_onramp_transfer_instruction
|
|
110
110
|
| :blockchain_offramp_transfer
|
|
111
|
+
| :uk_faster_payment_system_transfer_instruction
|
|
112
|
+
| :sepa_instant_transfer_instruction
|
|
111
113
|
| :other
|
|
112
114
|
|
|
113
115
|
module In
|
|
@@ -158,6 +160,12 @@ module Increase
|
|
|
158
160
|
# Blockchain Off-Ramp Transfer: details will be under the `blockchain_offramp_transfer` object.
|
|
159
161
|
BLOCKCHAIN_OFFRAMP_TRANSFER: :blockchain_offramp_transfer
|
|
160
162
|
|
|
163
|
+
# UK Faster Payment System Transfer Instruction: details will be under the `uk_faster_payment_system_transfer_instruction` object.
|
|
164
|
+
UK_FASTER_PAYMENT_SYSTEM_TRANSFER_INSTRUCTION: :uk_faster_payment_system_transfer_instruction
|
|
165
|
+
|
|
166
|
+
# SEPA Instant Transfer Instruction: details will be under the `sepa_instant_transfer_instruction` object.
|
|
167
|
+
SEPA_INSTANT_TRANSFER_INSTRUCTION: :sepa_instant_transfer_instruction
|
|
168
|
+
|
|
161
169
|
# The Pending Transaction was made for an undocumented or deprecated reason.
|
|
162
170
|
OTHER: :other
|
|
163
171
|
|
|
@@ -128,8 +128,10 @@ module Increase
|
|
|
128
128
|
other: Increase::Transaction::Source::Other?,
|
|
129
129
|
real_time_payments_transfer_acknowledgement: Increase::Transaction::Source::RealTimePaymentsTransferAcknowledgement?,
|
|
130
130
|
sample_funds: Increase::Transaction::Source::SampleFunds?,
|
|
131
|
+
sepa_instant_transfer_acceptance: Increase::Transaction::Source::SepaInstantTransferAcceptance?,
|
|
131
132
|
swift_transfer_intention: Increase::Transaction::Source::SwiftTransferIntention?,
|
|
132
133
|
swift_transfer_return: Increase::Transaction::Source::SwiftTransferReturn?,
|
|
134
|
+
uk_faster_payment_system_transfer_acceptance: Increase::Transaction::Source::UkFasterPaymentSystemTransferAcceptance?,
|
|
133
135
|
wire_transfer_intention: Increase::Transaction::Source::WireTransferIntention?
|
|
134
136
|
}
|
|
135
137
|
|
|
@@ -208,10 +210,14 @@ module Increase
|
|
|
208
210
|
|
|
209
211
|
attr_accessor sample_funds: Increase::Transaction::Source::SampleFunds?
|
|
210
212
|
|
|
213
|
+
attr_accessor sepa_instant_transfer_acceptance: Increase::Transaction::Source::SepaInstantTransferAcceptance?
|
|
214
|
+
|
|
211
215
|
attr_accessor swift_transfer_intention: Increase::Transaction::Source::SwiftTransferIntention?
|
|
212
216
|
|
|
213
217
|
attr_accessor swift_transfer_return: Increase::Transaction::Source::SwiftTransferReturn?
|
|
214
218
|
|
|
219
|
+
attr_accessor uk_faster_payment_system_transfer_acceptance: Increase::Transaction::Source::UkFasterPaymentSystemTransferAcceptance?
|
|
220
|
+
|
|
215
221
|
attr_accessor wire_transfer_intention: Increase::Transaction::Source::WireTransferIntention?
|
|
216
222
|
|
|
217
223
|
def initialize: (
|
|
@@ -252,8 +258,10 @@ module Increase
|
|
|
252
258
|
?other: Increase::Transaction::Source::Other?,
|
|
253
259
|
?real_time_payments_transfer_acknowledgement: Increase::Transaction::Source::RealTimePaymentsTransferAcknowledgement?,
|
|
254
260
|
?sample_funds: Increase::Transaction::Source::SampleFunds?,
|
|
261
|
+
?sepa_instant_transfer_acceptance: Increase::Transaction::Source::SepaInstantTransferAcceptance?,
|
|
255
262
|
?swift_transfer_intention: Increase::Transaction::Source::SwiftTransferIntention?,
|
|
256
263
|
?swift_transfer_return: Increase::Transaction::Source::SwiftTransferReturn?,
|
|
264
|
+
?uk_faster_payment_system_transfer_acceptance: Increase::Transaction::Source::UkFasterPaymentSystemTransferAcceptance?,
|
|
257
265
|
?wire_transfer_intention: Increase::Transaction::Source::WireTransferIntention?
|
|
258
266
|
) -> void
|
|
259
267
|
|
|
@@ -295,8 +303,10 @@ module Increase
|
|
|
295
303
|
other: Increase::Transaction::Source::Other?,
|
|
296
304
|
real_time_payments_transfer_acknowledgement: Increase::Transaction::Source::RealTimePaymentsTransferAcknowledgement?,
|
|
297
305
|
sample_funds: Increase::Transaction::Source::SampleFunds?,
|
|
306
|
+
sepa_instant_transfer_acceptance: Increase::Transaction::Source::SepaInstantTransferAcceptance?,
|
|
298
307
|
swift_transfer_intention: Increase::Transaction::Source::SwiftTransferIntention?,
|
|
299
308
|
swift_transfer_return: Increase::Transaction::Source::SwiftTransferReturn?,
|
|
309
|
+
uk_faster_payment_system_transfer_acceptance: Increase::Transaction::Source::UkFasterPaymentSystemTransferAcceptance?,
|
|
300
310
|
wire_transfer_intention: Increase::Transaction::Source::WireTransferIntention?
|
|
301
311
|
}
|
|
302
312
|
|
|
@@ -339,6 +349,8 @@ module Increase
|
|
|
339
349
|
| :account_revenue_payment
|
|
340
350
|
| :blockchain_onramp_transfer_intention
|
|
341
351
|
| :blockchain_offramp_transfer_settlement
|
|
352
|
+
| :uk_faster_payment_system_transfer_acceptance
|
|
353
|
+
| :sepa_instant_transfer_acceptance
|
|
342
354
|
| :other
|
|
343
355
|
|
|
344
356
|
module Category
|
|
@@ -458,6 +470,12 @@ module Increase
|
|
|
458
470
|
# Blockchain Off-Ramp Transfer Settlement: details will be under the `blockchain_offramp_transfer_settlement` object.
|
|
459
471
|
BLOCKCHAIN_OFFRAMP_TRANSFER_SETTLEMENT: :blockchain_offramp_transfer_settlement
|
|
460
472
|
|
|
473
|
+
# UK Faster Payment System Transfer Acceptance: details will be under the `uk_faster_payment_system_transfer_acceptance` object.
|
|
474
|
+
UK_FASTER_PAYMENT_SYSTEM_TRANSFER_ACCEPTANCE: :uk_faster_payment_system_transfer_acceptance
|
|
475
|
+
|
|
476
|
+
# SEPA Instant Transfer Acceptance: details will be under the `sepa_instant_transfer_acceptance` object.
|
|
477
|
+
SEPA_INSTANT_TRANSFER_ACCEPTANCE: :sepa_instant_transfer_acceptance
|
|
478
|
+
|
|
461
479
|
# The Transaction was made for an undocumented or deprecated reason.
|
|
462
480
|
OTHER: :other
|
|
463
481
|
|
|
@@ -5797,6 +5815,22 @@ module Increase
|
|
|
5797
5815
|
def to_hash: -> { originator: String }
|
|
5798
5816
|
end
|
|
5799
5817
|
|
|
5818
|
+
type sepa_instant_transfer_acceptance =
|
|
5819
|
+
{ accepted_at: Time, settlement_amount: Integer }
|
|
5820
|
+
|
|
5821
|
+
class SepaInstantTransferAcceptance < Increase::Internal::Type::BaseModel
|
|
5822
|
+
attr_accessor accepted_at: Time
|
|
5823
|
+
|
|
5824
|
+
attr_accessor settlement_amount: Integer
|
|
5825
|
+
|
|
5826
|
+
def initialize: (
|
|
5827
|
+
accepted_at: Time,
|
|
5828
|
+
settlement_amount: Integer
|
|
5829
|
+
) -> void
|
|
5830
|
+
|
|
5831
|
+
def to_hash: -> { accepted_at: Time, settlement_amount: Integer }
|
|
5832
|
+
end
|
|
5833
|
+
|
|
5800
5834
|
type swift_transfer_intention = { transfer_id: String }
|
|
5801
5835
|
|
|
5802
5836
|
class SwiftTransferIntention < Increase::Internal::Type::BaseModel
|
|
@@ -5817,6 +5851,22 @@ module Increase
|
|
|
5817
5851
|
def to_hash: -> { transfer_id: String }
|
|
5818
5852
|
end
|
|
5819
5853
|
|
|
5854
|
+
type uk_faster_payment_system_transfer_acceptance =
|
|
5855
|
+
{ accepted_at: Time, settlement_amount: Integer }
|
|
5856
|
+
|
|
5857
|
+
class UkFasterPaymentSystemTransferAcceptance < Increase::Internal::Type::BaseModel
|
|
5858
|
+
attr_accessor accepted_at: Time
|
|
5859
|
+
|
|
5860
|
+
attr_accessor settlement_amount: Integer
|
|
5861
|
+
|
|
5862
|
+
def initialize: (
|
|
5863
|
+
accepted_at: Time,
|
|
5864
|
+
settlement_amount: Integer
|
|
5865
|
+
) -> void
|
|
5866
|
+
|
|
5867
|
+
def to_hash: -> { accepted_at: Time, settlement_amount: Integer }
|
|
5868
|
+
end
|
|
5869
|
+
|
|
5820
5870
|
type wire_transfer_intention =
|
|
5821
5871
|
{
|
|
5822
5872
|
account_number: String,
|
|
@@ -120,6 +120,8 @@ module Increase
|
|
|
120
120
|
| :account_revenue_payment
|
|
121
121
|
| :blockchain_onramp_transfer_intention
|
|
122
122
|
| :blockchain_offramp_transfer_settlement
|
|
123
|
+
| :uk_faster_payment_system_transfer_acceptance
|
|
124
|
+
| :sepa_instant_transfer_acceptance
|
|
123
125
|
| :other
|
|
124
126
|
|
|
125
127
|
module In
|
|
@@ -239,6 +241,12 @@ module Increase
|
|
|
239
241
|
# Blockchain Off-Ramp Transfer Settlement: details will be under the `blockchain_offramp_transfer_settlement` object.
|
|
240
242
|
BLOCKCHAIN_OFFRAMP_TRANSFER_SETTLEMENT: :blockchain_offramp_transfer_settlement
|
|
241
243
|
|
|
244
|
+
# UK Faster Payment System Transfer Acceptance: details will be under the `uk_faster_payment_system_transfer_acceptance` object.
|
|
245
|
+
UK_FASTER_PAYMENT_SYSTEM_TRANSFER_ACCEPTANCE: :uk_faster_payment_system_transfer_acceptance
|
|
246
|
+
|
|
247
|
+
# SEPA Instant Transfer Acceptance: details will be under the `sepa_instant_transfer_acceptance` object.
|
|
248
|
+
SEPA_INSTANT_TRANSFER_ACCEPTANCE: :sepa_instant_transfer_acceptance
|
|
249
|
+
|
|
242
250
|
# The Transaction was made for an undocumented or deprecated reason.
|
|
243
251
|
OTHER: :other
|
|
244
252
|
|
|
@@ -158,9 +158,13 @@ module Increase
|
|
|
158
158
|
| :"real_time_payments_transfer.updated"
|
|
159
159
|
| :"real_time_payments_request_for_payment.created"
|
|
160
160
|
| :"real_time_payments_request_for_payment.updated"
|
|
161
|
+
| :"sepa_instant_transfer.created"
|
|
162
|
+
| :"sepa_instant_transfer.updated"
|
|
161
163
|
| :"swift_transfer.created"
|
|
162
164
|
| :"swift_transfer.updated"
|
|
163
165
|
| :"transaction.created"
|
|
166
|
+
| :"uk_faster_payment_system_transfer.created"
|
|
167
|
+
| :"uk_faster_payment_system_transfer.updated"
|
|
164
168
|
| :"wire_drawdown_request.created"
|
|
165
169
|
| :"wire_drawdown_request.updated"
|
|
166
170
|
| :"wire_transfer.created"
|
|
@@ -517,6 +521,12 @@ module Increase
|
|
|
517
521
|
# Occurs whenever a Real-Time Payments Request for Payment is updated.
|
|
518
522
|
REAL_TIME_PAYMENTS_REQUEST_FOR_PAYMENT_UPDATED: :"real_time_payments_request_for_payment.updated"
|
|
519
523
|
|
|
524
|
+
# Occurs whenever a SEPA Instant Transfer is created.
|
|
525
|
+
SEPA_INSTANT_TRANSFER_CREATED: :"sepa_instant_transfer.created"
|
|
526
|
+
|
|
527
|
+
# Occurs whenever a SEPA Instant Transfer is updated.
|
|
528
|
+
SEPA_INSTANT_TRANSFER_UPDATED: :"sepa_instant_transfer.updated"
|
|
529
|
+
|
|
520
530
|
# Occurs whenever a Swift Transfer is created.
|
|
521
531
|
SWIFT_TRANSFER_CREATED: :"swift_transfer.created"
|
|
522
532
|
|
|
@@ -526,6 +536,12 @@ module Increase
|
|
|
526
536
|
# Occurs whenever a Transaction is created.
|
|
527
537
|
TRANSACTION_CREATED: :"transaction.created"
|
|
528
538
|
|
|
539
|
+
# Occurs whenever a UK Faster Payment System Transfer is created.
|
|
540
|
+
UK_FASTER_PAYMENT_SYSTEM_TRANSFER_CREATED: :"uk_faster_payment_system_transfer.created"
|
|
541
|
+
|
|
542
|
+
# Occurs whenever a UK Faster Payment System Transfer is updated.
|
|
543
|
+
UK_FASTER_PAYMENT_SYSTEM_TRANSFER_UPDATED: :"uk_faster_payment_system_transfer.updated"
|
|
544
|
+
|
|
529
545
|
# Occurs whenever a Wire Drawdown Request is created.
|
|
530
546
|
WIRE_DRAWDOWN_REQUEST_CREATED: :"wire_drawdown_request.created"
|
|
531
547
|
|
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.352.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-09-
|
|
11
|
+
date: 2026-09-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|