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