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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/increase/models/event_subscription_create_params.rb +247 -233
- data/lib/increase/resources/event_subscriptions.rb +2 -2
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/event_subscription_create_params.rbi +732 -682
- data/rbi/increase/resources/event_subscriptions.rbi +7 -4
- data/sig/increase/models/event_subscription_create_params.rbs +370 -353
- data/sig/increase/resources/event_subscriptions.rbs +1 -1
- metadata +2 -2
|
@@ -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
|
-
|
|
35
|
+
T::Array[
|
|
36
|
+
Increase::EventSubscriptionCreateParams::SelectedEventCategory
|
|
37
|
+
]
|
|
35
38
|
)
|
|
36
39
|
)
|
|
37
40
|
end
|
|
38
|
-
attr_reader :
|
|
41
|
+
attr_reader :selected_event_categories
|
|
39
42
|
|
|
40
43
|
sig do
|
|
41
44
|
params(
|
|
42
|
-
|
|
43
|
-
|
|
45
|
+
selected_event_categories:
|
|
46
|
+
T::Array[
|
|
47
|
+
Increase::EventSubscriptionCreateParams::SelectedEventCategory::OrHash
|
|
48
|
+
]
|
|
44
49
|
).void
|
|
45
50
|
end
|
|
46
|
-
attr_writer :
|
|
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
|
-
|
|
76
|
-
|
|
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
|
-
|
|
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
|
-
|
|
106
|
-
|
|
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
|
-
|
|
117
|
-
|
|
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.
|
|
124
|
-
|
|
125
|
-
Increase::
|
|
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
|
-
#
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
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
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
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
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
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
|
-
#
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
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
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
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
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
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
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
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
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
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
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
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
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
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
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
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
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
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
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
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
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
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
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
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
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
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
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
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
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
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
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
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
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
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
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
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
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
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
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
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
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
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
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
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
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
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
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
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
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
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
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
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
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
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
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
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
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
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
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
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
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
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
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
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
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
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
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
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
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
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
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
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
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
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
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
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
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
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
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
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
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
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
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
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
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
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
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
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
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
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
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
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
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
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
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
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
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
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
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
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
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
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
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
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
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
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
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
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
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
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
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
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
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
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
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
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
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
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
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
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
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
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
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
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
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
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
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
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
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
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
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
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
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
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
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
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
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
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
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
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
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
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
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
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
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
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
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
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
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
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
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
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
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
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
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
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
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
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
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
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
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
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
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
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
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
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
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
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
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
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
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
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
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
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
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
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
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
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
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
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
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
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
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
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
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
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
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
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
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
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
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
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
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
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
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
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
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
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
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
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
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
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
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
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
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
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
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
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
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
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
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
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
|
-
|
|
894
|
-
|
|
895
|
-
T
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
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
|
|