increase 1.215.0 → 1.217.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 +18 -0
- data/README.md +1 -1
- data/lib/increase/models/check_deposit.rb +71 -1
- data/lib/increase/models/event_subscription.rb +246 -234
- data/lib/increase/models/real_time_decision_action_params.rb +38 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/check_deposit.rbi +132 -0
- data/rbi/increase/models/event_subscription.rbi +830 -779
- data/rbi/increase/models/real_time_decision_action_params.rbi +70 -3
- data/sig/increase/models/check_deposit.rbs +65 -0
- data/sig/increase/models/event_subscription.rbs +367 -350
- data/sig/increase/models/real_time_decision_action_params.rbs +28 -3
- metadata +1 -1
|
@@ -32,11 +32,11 @@ module Increase
|
|
|
32
32
|
sig do
|
|
33
33
|
returns(
|
|
34
34
|
T.nilable(
|
|
35
|
-
Increase::EventSubscription::SelectedEventCategory
|
|
35
|
+
T::Array[Increase::EventSubscription::SelectedEventCategory]
|
|
36
36
|
)
|
|
37
37
|
)
|
|
38
38
|
end
|
|
39
|
-
attr_accessor :
|
|
39
|
+
attr_accessor :selected_event_categories
|
|
40
40
|
|
|
41
41
|
# This indicates if we'll send notifications to this subscription.
|
|
42
42
|
sig { returns(Increase::EventSubscription::Status::TaggedSymbol) }
|
|
@@ -63,9 +63,11 @@ module Increase
|
|
|
63
63
|
created_at: Time,
|
|
64
64
|
idempotency_key: T.nilable(String),
|
|
65
65
|
oauth_connection_id: T.nilable(String),
|
|
66
|
-
|
|
66
|
+
selected_event_categories:
|
|
67
67
|
T.nilable(
|
|
68
|
-
|
|
68
|
+
T::Array[
|
|
69
|
+
Increase::EventSubscription::SelectedEventCategory::OrHash
|
|
70
|
+
]
|
|
69
71
|
),
|
|
70
72
|
status: Increase::EventSubscription::Status::OrSymbol,
|
|
71
73
|
type: Increase::EventSubscription::Type::OrSymbol,
|
|
@@ -86,7 +88,7 @@ module Increase
|
|
|
86
88
|
oauth_connection_id:,
|
|
87
89
|
# If specified, this subscription will only receive webhooks for Events with the
|
|
88
90
|
# specified `category`.
|
|
89
|
-
|
|
91
|
+
selected_event_categories:,
|
|
90
92
|
# This indicates if we'll send notifications to this subscription.
|
|
91
93
|
status:,
|
|
92
94
|
# A constant representing the object's type. For this resource it will always be
|
|
@@ -104,9 +106,9 @@ module Increase
|
|
|
104
106
|
created_at: Time,
|
|
105
107
|
idempotency_key: T.nilable(String),
|
|
106
108
|
oauth_connection_id: T.nilable(String),
|
|
107
|
-
|
|
109
|
+
selected_event_categories:
|
|
108
110
|
T.nilable(
|
|
109
|
-
Increase::EventSubscription::SelectedEventCategory
|
|
111
|
+
T::Array[Increase::EventSubscription::SelectedEventCategory]
|
|
110
112
|
),
|
|
111
113
|
status: Increase::EventSubscription::Status::TaggedSymbol,
|
|
112
114
|
type: Increase::EventSubscription::Type::TaggedSymbol,
|
|
@@ -117,788 +119,837 @@ module Increase
|
|
|
117
119
|
def to_hash
|
|
118
120
|
end
|
|
119
121
|
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
module SelectedEventCategory
|
|
123
|
-
extend Increase::Internal::Type::Enum
|
|
124
|
-
|
|
125
|
-
TaggedSymbol =
|
|
122
|
+
class SelectedEventCategory < Increase::Internal::Type::BaseModel
|
|
123
|
+
OrHash =
|
|
126
124
|
T.type_alias do
|
|
127
|
-
T.
|
|
125
|
+
T.any(
|
|
126
|
+
Increase::EventSubscription::SelectedEventCategory,
|
|
127
|
+
Increase::Internal::AnyHash
|
|
128
|
+
)
|
|
128
129
|
end
|
|
129
|
-
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
130
|
-
|
|
131
|
-
# Occurs whenever an Account is created.
|
|
132
|
-
ACCOUNT_CREATED =
|
|
133
|
-
T.let(
|
|
134
|
-
:"account.created",
|
|
135
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
136
|
-
)
|
|
137
|
-
|
|
138
|
-
# Occurs whenever an Account is updated.
|
|
139
|
-
ACCOUNT_UPDATED =
|
|
140
|
-
T.let(
|
|
141
|
-
:"account.updated",
|
|
142
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
143
|
-
)
|
|
144
|
-
|
|
145
|
-
# Occurs whenever an Account Number is created.
|
|
146
|
-
ACCOUNT_NUMBER_CREATED =
|
|
147
|
-
T.let(
|
|
148
|
-
:"account_number.created",
|
|
149
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
150
|
-
)
|
|
151
|
-
|
|
152
|
-
# Occurs whenever an Account Number is updated.
|
|
153
|
-
ACCOUNT_NUMBER_UPDATED =
|
|
154
|
-
T.let(
|
|
155
|
-
:"account_number.updated",
|
|
156
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
157
|
-
)
|
|
158
|
-
|
|
159
|
-
# Occurs whenever an Account Statement is created.
|
|
160
|
-
ACCOUNT_STATEMENT_CREATED =
|
|
161
|
-
T.let(
|
|
162
|
-
:"account_statement.created",
|
|
163
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
164
|
-
)
|
|
165
|
-
|
|
166
|
-
# Occurs whenever an Account Transfer is created.
|
|
167
|
-
ACCOUNT_TRANSFER_CREATED =
|
|
168
|
-
T.let(
|
|
169
|
-
:"account_transfer.created",
|
|
170
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
171
|
-
)
|
|
172
|
-
|
|
173
|
-
# Occurs whenever an Account Transfer is updated.
|
|
174
|
-
ACCOUNT_TRANSFER_UPDATED =
|
|
175
|
-
T.let(
|
|
176
|
-
:"account_transfer.updated",
|
|
177
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
178
|
-
)
|
|
179
|
-
|
|
180
|
-
# Occurs whenever an ACH Prenotification is created.
|
|
181
|
-
ACH_PRENOTIFICATION_CREATED =
|
|
182
|
-
T.let(
|
|
183
|
-
:"ach_prenotification.created",
|
|
184
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
185
|
-
)
|
|
186
|
-
|
|
187
|
-
# Occurs whenever an ACH Prenotification is updated.
|
|
188
|
-
ACH_PRENOTIFICATION_UPDATED =
|
|
189
|
-
T.let(
|
|
190
|
-
:"ach_prenotification.updated",
|
|
191
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
192
|
-
)
|
|
193
|
-
|
|
194
|
-
# Occurs whenever an ACH Transfer is created.
|
|
195
|
-
ACH_TRANSFER_CREATED =
|
|
196
|
-
T.let(
|
|
197
|
-
:"ach_transfer.created",
|
|
198
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
199
|
-
)
|
|
200
|
-
|
|
201
|
-
# Occurs whenever an ACH Transfer is updated.
|
|
202
|
-
ACH_TRANSFER_UPDATED =
|
|
203
|
-
T.let(
|
|
204
|
-
:"ach_transfer.updated",
|
|
205
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
206
|
-
)
|
|
207
|
-
|
|
208
|
-
# Occurs whenever a Blockchain Address is created.
|
|
209
|
-
BLOCKCHAIN_ADDRESS_CREATED =
|
|
210
|
-
T.let(
|
|
211
|
-
:"blockchain_address.created",
|
|
212
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
213
|
-
)
|
|
214
|
-
|
|
215
|
-
# Occurs whenever a Blockchain Address is updated.
|
|
216
|
-
BLOCKCHAIN_ADDRESS_UPDATED =
|
|
217
|
-
T.let(
|
|
218
|
-
:"blockchain_address.updated",
|
|
219
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
220
|
-
)
|
|
221
|
-
|
|
222
|
-
# Occurs whenever a Blockchain Off-Ramp Transfer is created.
|
|
223
|
-
BLOCKCHAIN_OFFRAMP_TRANSFER_CREATED =
|
|
224
|
-
T.let(
|
|
225
|
-
:"blockchain_offramp_transfer.created",
|
|
226
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
227
|
-
)
|
|
228
|
-
|
|
229
|
-
# Occurs whenever a Blockchain Off-Ramp Transfer is updated.
|
|
230
|
-
BLOCKCHAIN_OFFRAMP_TRANSFER_UPDATED =
|
|
231
|
-
T.let(
|
|
232
|
-
:"blockchain_offramp_transfer.updated",
|
|
233
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
234
|
-
)
|
|
235
|
-
|
|
236
|
-
# Occurs whenever a Blockchain On-Ramp Transfer is created.
|
|
237
|
-
BLOCKCHAIN_ONRAMP_TRANSFER_CREATED =
|
|
238
|
-
T.let(
|
|
239
|
-
:"blockchain_onramp_transfer.created",
|
|
240
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
241
|
-
)
|
|
242
|
-
|
|
243
|
-
# Occurs whenever a Blockchain On-Ramp Transfer is updated.
|
|
244
|
-
BLOCKCHAIN_ONRAMP_TRANSFER_UPDATED =
|
|
245
|
-
T.let(
|
|
246
|
-
:"blockchain_onramp_transfer.updated",
|
|
247
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
248
|
-
)
|
|
249
|
-
|
|
250
|
-
# Occurs whenever a Bookkeeping Account is created.
|
|
251
|
-
BOOKKEEPING_ACCOUNT_CREATED =
|
|
252
|
-
T.let(
|
|
253
|
-
:"bookkeeping_account.created",
|
|
254
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
255
|
-
)
|
|
256
|
-
|
|
257
|
-
# Occurs whenever a Bookkeeping Account is updated.
|
|
258
|
-
BOOKKEEPING_ACCOUNT_UPDATED =
|
|
259
|
-
T.let(
|
|
260
|
-
:"bookkeeping_account.updated",
|
|
261
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
262
|
-
)
|
|
263
|
-
|
|
264
|
-
# Occurs whenever a Bookkeeping Entry Set is created.
|
|
265
|
-
BOOKKEEPING_ENTRY_SET_UPDATED =
|
|
266
|
-
T.let(
|
|
267
|
-
:"bookkeeping_entry_set.updated",
|
|
268
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
269
|
-
)
|
|
270
|
-
|
|
271
|
-
# Occurs whenever a Card is created.
|
|
272
|
-
CARD_CREATED =
|
|
273
|
-
T.let(
|
|
274
|
-
:"card.created",
|
|
275
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
276
|
-
)
|
|
277
|
-
|
|
278
|
-
# Occurs whenever a Card is updated.
|
|
279
|
-
CARD_UPDATED =
|
|
280
|
-
T.let(
|
|
281
|
-
:"card.updated",
|
|
282
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
283
|
-
)
|
|
284
|
-
|
|
285
|
-
# Occurs whenever a Card Payment is created.
|
|
286
|
-
CARD_PAYMENT_CREATED =
|
|
287
|
-
T.let(
|
|
288
|
-
:"card_payment.created",
|
|
289
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
290
|
-
)
|
|
291
|
-
|
|
292
|
-
# Occurs whenever a Card Payment is updated.
|
|
293
|
-
CARD_PAYMENT_UPDATED =
|
|
294
|
-
T.let(
|
|
295
|
-
:"card_payment.updated",
|
|
296
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
297
|
-
)
|
|
298
|
-
|
|
299
|
-
# Occurs whenever a Card Profile is created.
|
|
300
|
-
CARD_PROFILE_CREATED =
|
|
301
|
-
T.let(
|
|
302
|
-
:"card_profile.created",
|
|
303
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
304
|
-
)
|
|
305
|
-
|
|
306
|
-
# Occurs whenever a Card Profile is updated.
|
|
307
|
-
CARD_PROFILE_UPDATED =
|
|
308
|
-
T.let(
|
|
309
|
-
:"card_profile.updated",
|
|
310
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
311
|
-
)
|
|
312
|
-
|
|
313
|
-
# Occurs whenever a Card Dispute is created.
|
|
314
|
-
CARD_DISPUTE_CREATED =
|
|
315
|
-
T.let(
|
|
316
|
-
:"card_dispute.created",
|
|
317
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
318
|
-
)
|
|
319
|
-
|
|
320
|
-
# Occurs whenever a Card Dispute is updated.
|
|
321
|
-
CARD_DISPUTE_UPDATED =
|
|
322
|
-
T.let(
|
|
323
|
-
:"card_dispute.updated",
|
|
324
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
325
|
-
)
|
|
326
|
-
|
|
327
|
-
# Occurs whenever a Check Deposit is created.
|
|
328
|
-
CHECK_DEPOSIT_CREATED =
|
|
329
|
-
T.let(
|
|
330
|
-
:"check_deposit.created",
|
|
331
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
332
|
-
)
|
|
333
|
-
|
|
334
|
-
# Occurs whenever a Check Deposit is updated.
|
|
335
|
-
CHECK_DEPOSIT_UPDATED =
|
|
336
|
-
T.let(
|
|
337
|
-
:"check_deposit.updated",
|
|
338
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
339
|
-
)
|
|
340
|
-
|
|
341
|
-
# Occurs whenever a Check Transfer is created.
|
|
342
|
-
CHECK_TRANSFER_CREATED =
|
|
343
|
-
T.let(
|
|
344
|
-
:"check_transfer.created",
|
|
345
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
346
|
-
)
|
|
347
|
-
|
|
348
|
-
# Occurs whenever a Check Transfer is updated.
|
|
349
|
-
CHECK_TRANSFER_UPDATED =
|
|
350
|
-
T.let(
|
|
351
|
-
:"check_transfer.updated",
|
|
352
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
353
|
-
)
|
|
354
|
-
|
|
355
|
-
# Occurs whenever a Declined Transaction is created.
|
|
356
|
-
DECLINED_TRANSACTION_CREATED =
|
|
357
|
-
T.let(
|
|
358
|
-
:"declined_transaction.created",
|
|
359
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
360
|
-
)
|
|
361
|
-
|
|
362
|
-
# Occurs whenever a Digital Card Profile is created.
|
|
363
|
-
DIGITAL_CARD_PROFILE_CREATED =
|
|
364
|
-
T.let(
|
|
365
|
-
:"digital_card_profile.created",
|
|
366
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
367
|
-
)
|
|
368
|
-
|
|
369
|
-
# Occurs whenever a Digital Card Profile is updated.
|
|
370
|
-
DIGITAL_CARD_PROFILE_UPDATED =
|
|
371
|
-
T.let(
|
|
372
|
-
:"digital_card_profile.updated",
|
|
373
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
374
|
-
)
|
|
375
|
-
|
|
376
|
-
# Occurs whenever a Digital Wallet Token is created.
|
|
377
|
-
DIGITAL_WALLET_TOKEN_CREATED =
|
|
378
|
-
T.let(
|
|
379
|
-
:"digital_wallet_token.created",
|
|
380
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
381
|
-
)
|
|
382
|
-
|
|
383
|
-
# Occurs whenever a Digital Wallet Token is updated.
|
|
384
|
-
DIGITAL_WALLET_TOKEN_UPDATED =
|
|
385
|
-
T.let(
|
|
386
|
-
:"digital_wallet_token.updated",
|
|
387
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
388
|
-
)
|
|
389
|
-
|
|
390
|
-
# Occurs whenever a Document is created.
|
|
391
|
-
DOCUMENT_CREATED =
|
|
392
|
-
T.let(
|
|
393
|
-
:"document.created",
|
|
394
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
395
|
-
)
|
|
396
|
-
|
|
397
|
-
# Occurs whenever an Entity is created.
|
|
398
|
-
ENTITY_CREATED =
|
|
399
|
-
T.let(
|
|
400
|
-
:"entity.created",
|
|
401
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
402
|
-
)
|
|
403
|
-
|
|
404
|
-
# Occurs whenever an Entity is updated.
|
|
405
|
-
ENTITY_UPDATED =
|
|
406
|
-
T.let(
|
|
407
|
-
:"entity.updated",
|
|
408
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
409
|
-
)
|
|
410
|
-
|
|
411
|
-
# Occurs whenever an Event Subscription is created.
|
|
412
|
-
EVENT_SUBSCRIPTION_CREATED =
|
|
413
|
-
T.let(
|
|
414
|
-
:"event_subscription.created",
|
|
415
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
416
|
-
)
|
|
417
130
|
|
|
418
|
-
#
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
# Occurs whenever an Export is created.
|
|
426
|
-
EXPORT_CREATED =
|
|
427
|
-
T.let(
|
|
428
|
-
:"export.created",
|
|
429
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
430
|
-
)
|
|
431
|
-
|
|
432
|
-
# Occurs whenever an Export is updated.
|
|
433
|
-
EXPORT_UPDATED =
|
|
434
|
-
T.let(
|
|
435
|
-
:"export.updated",
|
|
436
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
437
|
-
)
|
|
438
|
-
|
|
439
|
-
# Occurs whenever an External Account is created.
|
|
440
|
-
EXTERNAL_ACCOUNT_CREATED =
|
|
441
|
-
T.let(
|
|
442
|
-
:"external_account.created",
|
|
443
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
444
|
-
)
|
|
445
|
-
|
|
446
|
-
# Occurs whenever an External Account is updated.
|
|
447
|
-
EXTERNAL_ACCOUNT_UPDATED =
|
|
448
|
-
T.let(
|
|
449
|
-
:"external_account.updated",
|
|
450
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
451
|
-
)
|
|
452
|
-
|
|
453
|
-
# Occurs whenever a FedNow Transfer is created.
|
|
454
|
-
FEDNOW_TRANSFER_CREATED =
|
|
455
|
-
T.let(
|
|
456
|
-
:"fednow_transfer.created",
|
|
457
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
458
|
-
)
|
|
459
|
-
|
|
460
|
-
# Occurs whenever a FedNow Transfer is updated.
|
|
461
|
-
FEDNOW_TRANSFER_UPDATED =
|
|
462
|
-
T.let(
|
|
463
|
-
:"fednow_transfer.updated",
|
|
464
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
465
|
-
)
|
|
466
|
-
|
|
467
|
-
# Occurs whenever a File is created.
|
|
468
|
-
FILE_CREATED =
|
|
469
|
-
T.let(
|
|
470
|
-
:"file.created",
|
|
471
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
472
|
-
)
|
|
473
|
-
|
|
474
|
-
# Occurs whenever a Group is updated.
|
|
475
|
-
GROUP_UPDATED =
|
|
476
|
-
T.let(
|
|
477
|
-
:"group.updated",
|
|
478
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
479
|
-
)
|
|
480
|
-
|
|
481
|
-
# Increase may send webhooks with this category to see if a webhook endpoint is working properly.
|
|
482
|
-
GROUP_HEARTBEAT =
|
|
483
|
-
T.let(
|
|
484
|
-
:"group.heartbeat",
|
|
485
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
486
|
-
)
|
|
487
|
-
|
|
488
|
-
# Occurs whenever an Inbound ACH Transfer is created.
|
|
489
|
-
INBOUND_ACH_TRANSFER_CREATED =
|
|
490
|
-
T.let(
|
|
491
|
-
:"inbound_ach_transfer.created",
|
|
492
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
493
|
-
)
|
|
494
|
-
|
|
495
|
-
# Occurs whenever an Inbound ACH Transfer is updated.
|
|
496
|
-
INBOUND_ACH_TRANSFER_UPDATED =
|
|
497
|
-
T.let(
|
|
498
|
-
:"inbound_ach_transfer.updated",
|
|
499
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
500
|
-
)
|
|
501
|
-
|
|
502
|
-
# Occurs whenever an Inbound ACH Transfer Return is created.
|
|
503
|
-
INBOUND_ACH_TRANSFER_RETURN_CREATED =
|
|
504
|
-
T.let(
|
|
505
|
-
:"inbound_ach_transfer_return.created",
|
|
506
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
507
|
-
)
|
|
508
|
-
|
|
509
|
-
# Occurs whenever an Inbound ACH Transfer Return is updated.
|
|
510
|
-
INBOUND_ACH_TRANSFER_RETURN_UPDATED =
|
|
511
|
-
T.let(
|
|
512
|
-
:"inbound_ach_transfer_return.updated",
|
|
513
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
514
|
-
)
|
|
515
|
-
|
|
516
|
-
# Occurs whenever an Inbound Check Deposit is created.
|
|
517
|
-
INBOUND_CHECK_DEPOSIT_CREATED =
|
|
518
|
-
T.let(
|
|
519
|
-
:"inbound_check_deposit.created",
|
|
520
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
521
|
-
)
|
|
522
|
-
|
|
523
|
-
# Occurs whenever an Inbound Check Deposit is updated.
|
|
524
|
-
INBOUND_CHECK_DEPOSIT_UPDATED =
|
|
525
|
-
T.let(
|
|
526
|
-
:"inbound_check_deposit.updated",
|
|
527
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
528
|
-
)
|
|
529
|
-
|
|
530
|
-
# Occurs whenever an Inbound FedNow Transfer is created.
|
|
531
|
-
INBOUND_FEDNOW_TRANSFER_CREATED =
|
|
532
|
-
T.let(
|
|
533
|
-
:"inbound_fednow_transfer.created",
|
|
534
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
535
|
-
)
|
|
536
|
-
|
|
537
|
-
# Occurs whenever an Inbound FedNow Transfer is updated.
|
|
538
|
-
INBOUND_FEDNOW_TRANSFER_UPDATED =
|
|
539
|
-
T.let(
|
|
540
|
-
:"inbound_fednow_transfer.updated",
|
|
541
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
542
|
-
)
|
|
543
|
-
|
|
544
|
-
# Occurs whenever an Inbound Mail Item is created.
|
|
545
|
-
INBOUND_MAIL_ITEM_CREATED =
|
|
546
|
-
T.let(
|
|
547
|
-
:"inbound_mail_item.created",
|
|
548
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
549
|
-
)
|
|
550
|
-
|
|
551
|
-
# Occurs whenever an Inbound Mail Item is updated.
|
|
552
|
-
INBOUND_MAIL_ITEM_UPDATED =
|
|
553
|
-
T.let(
|
|
554
|
-
:"inbound_mail_item.updated",
|
|
555
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
556
|
-
)
|
|
557
|
-
|
|
558
|
-
# Occurs whenever an Inbound Real-Time Payments Transfer is created.
|
|
559
|
-
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_CREATED =
|
|
560
|
-
T.let(
|
|
561
|
-
:"inbound_real_time_payments_transfer.created",
|
|
562
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
563
|
-
)
|
|
564
|
-
|
|
565
|
-
# Occurs whenever an Inbound Real-Time Payments Transfer is updated.
|
|
566
|
-
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_UPDATED =
|
|
567
|
-
T.let(
|
|
568
|
-
:"inbound_real_time_payments_transfer.updated",
|
|
569
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
570
|
-
)
|
|
571
|
-
|
|
572
|
-
# Occurs whenever an Inbound Wire Drawdown Request is created.
|
|
573
|
-
INBOUND_WIRE_DRAWDOWN_REQUEST_CREATED =
|
|
574
|
-
T.let(
|
|
575
|
-
:"inbound_wire_drawdown_request.created",
|
|
576
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
577
|
-
)
|
|
578
|
-
|
|
579
|
-
# Occurs whenever an Inbound Wire Transfer is created.
|
|
580
|
-
INBOUND_WIRE_TRANSFER_CREATED =
|
|
581
|
-
T.let(
|
|
582
|
-
:"inbound_wire_transfer.created",
|
|
583
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
584
|
-
)
|
|
585
|
-
|
|
586
|
-
# Occurs whenever an Inbound Wire Transfer is updated.
|
|
587
|
-
INBOUND_WIRE_TRANSFER_UPDATED =
|
|
588
|
-
T.let(
|
|
589
|
-
:"inbound_wire_transfer.updated",
|
|
590
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
591
|
-
)
|
|
592
|
-
|
|
593
|
-
# Occurs whenever an IntraFi Account Enrollment is created.
|
|
594
|
-
INTRAFI_ACCOUNT_ENROLLMENT_CREATED =
|
|
595
|
-
T.let(
|
|
596
|
-
:"intrafi_account_enrollment.created",
|
|
597
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
598
|
-
)
|
|
599
|
-
|
|
600
|
-
# Occurs whenever an IntraFi Account Enrollment is updated.
|
|
601
|
-
INTRAFI_ACCOUNT_ENROLLMENT_UPDATED =
|
|
602
|
-
T.let(
|
|
603
|
-
:"intrafi_account_enrollment.updated",
|
|
604
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
605
|
-
)
|
|
606
|
-
|
|
607
|
-
# Occurs whenever an IntraFi Exclusion is created.
|
|
608
|
-
INTRAFI_EXCLUSION_CREATED =
|
|
609
|
-
T.let(
|
|
610
|
-
:"intrafi_exclusion.created",
|
|
611
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
612
|
-
)
|
|
613
|
-
|
|
614
|
-
# Occurs whenever an IntraFi Exclusion is updated.
|
|
615
|
-
INTRAFI_EXCLUSION_UPDATED =
|
|
616
|
-
T.let(
|
|
617
|
-
:"intrafi_exclusion.updated",
|
|
618
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
619
|
-
)
|
|
620
|
-
|
|
621
|
-
# Occurs whenever a Legacy Card Dispute is created.
|
|
622
|
-
LEGACY_CARD_DISPUTE_CREATED =
|
|
623
|
-
T.let(
|
|
624
|
-
:"legacy_card_dispute.created",
|
|
625
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
626
|
-
)
|
|
627
|
-
|
|
628
|
-
# Occurs whenever a Legacy Card Dispute is updated.
|
|
629
|
-
LEGACY_CARD_DISPUTE_UPDATED =
|
|
630
|
-
T.let(
|
|
631
|
-
:"legacy_card_dispute.updated",
|
|
632
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
633
|
-
)
|
|
634
|
-
|
|
635
|
-
# Occurs whenever a Lockbox is created.
|
|
636
|
-
LOCKBOX_CREATED =
|
|
637
|
-
T.let(
|
|
638
|
-
:"lockbox.created",
|
|
639
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
640
|
-
)
|
|
641
|
-
|
|
642
|
-
# Occurs whenever a Lockbox is updated.
|
|
643
|
-
LOCKBOX_UPDATED =
|
|
644
|
-
T.let(
|
|
645
|
-
:"lockbox.updated",
|
|
646
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
647
|
-
)
|
|
648
|
-
|
|
649
|
-
# Occurs whenever an OAuth Connection is created.
|
|
650
|
-
OAUTH_CONNECTION_CREATED =
|
|
651
|
-
T.let(
|
|
652
|
-
:"oauth_connection.created",
|
|
653
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
654
|
-
)
|
|
655
|
-
|
|
656
|
-
# Occurs whenever an OAuth Connection is deactivated.
|
|
657
|
-
OAUTH_CONNECTION_DEACTIVATED =
|
|
658
|
-
T.let(
|
|
659
|
-
:"oauth_connection.deactivated",
|
|
660
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
661
|
-
)
|
|
662
|
-
|
|
663
|
-
# Occurs whenever a Card Push Transfer is created.
|
|
664
|
-
CARD_PUSH_TRANSFER_CREATED =
|
|
665
|
-
T.let(
|
|
666
|
-
:"card_push_transfer.created",
|
|
667
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
668
|
-
)
|
|
669
|
-
|
|
670
|
-
# Occurs whenever a Card Push Transfer is updated.
|
|
671
|
-
CARD_PUSH_TRANSFER_UPDATED =
|
|
672
|
-
T.let(
|
|
673
|
-
:"card_push_transfer.updated",
|
|
674
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
675
|
-
)
|
|
676
|
-
|
|
677
|
-
# Occurs whenever a Card Validation is created.
|
|
678
|
-
CARD_VALIDATION_CREATED =
|
|
679
|
-
T.let(
|
|
680
|
-
:"card_validation.created",
|
|
681
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
682
|
-
)
|
|
683
|
-
|
|
684
|
-
# Occurs whenever a Card Validation is updated.
|
|
685
|
-
CARD_VALIDATION_UPDATED =
|
|
686
|
-
T.let(
|
|
687
|
-
:"card_validation.updated",
|
|
688
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
689
|
-
)
|
|
690
|
-
|
|
691
|
-
# Occurs whenever a Pending Transaction is created.
|
|
692
|
-
PENDING_TRANSACTION_CREATED =
|
|
693
|
-
T.let(
|
|
694
|
-
:"pending_transaction.created",
|
|
695
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
696
|
-
)
|
|
697
|
-
|
|
698
|
-
# Occurs whenever a Pending Transaction is updated.
|
|
699
|
-
PENDING_TRANSACTION_UPDATED =
|
|
700
|
-
T.let(
|
|
701
|
-
:"pending_transaction.updated",
|
|
702
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
703
|
-
)
|
|
704
|
-
|
|
705
|
-
# Occurs whenever a Physical Card is created.
|
|
706
|
-
PHYSICAL_CARD_CREATED =
|
|
707
|
-
T.let(
|
|
708
|
-
:"physical_card.created",
|
|
709
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
710
|
-
)
|
|
711
|
-
|
|
712
|
-
# Occurs whenever a Physical Card is updated.
|
|
713
|
-
PHYSICAL_CARD_UPDATED =
|
|
714
|
-
T.let(
|
|
715
|
-
:"physical_card.updated",
|
|
716
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
717
|
-
)
|
|
718
|
-
|
|
719
|
-
# Occurs whenever a Physical Card Profile is created.
|
|
720
|
-
PHYSICAL_CARD_PROFILE_CREATED =
|
|
721
|
-
T.let(
|
|
722
|
-
:"physical_card_profile.created",
|
|
723
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
724
|
-
)
|
|
725
|
-
|
|
726
|
-
# Occurs whenever a Physical Card Profile is updated.
|
|
727
|
-
PHYSICAL_CARD_PROFILE_UPDATED =
|
|
728
|
-
T.let(
|
|
729
|
-
:"physical_card_profile.updated",
|
|
730
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
731
|
-
)
|
|
732
|
-
|
|
733
|
-
# Occurs whenever a Physical Check is created.
|
|
734
|
-
PHYSICAL_CHECK_CREATED =
|
|
735
|
-
T.let(
|
|
736
|
-
:"physical_check.created",
|
|
737
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
738
|
-
)
|
|
739
|
-
|
|
740
|
-
# Occurs whenever a Physical Check is updated.
|
|
741
|
-
PHYSICAL_CHECK_UPDATED =
|
|
742
|
-
T.let(
|
|
743
|
-
:"physical_check.updated",
|
|
744
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
745
|
-
)
|
|
746
|
-
|
|
747
|
-
# Occurs whenever a Program is created.
|
|
748
|
-
PROGRAM_CREATED =
|
|
749
|
-
T.let(
|
|
750
|
-
:"program.created",
|
|
751
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
752
|
-
)
|
|
753
|
-
|
|
754
|
-
# Occurs whenever a Program is updated.
|
|
755
|
-
PROGRAM_UPDATED =
|
|
756
|
-
T.let(
|
|
757
|
-
:"program.updated",
|
|
758
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
759
|
-
)
|
|
760
|
-
|
|
761
|
-
# Occurs whenever a Proof of Authorization Request is created.
|
|
762
|
-
PROOF_OF_AUTHORIZATION_REQUEST_CREATED =
|
|
763
|
-
T.let(
|
|
764
|
-
:"proof_of_authorization_request.created",
|
|
765
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
766
|
-
)
|
|
767
|
-
|
|
768
|
-
# Occurs whenever a Proof of Authorization Request is updated.
|
|
769
|
-
PROOF_OF_AUTHORIZATION_REQUEST_UPDATED =
|
|
770
|
-
T.let(
|
|
771
|
-
:"proof_of_authorization_request.updated",
|
|
772
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
773
|
-
)
|
|
774
|
-
|
|
775
|
-
# Occurs whenever a Real-Time Decision is created in response to a card authorization.
|
|
776
|
-
REAL_TIME_DECISION_CARD_AUTHORIZATION_REQUESTED =
|
|
777
|
-
T.let(
|
|
778
|
-
:"real_time_decision.card_authorization_requested",
|
|
779
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
780
|
-
)
|
|
781
|
-
|
|
782
|
-
# Occurs whenever a Real-Time Decision is created in response to a card balance inquiry.
|
|
783
|
-
REAL_TIME_DECISION_CARD_BALANCE_INQUIRY_REQUESTED =
|
|
784
|
-
T.let(
|
|
785
|
-
:"real_time_decision.card_balance_inquiry_requested",
|
|
786
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
787
|
-
)
|
|
788
|
-
|
|
789
|
-
# Occurs whenever a Real-Time Decision is created in response to a digital wallet provisioning attempt.
|
|
790
|
-
REAL_TIME_DECISION_DIGITAL_WALLET_TOKEN_REQUESTED =
|
|
791
|
-
T.let(
|
|
792
|
-
:"real_time_decision.digital_wallet_token_requested",
|
|
793
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
794
|
-
)
|
|
795
|
-
|
|
796
|
-
# Occurs whenever a Real-Time Decision is created in response to a digital wallet requiring two-factor authentication.
|
|
797
|
-
REAL_TIME_DECISION_DIGITAL_WALLET_AUTHENTICATION_REQUESTED =
|
|
798
|
-
T.let(
|
|
799
|
-
:"real_time_decision.digital_wallet_authentication_requested",
|
|
800
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
801
|
-
)
|
|
802
|
-
|
|
803
|
-
# Occurs whenever a Real-Time Decision is created in response to 3DS authentication.
|
|
804
|
-
REAL_TIME_DECISION_CARD_AUTHENTICATION_REQUESTED =
|
|
805
|
-
T.let(
|
|
806
|
-
:"real_time_decision.card_authentication_requested",
|
|
807
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
808
|
-
)
|
|
809
|
-
|
|
810
|
-
# Occurs whenever a Real-Time Decision is created in response to 3DS authentication challenges.
|
|
811
|
-
REAL_TIME_DECISION_CARD_AUTHENTICATION_CHALLENGE_REQUESTED =
|
|
812
|
-
T.let(
|
|
813
|
-
:"real_time_decision.card_authentication_challenge_requested",
|
|
814
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
815
|
-
)
|
|
816
|
-
|
|
817
|
-
# Occurs whenever a Real-Time Payments Transfer is created.
|
|
818
|
-
REAL_TIME_PAYMENTS_TRANSFER_CREATED =
|
|
819
|
-
T.let(
|
|
820
|
-
:"real_time_payments_transfer.created",
|
|
821
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
822
|
-
)
|
|
823
|
-
|
|
824
|
-
# Occurs whenever a Real-Time Payments Transfer is updated.
|
|
825
|
-
REAL_TIME_PAYMENTS_TRANSFER_UPDATED =
|
|
826
|
-
T.let(
|
|
827
|
-
:"real_time_payments_transfer.updated",
|
|
828
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
829
|
-
)
|
|
830
|
-
|
|
831
|
-
# Occurs whenever a Real-Time Payments Request for Payment is created.
|
|
832
|
-
REAL_TIME_PAYMENTS_REQUEST_FOR_PAYMENT_CREATED =
|
|
833
|
-
T.let(
|
|
834
|
-
:"real_time_payments_request_for_payment.created",
|
|
835
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
836
|
-
)
|
|
837
|
-
|
|
838
|
-
# Occurs whenever a Real-Time Payments Request for Payment is updated.
|
|
839
|
-
REAL_TIME_PAYMENTS_REQUEST_FOR_PAYMENT_UPDATED =
|
|
840
|
-
T.let(
|
|
841
|
-
:"real_time_payments_request_for_payment.updated",
|
|
842
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
843
|
-
)
|
|
844
|
-
|
|
845
|
-
# Occurs whenever a Swift Transfer is created.
|
|
846
|
-
SWIFT_TRANSFER_CREATED =
|
|
847
|
-
T.let(
|
|
848
|
-
:"swift_transfer.created",
|
|
849
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
850
|
-
)
|
|
851
|
-
|
|
852
|
-
# Occurs whenever a Swift Transfer is updated.
|
|
853
|
-
SWIFT_TRANSFER_UPDATED =
|
|
854
|
-
T.let(
|
|
855
|
-
:"swift_transfer.updated",
|
|
856
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
857
|
-
)
|
|
858
|
-
|
|
859
|
-
# Occurs whenever a Transaction is created.
|
|
860
|
-
TRANSACTION_CREATED =
|
|
861
|
-
T.let(
|
|
862
|
-
:"transaction.created",
|
|
863
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
864
|
-
)
|
|
865
|
-
|
|
866
|
-
# Occurs whenever a Wire Drawdown Request is created.
|
|
867
|
-
WIRE_DRAWDOWN_REQUEST_CREATED =
|
|
868
|
-
T.let(
|
|
869
|
-
:"wire_drawdown_request.created",
|
|
870
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
871
|
-
)
|
|
872
|
-
|
|
873
|
-
# Occurs whenever a Wire Drawdown Request is updated.
|
|
874
|
-
WIRE_DRAWDOWN_REQUEST_UPDATED =
|
|
875
|
-
T.let(
|
|
876
|
-
:"wire_drawdown_request.updated",
|
|
877
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
878
|
-
)
|
|
879
|
-
|
|
880
|
-
# Occurs whenever a Wire Transfer is created.
|
|
881
|
-
WIRE_TRANSFER_CREATED =
|
|
882
|
-
T.let(
|
|
883
|
-
:"wire_transfer.created",
|
|
884
|
-
Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
|
|
131
|
+
# The category of the Event.
|
|
132
|
+
sig do
|
|
133
|
+
returns(
|
|
134
|
+
T.nilable(
|
|
135
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
136
|
+
)
|
|
885
137
|
)
|
|
138
|
+
end
|
|
139
|
+
attr_accessor :event_category
|
|
886
140
|
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
141
|
+
sig do
|
|
142
|
+
params(
|
|
143
|
+
event_category:
|
|
144
|
+
T.nilable(
|
|
145
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::OrSymbol
|
|
146
|
+
)
|
|
147
|
+
).returns(T.attached_class)
|
|
148
|
+
end
|
|
149
|
+
def self.new(
|
|
150
|
+
# The category of the Event.
|
|
151
|
+
event_category:
|
|
152
|
+
)
|
|
153
|
+
end
|
|
893
154
|
|
|
894
155
|
sig do
|
|
895
156
|
override.returns(
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
157
|
+
{
|
|
158
|
+
event_category:
|
|
159
|
+
T.nilable(
|
|
160
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
161
|
+
)
|
|
162
|
+
}
|
|
899
163
|
)
|
|
900
164
|
end
|
|
901
|
-
def
|
|
165
|
+
def to_hash
|
|
166
|
+
end
|
|
167
|
+
|
|
168
|
+
# The category of the Event.
|
|
169
|
+
module EventCategory
|
|
170
|
+
extend Increase::Internal::Type::Enum
|
|
171
|
+
|
|
172
|
+
TaggedSymbol =
|
|
173
|
+
T.type_alias do
|
|
174
|
+
T.all(
|
|
175
|
+
Symbol,
|
|
176
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory
|
|
177
|
+
)
|
|
178
|
+
end
|
|
179
|
+
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
180
|
+
|
|
181
|
+
# Occurs whenever an Account is created.
|
|
182
|
+
ACCOUNT_CREATED =
|
|
183
|
+
T.let(
|
|
184
|
+
:"account.created",
|
|
185
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
186
|
+
)
|
|
187
|
+
|
|
188
|
+
# Occurs whenever an Account is updated.
|
|
189
|
+
ACCOUNT_UPDATED =
|
|
190
|
+
T.let(
|
|
191
|
+
:"account.updated",
|
|
192
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
193
|
+
)
|
|
194
|
+
|
|
195
|
+
# Occurs whenever an Account Number is created.
|
|
196
|
+
ACCOUNT_NUMBER_CREATED =
|
|
197
|
+
T.let(
|
|
198
|
+
:"account_number.created",
|
|
199
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
200
|
+
)
|
|
201
|
+
|
|
202
|
+
# Occurs whenever an Account Number is updated.
|
|
203
|
+
ACCOUNT_NUMBER_UPDATED =
|
|
204
|
+
T.let(
|
|
205
|
+
:"account_number.updated",
|
|
206
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
207
|
+
)
|
|
208
|
+
|
|
209
|
+
# Occurs whenever an Account Statement is created.
|
|
210
|
+
ACCOUNT_STATEMENT_CREATED =
|
|
211
|
+
T.let(
|
|
212
|
+
:"account_statement.created",
|
|
213
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
214
|
+
)
|
|
215
|
+
|
|
216
|
+
# Occurs whenever an Account Transfer is created.
|
|
217
|
+
ACCOUNT_TRANSFER_CREATED =
|
|
218
|
+
T.let(
|
|
219
|
+
:"account_transfer.created",
|
|
220
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
221
|
+
)
|
|
222
|
+
|
|
223
|
+
# Occurs whenever an Account Transfer is updated.
|
|
224
|
+
ACCOUNT_TRANSFER_UPDATED =
|
|
225
|
+
T.let(
|
|
226
|
+
:"account_transfer.updated",
|
|
227
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
228
|
+
)
|
|
229
|
+
|
|
230
|
+
# Occurs whenever an ACH Prenotification is created.
|
|
231
|
+
ACH_PRENOTIFICATION_CREATED =
|
|
232
|
+
T.let(
|
|
233
|
+
:"ach_prenotification.created",
|
|
234
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
235
|
+
)
|
|
236
|
+
|
|
237
|
+
# Occurs whenever an ACH Prenotification is updated.
|
|
238
|
+
ACH_PRENOTIFICATION_UPDATED =
|
|
239
|
+
T.let(
|
|
240
|
+
:"ach_prenotification.updated",
|
|
241
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
242
|
+
)
|
|
243
|
+
|
|
244
|
+
# Occurs whenever an ACH Transfer is created.
|
|
245
|
+
ACH_TRANSFER_CREATED =
|
|
246
|
+
T.let(
|
|
247
|
+
:"ach_transfer.created",
|
|
248
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
249
|
+
)
|
|
250
|
+
|
|
251
|
+
# Occurs whenever an ACH Transfer is updated.
|
|
252
|
+
ACH_TRANSFER_UPDATED =
|
|
253
|
+
T.let(
|
|
254
|
+
:"ach_transfer.updated",
|
|
255
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
256
|
+
)
|
|
257
|
+
|
|
258
|
+
# Occurs whenever a Blockchain Address is created.
|
|
259
|
+
BLOCKCHAIN_ADDRESS_CREATED =
|
|
260
|
+
T.let(
|
|
261
|
+
:"blockchain_address.created",
|
|
262
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
263
|
+
)
|
|
264
|
+
|
|
265
|
+
# Occurs whenever a Blockchain Address is updated.
|
|
266
|
+
BLOCKCHAIN_ADDRESS_UPDATED =
|
|
267
|
+
T.let(
|
|
268
|
+
:"blockchain_address.updated",
|
|
269
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
270
|
+
)
|
|
271
|
+
|
|
272
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is created.
|
|
273
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_CREATED =
|
|
274
|
+
T.let(
|
|
275
|
+
:"blockchain_offramp_transfer.created",
|
|
276
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
277
|
+
)
|
|
278
|
+
|
|
279
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is updated.
|
|
280
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_UPDATED =
|
|
281
|
+
T.let(
|
|
282
|
+
:"blockchain_offramp_transfer.updated",
|
|
283
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
284
|
+
)
|
|
285
|
+
|
|
286
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is created.
|
|
287
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_CREATED =
|
|
288
|
+
T.let(
|
|
289
|
+
:"blockchain_onramp_transfer.created",
|
|
290
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
291
|
+
)
|
|
292
|
+
|
|
293
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is updated.
|
|
294
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_UPDATED =
|
|
295
|
+
T.let(
|
|
296
|
+
:"blockchain_onramp_transfer.updated",
|
|
297
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
298
|
+
)
|
|
299
|
+
|
|
300
|
+
# Occurs whenever a Bookkeeping Account is created.
|
|
301
|
+
BOOKKEEPING_ACCOUNT_CREATED =
|
|
302
|
+
T.let(
|
|
303
|
+
:"bookkeeping_account.created",
|
|
304
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
305
|
+
)
|
|
306
|
+
|
|
307
|
+
# Occurs whenever a Bookkeeping Account is updated.
|
|
308
|
+
BOOKKEEPING_ACCOUNT_UPDATED =
|
|
309
|
+
T.let(
|
|
310
|
+
:"bookkeeping_account.updated",
|
|
311
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
312
|
+
)
|
|
313
|
+
|
|
314
|
+
# Occurs whenever a Bookkeeping Entry Set is created.
|
|
315
|
+
BOOKKEEPING_ENTRY_SET_UPDATED =
|
|
316
|
+
T.let(
|
|
317
|
+
:"bookkeeping_entry_set.updated",
|
|
318
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
319
|
+
)
|
|
320
|
+
|
|
321
|
+
# Occurs whenever a Card is created.
|
|
322
|
+
CARD_CREATED =
|
|
323
|
+
T.let(
|
|
324
|
+
:"card.created",
|
|
325
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
326
|
+
)
|
|
327
|
+
|
|
328
|
+
# Occurs whenever a Card is updated.
|
|
329
|
+
CARD_UPDATED =
|
|
330
|
+
T.let(
|
|
331
|
+
:"card.updated",
|
|
332
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
333
|
+
)
|
|
334
|
+
|
|
335
|
+
# Occurs whenever a Card Payment is created.
|
|
336
|
+
CARD_PAYMENT_CREATED =
|
|
337
|
+
T.let(
|
|
338
|
+
:"card_payment.created",
|
|
339
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
340
|
+
)
|
|
341
|
+
|
|
342
|
+
# Occurs whenever a Card Payment is updated.
|
|
343
|
+
CARD_PAYMENT_UPDATED =
|
|
344
|
+
T.let(
|
|
345
|
+
:"card_payment.updated",
|
|
346
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
347
|
+
)
|
|
348
|
+
|
|
349
|
+
# Occurs whenever a Card Profile is created.
|
|
350
|
+
CARD_PROFILE_CREATED =
|
|
351
|
+
T.let(
|
|
352
|
+
:"card_profile.created",
|
|
353
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
354
|
+
)
|
|
355
|
+
|
|
356
|
+
# Occurs whenever a Card Profile is updated.
|
|
357
|
+
CARD_PROFILE_UPDATED =
|
|
358
|
+
T.let(
|
|
359
|
+
:"card_profile.updated",
|
|
360
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
361
|
+
)
|
|
362
|
+
|
|
363
|
+
# Occurs whenever a Card Dispute is created.
|
|
364
|
+
CARD_DISPUTE_CREATED =
|
|
365
|
+
T.let(
|
|
366
|
+
:"card_dispute.created",
|
|
367
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
368
|
+
)
|
|
369
|
+
|
|
370
|
+
# Occurs whenever a Card Dispute is updated.
|
|
371
|
+
CARD_DISPUTE_UPDATED =
|
|
372
|
+
T.let(
|
|
373
|
+
:"card_dispute.updated",
|
|
374
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
375
|
+
)
|
|
376
|
+
|
|
377
|
+
# Occurs whenever a Check Deposit is created.
|
|
378
|
+
CHECK_DEPOSIT_CREATED =
|
|
379
|
+
T.let(
|
|
380
|
+
:"check_deposit.created",
|
|
381
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
382
|
+
)
|
|
383
|
+
|
|
384
|
+
# Occurs whenever a Check Deposit is updated.
|
|
385
|
+
CHECK_DEPOSIT_UPDATED =
|
|
386
|
+
T.let(
|
|
387
|
+
:"check_deposit.updated",
|
|
388
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
389
|
+
)
|
|
390
|
+
|
|
391
|
+
# Occurs whenever a Check Transfer is created.
|
|
392
|
+
CHECK_TRANSFER_CREATED =
|
|
393
|
+
T.let(
|
|
394
|
+
:"check_transfer.created",
|
|
395
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
396
|
+
)
|
|
397
|
+
|
|
398
|
+
# Occurs whenever a Check Transfer is updated.
|
|
399
|
+
CHECK_TRANSFER_UPDATED =
|
|
400
|
+
T.let(
|
|
401
|
+
:"check_transfer.updated",
|
|
402
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
403
|
+
)
|
|
404
|
+
|
|
405
|
+
# Occurs whenever a Declined Transaction is created.
|
|
406
|
+
DECLINED_TRANSACTION_CREATED =
|
|
407
|
+
T.let(
|
|
408
|
+
:"declined_transaction.created",
|
|
409
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
410
|
+
)
|
|
411
|
+
|
|
412
|
+
# Occurs whenever a Digital Card Profile is created.
|
|
413
|
+
DIGITAL_CARD_PROFILE_CREATED =
|
|
414
|
+
T.let(
|
|
415
|
+
:"digital_card_profile.created",
|
|
416
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
417
|
+
)
|
|
418
|
+
|
|
419
|
+
# Occurs whenever a Digital Card Profile is updated.
|
|
420
|
+
DIGITAL_CARD_PROFILE_UPDATED =
|
|
421
|
+
T.let(
|
|
422
|
+
:"digital_card_profile.updated",
|
|
423
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
424
|
+
)
|
|
425
|
+
|
|
426
|
+
# Occurs whenever a Digital Wallet Token is created.
|
|
427
|
+
DIGITAL_WALLET_TOKEN_CREATED =
|
|
428
|
+
T.let(
|
|
429
|
+
:"digital_wallet_token.created",
|
|
430
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
431
|
+
)
|
|
432
|
+
|
|
433
|
+
# Occurs whenever a Digital Wallet Token is updated.
|
|
434
|
+
DIGITAL_WALLET_TOKEN_UPDATED =
|
|
435
|
+
T.let(
|
|
436
|
+
:"digital_wallet_token.updated",
|
|
437
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
438
|
+
)
|
|
439
|
+
|
|
440
|
+
# Occurs whenever a Document is created.
|
|
441
|
+
DOCUMENT_CREATED =
|
|
442
|
+
T.let(
|
|
443
|
+
:"document.created",
|
|
444
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
445
|
+
)
|
|
446
|
+
|
|
447
|
+
# Occurs whenever an Entity is created.
|
|
448
|
+
ENTITY_CREATED =
|
|
449
|
+
T.let(
|
|
450
|
+
:"entity.created",
|
|
451
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
452
|
+
)
|
|
453
|
+
|
|
454
|
+
# Occurs whenever an Entity is updated.
|
|
455
|
+
ENTITY_UPDATED =
|
|
456
|
+
T.let(
|
|
457
|
+
:"entity.updated",
|
|
458
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
459
|
+
)
|
|
460
|
+
|
|
461
|
+
# Occurs whenever an Event Subscription is created.
|
|
462
|
+
EVENT_SUBSCRIPTION_CREATED =
|
|
463
|
+
T.let(
|
|
464
|
+
:"event_subscription.created",
|
|
465
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
466
|
+
)
|
|
467
|
+
|
|
468
|
+
# Occurs whenever an Event Subscription is updated.
|
|
469
|
+
EVENT_SUBSCRIPTION_UPDATED =
|
|
470
|
+
T.let(
|
|
471
|
+
:"event_subscription.updated",
|
|
472
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
473
|
+
)
|
|
474
|
+
|
|
475
|
+
# Occurs whenever an Export is created.
|
|
476
|
+
EXPORT_CREATED =
|
|
477
|
+
T.let(
|
|
478
|
+
:"export.created",
|
|
479
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
480
|
+
)
|
|
481
|
+
|
|
482
|
+
# Occurs whenever an Export is updated.
|
|
483
|
+
EXPORT_UPDATED =
|
|
484
|
+
T.let(
|
|
485
|
+
:"export.updated",
|
|
486
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
487
|
+
)
|
|
488
|
+
|
|
489
|
+
# Occurs whenever an External Account is created.
|
|
490
|
+
EXTERNAL_ACCOUNT_CREATED =
|
|
491
|
+
T.let(
|
|
492
|
+
:"external_account.created",
|
|
493
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
494
|
+
)
|
|
495
|
+
|
|
496
|
+
# Occurs whenever an External Account is updated.
|
|
497
|
+
EXTERNAL_ACCOUNT_UPDATED =
|
|
498
|
+
T.let(
|
|
499
|
+
:"external_account.updated",
|
|
500
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
501
|
+
)
|
|
502
|
+
|
|
503
|
+
# Occurs whenever a FedNow Transfer is created.
|
|
504
|
+
FEDNOW_TRANSFER_CREATED =
|
|
505
|
+
T.let(
|
|
506
|
+
:"fednow_transfer.created",
|
|
507
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
508
|
+
)
|
|
509
|
+
|
|
510
|
+
# Occurs whenever a FedNow Transfer is updated.
|
|
511
|
+
FEDNOW_TRANSFER_UPDATED =
|
|
512
|
+
T.let(
|
|
513
|
+
:"fednow_transfer.updated",
|
|
514
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
515
|
+
)
|
|
516
|
+
|
|
517
|
+
# Occurs whenever a File is created.
|
|
518
|
+
FILE_CREATED =
|
|
519
|
+
T.let(
|
|
520
|
+
:"file.created",
|
|
521
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
522
|
+
)
|
|
523
|
+
|
|
524
|
+
# Occurs whenever a Group is updated.
|
|
525
|
+
GROUP_UPDATED =
|
|
526
|
+
T.let(
|
|
527
|
+
:"group.updated",
|
|
528
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
529
|
+
)
|
|
530
|
+
|
|
531
|
+
# Increase may send webhooks with this category to see if a webhook endpoint is working properly.
|
|
532
|
+
GROUP_HEARTBEAT =
|
|
533
|
+
T.let(
|
|
534
|
+
:"group.heartbeat",
|
|
535
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
536
|
+
)
|
|
537
|
+
|
|
538
|
+
# Occurs whenever an Inbound ACH Transfer is created.
|
|
539
|
+
INBOUND_ACH_TRANSFER_CREATED =
|
|
540
|
+
T.let(
|
|
541
|
+
:"inbound_ach_transfer.created",
|
|
542
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
543
|
+
)
|
|
544
|
+
|
|
545
|
+
# Occurs whenever an Inbound ACH Transfer is updated.
|
|
546
|
+
INBOUND_ACH_TRANSFER_UPDATED =
|
|
547
|
+
T.let(
|
|
548
|
+
:"inbound_ach_transfer.updated",
|
|
549
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
550
|
+
)
|
|
551
|
+
|
|
552
|
+
# Occurs whenever an Inbound ACH Transfer Return is created.
|
|
553
|
+
INBOUND_ACH_TRANSFER_RETURN_CREATED =
|
|
554
|
+
T.let(
|
|
555
|
+
:"inbound_ach_transfer_return.created",
|
|
556
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
557
|
+
)
|
|
558
|
+
|
|
559
|
+
# Occurs whenever an Inbound ACH Transfer Return is updated.
|
|
560
|
+
INBOUND_ACH_TRANSFER_RETURN_UPDATED =
|
|
561
|
+
T.let(
|
|
562
|
+
:"inbound_ach_transfer_return.updated",
|
|
563
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
564
|
+
)
|
|
565
|
+
|
|
566
|
+
# Occurs whenever an Inbound Check Deposit is created.
|
|
567
|
+
INBOUND_CHECK_DEPOSIT_CREATED =
|
|
568
|
+
T.let(
|
|
569
|
+
:"inbound_check_deposit.created",
|
|
570
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
571
|
+
)
|
|
572
|
+
|
|
573
|
+
# Occurs whenever an Inbound Check Deposit is updated.
|
|
574
|
+
INBOUND_CHECK_DEPOSIT_UPDATED =
|
|
575
|
+
T.let(
|
|
576
|
+
:"inbound_check_deposit.updated",
|
|
577
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
578
|
+
)
|
|
579
|
+
|
|
580
|
+
# Occurs whenever an Inbound FedNow Transfer is created.
|
|
581
|
+
INBOUND_FEDNOW_TRANSFER_CREATED =
|
|
582
|
+
T.let(
|
|
583
|
+
:"inbound_fednow_transfer.created",
|
|
584
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
585
|
+
)
|
|
586
|
+
|
|
587
|
+
# Occurs whenever an Inbound FedNow Transfer is updated.
|
|
588
|
+
INBOUND_FEDNOW_TRANSFER_UPDATED =
|
|
589
|
+
T.let(
|
|
590
|
+
:"inbound_fednow_transfer.updated",
|
|
591
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
592
|
+
)
|
|
593
|
+
|
|
594
|
+
# Occurs whenever an Inbound Mail Item is created.
|
|
595
|
+
INBOUND_MAIL_ITEM_CREATED =
|
|
596
|
+
T.let(
|
|
597
|
+
:"inbound_mail_item.created",
|
|
598
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
599
|
+
)
|
|
600
|
+
|
|
601
|
+
# Occurs whenever an Inbound Mail Item is updated.
|
|
602
|
+
INBOUND_MAIL_ITEM_UPDATED =
|
|
603
|
+
T.let(
|
|
604
|
+
:"inbound_mail_item.updated",
|
|
605
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
606
|
+
)
|
|
607
|
+
|
|
608
|
+
# Occurs whenever an Inbound Real-Time Payments Transfer is created.
|
|
609
|
+
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_CREATED =
|
|
610
|
+
T.let(
|
|
611
|
+
:"inbound_real_time_payments_transfer.created",
|
|
612
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
613
|
+
)
|
|
614
|
+
|
|
615
|
+
# Occurs whenever an Inbound Real-Time Payments Transfer is updated.
|
|
616
|
+
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_UPDATED =
|
|
617
|
+
T.let(
|
|
618
|
+
:"inbound_real_time_payments_transfer.updated",
|
|
619
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
620
|
+
)
|
|
621
|
+
|
|
622
|
+
# Occurs whenever an Inbound Wire Drawdown Request is created.
|
|
623
|
+
INBOUND_WIRE_DRAWDOWN_REQUEST_CREATED =
|
|
624
|
+
T.let(
|
|
625
|
+
:"inbound_wire_drawdown_request.created",
|
|
626
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
627
|
+
)
|
|
628
|
+
|
|
629
|
+
# Occurs whenever an Inbound Wire Transfer is created.
|
|
630
|
+
INBOUND_WIRE_TRANSFER_CREATED =
|
|
631
|
+
T.let(
|
|
632
|
+
:"inbound_wire_transfer.created",
|
|
633
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
634
|
+
)
|
|
635
|
+
|
|
636
|
+
# Occurs whenever an Inbound Wire Transfer is updated.
|
|
637
|
+
INBOUND_WIRE_TRANSFER_UPDATED =
|
|
638
|
+
T.let(
|
|
639
|
+
:"inbound_wire_transfer.updated",
|
|
640
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
641
|
+
)
|
|
642
|
+
|
|
643
|
+
# Occurs whenever an IntraFi Account Enrollment is created.
|
|
644
|
+
INTRAFI_ACCOUNT_ENROLLMENT_CREATED =
|
|
645
|
+
T.let(
|
|
646
|
+
:"intrafi_account_enrollment.created",
|
|
647
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
648
|
+
)
|
|
649
|
+
|
|
650
|
+
# Occurs whenever an IntraFi Account Enrollment is updated.
|
|
651
|
+
INTRAFI_ACCOUNT_ENROLLMENT_UPDATED =
|
|
652
|
+
T.let(
|
|
653
|
+
:"intrafi_account_enrollment.updated",
|
|
654
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
655
|
+
)
|
|
656
|
+
|
|
657
|
+
# Occurs whenever an IntraFi Exclusion is created.
|
|
658
|
+
INTRAFI_EXCLUSION_CREATED =
|
|
659
|
+
T.let(
|
|
660
|
+
:"intrafi_exclusion.created",
|
|
661
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
662
|
+
)
|
|
663
|
+
|
|
664
|
+
# Occurs whenever an IntraFi Exclusion is updated.
|
|
665
|
+
INTRAFI_EXCLUSION_UPDATED =
|
|
666
|
+
T.let(
|
|
667
|
+
:"intrafi_exclusion.updated",
|
|
668
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
669
|
+
)
|
|
670
|
+
|
|
671
|
+
# Occurs whenever a Legacy Card Dispute is created.
|
|
672
|
+
LEGACY_CARD_DISPUTE_CREATED =
|
|
673
|
+
T.let(
|
|
674
|
+
:"legacy_card_dispute.created",
|
|
675
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
676
|
+
)
|
|
677
|
+
|
|
678
|
+
# Occurs whenever a Legacy Card Dispute is updated.
|
|
679
|
+
LEGACY_CARD_DISPUTE_UPDATED =
|
|
680
|
+
T.let(
|
|
681
|
+
:"legacy_card_dispute.updated",
|
|
682
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
683
|
+
)
|
|
684
|
+
|
|
685
|
+
# Occurs whenever a Lockbox is created.
|
|
686
|
+
LOCKBOX_CREATED =
|
|
687
|
+
T.let(
|
|
688
|
+
:"lockbox.created",
|
|
689
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
690
|
+
)
|
|
691
|
+
|
|
692
|
+
# Occurs whenever a Lockbox is updated.
|
|
693
|
+
LOCKBOX_UPDATED =
|
|
694
|
+
T.let(
|
|
695
|
+
:"lockbox.updated",
|
|
696
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
697
|
+
)
|
|
698
|
+
|
|
699
|
+
# Occurs whenever an OAuth Connection is created.
|
|
700
|
+
OAUTH_CONNECTION_CREATED =
|
|
701
|
+
T.let(
|
|
702
|
+
:"oauth_connection.created",
|
|
703
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
704
|
+
)
|
|
705
|
+
|
|
706
|
+
# Occurs whenever an OAuth Connection is deactivated.
|
|
707
|
+
OAUTH_CONNECTION_DEACTIVATED =
|
|
708
|
+
T.let(
|
|
709
|
+
:"oauth_connection.deactivated",
|
|
710
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
711
|
+
)
|
|
712
|
+
|
|
713
|
+
# Occurs whenever a Card Push Transfer is created.
|
|
714
|
+
CARD_PUSH_TRANSFER_CREATED =
|
|
715
|
+
T.let(
|
|
716
|
+
:"card_push_transfer.created",
|
|
717
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
718
|
+
)
|
|
719
|
+
|
|
720
|
+
# Occurs whenever a Card Push Transfer is updated.
|
|
721
|
+
CARD_PUSH_TRANSFER_UPDATED =
|
|
722
|
+
T.let(
|
|
723
|
+
:"card_push_transfer.updated",
|
|
724
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
725
|
+
)
|
|
726
|
+
|
|
727
|
+
# Occurs whenever a Card Validation is created.
|
|
728
|
+
CARD_VALIDATION_CREATED =
|
|
729
|
+
T.let(
|
|
730
|
+
:"card_validation.created",
|
|
731
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
732
|
+
)
|
|
733
|
+
|
|
734
|
+
# Occurs whenever a Card Validation is updated.
|
|
735
|
+
CARD_VALIDATION_UPDATED =
|
|
736
|
+
T.let(
|
|
737
|
+
:"card_validation.updated",
|
|
738
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
739
|
+
)
|
|
740
|
+
|
|
741
|
+
# Occurs whenever a Pending Transaction is created.
|
|
742
|
+
PENDING_TRANSACTION_CREATED =
|
|
743
|
+
T.let(
|
|
744
|
+
:"pending_transaction.created",
|
|
745
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
746
|
+
)
|
|
747
|
+
|
|
748
|
+
# Occurs whenever a Pending Transaction is updated.
|
|
749
|
+
PENDING_TRANSACTION_UPDATED =
|
|
750
|
+
T.let(
|
|
751
|
+
:"pending_transaction.updated",
|
|
752
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
753
|
+
)
|
|
754
|
+
|
|
755
|
+
# Occurs whenever a Physical Card is created.
|
|
756
|
+
PHYSICAL_CARD_CREATED =
|
|
757
|
+
T.let(
|
|
758
|
+
:"physical_card.created",
|
|
759
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
760
|
+
)
|
|
761
|
+
|
|
762
|
+
# Occurs whenever a Physical Card is updated.
|
|
763
|
+
PHYSICAL_CARD_UPDATED =
|
|
764
|
+
T.let(
|
|
765
|
+
:"physical_card.updated",
|
|
766
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
767
|
+
)
|
|
768
|
+
|
|
769
|
+
# Occurs whenever a Physical Card Profile is created.
|
|
770
|
+
PHYSICAL_CARD_PROFILE_CREATED =
|
|
771
|
+
T.let(
|
|
772
|
+
:"physical_card_profile.created",
|
|
773
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
774
|
+
)
|
|
775
|
+
|
|
776
|
+
# Occurs whenever a Physical Card Profile is updated.
|
|
777
|
+
PHYSICAL_CARD_PROFILE_UPDATED =
|
|
778
|
+
T.let(
|
|
779
|
+
:"physical_card_profile.updated",
|
|
780
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
781
|
+
)
|
|
782
|
+
|
|
783
|
+
# Occurs whenever a Physical Check is created.
|
|
784
|
+
PHYSICAL_CHECK_CREATED =
|
|
785
|
+
T.let(
|
|
786
|
+
:"physical_check.created",
|
|
787
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
788
|
+
)
|
|
789
|
+
|
|
790
|
+
# Occurs whenever a Physical Check is updated.
|
|
791
|
+
PHYSICAL_CHECK_UPDATED =
|
|
792
|
+
T.let(
|
|
793
|
+
:"physical_check.updated",
|
|
794
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
795
|
+
)
|
|
796
|
+
|
|
797
|
+
# Occurs whenever a Program is created.
|
|
798
|
+
PROGRAM_CREATED =
|
|
799
|
+
T.let(
|
|
800
|
+
:"program.created",
|
|
801
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
802
|
+
)
|
|
803
|
+
|
|
804
|
+
# Occurs whenever a Program is updated.
|
|
805
|
+
PROGRAM_UPDATED =
|
|
806
|
+
T.let(
|
|
807
|
+
:"program.updated",
|
|
808
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
809
|
+
)
|
|
810
|
+
|
|
811
|
+
# Occurs whenever a Proof of Authorization Request is created.
|
|
812
|
+
PROOF_OF_AUTHORIZATION_REQUEST_CREATED =
|
|
813
|
+
T.let(
|
|
814
|
+
:"proof_of_authorization_request.created",
|
|
815
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
816
|
+
)
|
|
817
|
+
|
|
818
|
+
# Occurs whenever a Proof of Authorization Request is updated.
|
|
819
|
+
PROOF_OF_AUTHORIZATION_REQUEST_UPDATED =
|
|
820
|
+
T.let(
|
|
821
|
+
:"proof_of_authorization_request.updated",
|
|
822
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
823
|
+
)
|
|
824
|
+
|
|
825
|
+
# Occurs whenever a Real-Time Decision is created in response to a card authorization.
|
|
826
|
+
REAL_TIME_DECISION_CARD_AUTHORIZATION_REQUESTED =
|
|
827
|
+
T.let(
|
|
828
|
+
:"real_time_decision.card_authorization_requested",
|
|
829
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
830
|
+
)
|
|
831
|
+
|
|
832
|
+
# Occurs whenever a Real-Time Decision is created in response to a card balance inquiry.
|
|
833
|
+
REAL_TIME_DECISION_CARD_BALANCE_INQUIRY_REQUESTED =
|
|
834
|
+
T.let(
|
|
835
|
+
:"real_time_decision.card_balance_inquiry_requested",
|
|
836
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
837
|
+
)
|
|
838
|
+
|
|
839
|
+
# Occurs whenever a Real-Time Decision is created in response to a digital wallet provisioning attempt.
|
|
840
|
+
REAL_TIME_DECISION_DIGITAL_WALLET_TOKEN_REQUESTED =
|
|
841
|
+
T.let(
|
|
842
|
+
:"real_time_decision.digital_wallet_token_requested",
|
|
843
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
844
|
+
)
|
|
845
|
+
|
|
846
|
+
# Occurs whenever a Real-Time Decision is created in response to a digital wallet requiring two-factor authentication.
|
|
847
|
+
REAL_TIME_DECISION_DIGITAL_WALLET_AUTHENTICATION_REQUESTED =
|
|
848
|
+
T.let(
|
|
849
|
+
:"real_time_decision.digital_wallet_authentication_requested",
|
|
850
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
851
|
+
)
|
|
852
|
+
|
|
853
|
+
# Occurs whenever a Real-Time Decision is created in response to 3DS authentication.
|
|
854
|
+
REAL_TIME_DECISION_CARD_AUTHENTICATION_REQUESTED =
|
|
855
|
+
T.let(
|
|
856
|
+
:"real_time_decision.card_authentication_requested",
|
|
857
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
858
|
+
)
|
|
859
|
+
|
|
860
|
+
# Occurs whenever a Real-Time Decision is created in response to 3DS authentication challenges.
|
|
861
|
+
REAL_TIME_DECISION_CARD_AUTHENTICATION_CHALLENGE_REQUESTED =
|
|
862
|
+
T.let(
|
|
863
|
+
:"real_time_decision.card_authentication_challenge_requested",
|
|
864
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
865
|
+
)
|
|
866
|
+
|
|
867
|
+
# Occurs whenever a Real-Time Payments Transfer is created.
|
|
868
|
+
REAL_TIME_PAYMENTS_TRANSFER_CREATED =
|
|
869
|
+
T.let(
|
|
870
|
+
:"real_time_payments_transfer.created",
|
|
871
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
872
|
+
)
|
|
873
|
+
|
|
874
|
+
# Occurs whenever a Real-Time Payments Transfer is updated.
|
|
875
|
+
REAL_TIME_PAYMENTS_TRANSFER_UPDATED =
|
|
876
|
+
T.let(
|
|
877
|
+
:"real_time_payments_transfer.updated",
|
|
878
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
879
|
+
)
|
|
880
|
+
|
|
881
|
+
# Occurs whenever a Real-Time Payments Request for Payment is created.
|
|
882
|
+
REAL_TIME_PAYMENTS_REQUEST_FOR_PAYMENT_CREATED =
|
|
883
|
+
T.let(
|
|
884
|
+
:"real_time_payments_request_for_payment.created",
|
|
885
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
886
|
+
)
|
|
887
|
+
|
|
888
|
+
# Occurs whenever a Real-Time Payments Request for Payment is updated.
|
|
889
|
+
REAL_TIME_PAYMENTS_REQUEST_FOR_PAYMENT_UPDATED =
|
|
890
|
+
T.let(
|
|
891
|
+
:"real_time_payments_request_for_payment.updated",
|
|
892
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
893
|
+
)
|
|
894
|
+
|
|
895
|
+
# Occurs whenever a Swift Transfer is created.
|
|
896
|
+
SWIFT_TRANSFER_CREATED =
|
|
897
|
+
T.let(
|
|
898
|
+
:"swift_transfer.created",
|
|
899
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
900
|
+
)
|
|
901
|
+
|
|
902
|
+
# Occurs whenever a Swift Transfer is updated.
|
|
903
|
+
SWIFT_TRANSFER_UPDATED =
|
|
904
|
+
T.let(
|
|
905
|
+
:"swift_transfer.updated",
|
|
906
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
907
|
+
)
|
|
908
|
+
|
|
909
|
+
# Occurs whenever a Transaction is created.
|
|
910
|
+
TRANSACTION_CREATED =
|
|
911
|
+
T.let(
|
|
912
|
+
:"transaction.created",
|
|
913
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
914
|
+
)
|
|
915
|
+
|
|
916
|
+
# Occurs whenever a Wire Drawdown Request is created.
|
|
917
|
+
WIRE_DRAWDOWN_REQUEST_CREATED =
|
|
918
|
+
T.let(
|
|
919
|
+
:"wire_drawdown_request.created",
|
|
920
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
921
|
+
)
|
|
922
|
+
|
|
923
|
+
# Occurs whenever a Wire Drawdown Request is updated.
|
|
924
|
+
WIRE_DRAWDOWN_REQUEST_UPDATED =
|
|
925
|
+
T.let(
|
|
926
|
+
:"wire_drawdown_request.updated",
|
|
927
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
928
|
+
)
|
|
929
|
+
|
|
930
|
+
# Occurs whenever a Wire Transfer is created.
|
|
931
|
+
WIRE_TRANSFER_CREATED =
|
|
932
|
+
T.let(
|
|
933
|
+
:"wire_transfer.created",
|
|
934
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
935
|
+
)
|
|
936
|
+
|
|
937
|
+
# Occurs whenever a Wire Transfer is updated.
|
|
938
|
+
WIRE_TRANSFER_UPDATED =
|
|
939
|
+
T.let(
|
|
940
|
+
:"wire_transfer.updated",
|
|
941
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
942
|
+
)
|
|
943
|
+
|
|
944
|
+
sig do
|
|
945
|
+
override.returns(
|
|
946
|
+
T::Array[
|
|
947
|
+
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
948
|
+
]
|
|
949
|
+
)
|
|
950
|
+
end
|
|
951
|
+
def self.values
|
|
952
|
+
end
|
|
902
953
|
end
|
|
903
954
|
end
|
|
904
955
|
|