increase 1.215.0 → 1.217.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +18 -0
- data/README.md +1 -1
- data/lib/increase/models/check_deposit.rb +71 -1
- data/lib/increase/models/event_subscription.rb +246 -234
- data/lib/increase/models/real_time_decision_action_params.rb +38 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/check_deposit.rbi +132 -0
- data/rbi/increase/models/event_subscription.rbi +830 -779
- data/rbi/increase/models/real_time_decision_action_params.rbi +70 -3
- data/sig/increase/models/check_deposit.rbs +65 -0
- data/sig/increase/models/event_subscription.rbs +367 -350
- data/sig/increase/models/real_time_decision_action_params.rbs +28 -3
- metadata +1 -1
|
@@ -31,13 +31,13 @@ module Increase
|
|
|
31
31
|
# @return [String, nil]
|
|
32
32
|
required :oauth_connection_id, String, nil?: true
|
|
33
33
|
|
|
34
|
-
# @!attribute
|
|
34
|
+
# @!attribute selected_event_categories
|
|
35
35
|
# If specified, this subscription will only receive webhooks for Events with the
|
|
36
36
|
# specified `category`.
|
|
37
37
|
#
|
|
38
|
-
# @return [
|
|
39
|
-
required :
|
|
40
|
-
|
|
38
|
+
# @return [Array<Increase::Models::EventSubscription::SelectedEventCategory>, nil]
|
|
39
|
+
required :selected_event_categories,
|
|
40
|
+
-> { Increase::Internal::Type::ArrayOf[Increase::EventSubscription::SelectedEventCategory] },
|
|
41
41
|
nil?: true
|
|
42
42
|
|
|
43
43
|
# @!attribute status
|
|
@@ -59,7 +59,7 @@ module Increase
|
|
|
59
59
|
# @return [String]
|
|
60
60
|
required :url, String
|
|
61
61
|
|
|
62
|
-
# @!method initialize(id:, created_at:, idempotency_key:, oauth_connection_id:,
|
|
62
|
+
# @!method initialize(id:, created_at:, idempotency_key:, oauth_connection_id:, selected_event_categories:, status:, type:, url:)
|
|
63
63
|
# Some parameter documentations has been truncated, see
|
|
64
64
|
# {Increase::Models::EventSubscription} for more details.
|
|
65
65
|
#
|
|
@@ -78,7 +78,7 @@ module Increase
|
|
|
78
78
|
#
|
|
79
79
|
# @param oauth_connection_id [String, nil] If specified, this subscription will only receive webhooks for Events associated
|
|
80
80
|
#
|
|
81
|
-
# @param
|
|
81
|
+
# @param selected_event_categories [Array<Increase::Models::EventSubscription::SelectedEventCategory>, nil] If specified, this subscription will only receive webhooks for Events with the s
|
|
82
82
|
#
|
|
83
83
|
# @param status [Symbol, Increase::Models::EventSubscription::Status] This indicates if we'll send notifications to this subscription.
|
|
84
84
|
#
|
|
@@ -86,344 +86,356 @@ module Increase
|
|
|
86
86
|
#
|
|
87
87
|
# @param url [String] The webhook url where we'll send notifications.
|
|
88
88
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
89
|
+
class SelectedEventCategory < Increase::Internal::Type::BaseModel
|
|
90
|
+
# @!attribute event_category
|
|
91
|
+
# The category of the Event.
|
|
92
|
+
#
|
|
93
|
+
# @return [Symbol, Increase::Models::EventSubscription::SelectedEventCategory::EventCategory, nil]
|
|
94
|
+
required :event_category,
|
|
95
|
+
enum: -> { Increase::EventSubscription::SelectedEventCategory::EventCategory },
|
|
96
|
+
nil?: true
|
|
95
97
|
|
|
96
|
-
#
|
|
97
|
-
|
|
98
|
+
# @!method initialize(event_category:)
|
|
99
|
+
# @param event_category [Symbol, Increase::Models::EventSubscription::SelectedEventCategory::EventCategory, nil] The category of the Event.
|
|
98
100
|
|
|
99
|
-
#
|
|
100
|
-
|
|
101
|
+
# The category of the Event.
|
|
102
|
+
#
|
|
103
|
+
# @see Increase::Models::EventSubscription::SelectedEventCategory#event_category
|
|
104
|
+
module EventCategory
|
|
105
|
+
extend Increase::Internal::Type::Enum
|
|
101
106
|
|
|
102
|
-
|
|
103
|
-
|
|
107
|
+
# Occurs whenever an Account is created.
|
|
108
|
+
ACCOUNT_CREATED = :"account.created"
|
|
104
109
|
|
|
105
|
-
|
|
106
|
-
|
|
110
|
+
# Occurs whenever an Account is updated.
|
|
111
|
+
ACCOUNT_UPDATED = :"account.updated"
|
|
107
112
|
|
|
108
|
-
|
|
109
|
-
|
|
113
|
+
# Occurs whenever an Account Number is created.
|
|
114
|
+
ACCOUNT_NUMBER_CREATED = :"account_number.created"
|
|
110
115
|
|
|
111
|
-
|
|
112
|
-
|
|
116
|
+
# Occurs whenever an Account Number is updated.
|
|
117
|
+
ACCOUNT_NUMBER_UPDATED = :"account_number.updated"
|
|
113
118
|
|
|
114
|
-
|
|
115
|
-
|
|
119
|
+
# Occurs whenever an Account Statement is created.
|
|
120
|
+
ACCOUNT_STATEMENT_CREATED = :"account_statement.created"
|
|
116
121
|
|
|
117
|
-
|
|
118
|
-
|
|
122
|
+
# Occurs whenever an Account Transfer is created.
|
|
123
|
+
ACCOUNT_TRANSFER_CREATED = :"account_transfer.created"
|
|
119
124
|
|
|
120
|
-
|
|
121
|
-
|
|
125
|
+
# Occurs whenever an Account Transfer is updated.
|
|
126
|
+
ACCOUNT_TRANSFER_UPDATED = :"account_transfer.updated"
|
|
122
127
|
|
|
123
|
-
|
|
124
|
-
|
|
128
|
+
# Occurs whenever an ACH Prenotification is created.
|
|
129
|
+
ACH_PRENOTIFICATION_CREATED = :"ach_prenotification.created"
|
|
125
130
|
|
|
126
|
-
|
|
127
|
-
|
|
131
|
+
# Occurs whenever an ACH Prenotification is updated.
|
|
132
|
+
ACH_PRENOTIFICATION_UPDATED = :"ach_prenotification.updated"
|
|
128
133
|
|
|
129
|
-
|
|
130
|
-
|
|
134
|
+
# Occurs whenever an ACH Transfer is created.
|
|
135
|
+
ACH_TRANSFER_CREATED = :"ach_transfer.created"
|
|
131
136
|
|
|
132
|
-
|
|
133
|
-
|
|
137
|
+
# Occurs whenever an ACH Transfer is updated.
|
|
138
|
+
ACH_TRANSFER_UPDATED = :"ach_transfer.updated"
|
|
134
139
|
|
|
135
|
-
|
|
136
|
-
|
|
140
|
+
# Occurs whenever a Blockchain Address is created.
|
|
141
|
+
BLOCKCHAIN_ADDRESS_CREATED = :"blockchain_address.created"
|
|
137
142
|
|
|
138
|
-
|
|
139
|
-
|
|
143
|
+
# Occurs whenever a Blockchain Address is updated.
|
|
144
|
+
BLOCKCHAIN_ADDRESS_UPDATED = :"blockchain_address.updated"
|
|
140
145
|
|
|
141
|
-
|
|
142
|
-
|
|
146
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is created.
|
|
147
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_CREATED = :"blockchain_offramp_transfer.created"
|
|
143
148
|
|
|
144
|
-
|
|
145
|
-
|
|
149
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is updated.
|
|
150
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_UPDATED = :"blockchain_offramp_transfer.updated"
|
|
146
151
|
|
|
147
|
-
|
|
148
|
-
|
|
152
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is created.
|
|
153
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_CREATED = :"blockchain_onramp_transfer.created"
|
|
149
154
|
|
|
150
|
-
|
|
151
|
-
|
|
155
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is updated.
|
|
156
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_UPDATED = :"blockchain_onramp_transfer.updated"
|
|
152
157
|
|
|
153
|
-
|
|
154
|
-
|
|
158
|
+
# Occurs whenever a Bookkeeping Account is created.
|
|
159
|
+
BOOKKEEPING_ACCOUNT_CREATED = :"bookkeeping_account.created"
|
|
155
160
|
|
|
156
|
-
|
|
157
|
-
|
|
161
|
+
# Occurs whenever a Bookkeeping Account is updated.
|
|
162
|
+
BOOKKEEPING_ACCOUNT_UPDATED = :"bookkeeping_account.updated"
|
|
158
163
|
|
|
159
|
-
|
|
160
|
-
|
|
164
|
+
# Occurs whenever a Bookkeeping Entry Set is created.
|
|
165
|
+
BOOKKEEPING_ENTRY_SET_UPDATED = :"bookkeeping_entry_set.updated"
|
|
161
166
|
|
|
162
|
-
|
|
163
|
-
|
|
167
|
+
# Occurs whenever a Card is created.
|
|
168
|
+
CARD_CREATED = :"card.created"
|
|
164
169
|
|
|
165
|
-
|
|
166
|
-
|
|
170
|
+
# Occurs whenever a Card is updated.
|
|
171
|
+
CARD_UPDATED = :"card.updated"
|
|
167
172
|
|
|
168
|
-
|
|
169
|
-
|
|
173
|
+
# Occurs whenever a Card Payment is created.
|
|
174
|
+
CARD_PAYMENT_CREATED = :"card_payment.created"
|
|
170
175
|
|
|
171
|
-
|
|
172
|
-
|
|
176
|
+
# Occurs whenever a Card Payment is updated.
|
|
177
|
+
CARD_PAYMENT_UPDATED = :"card_payment.updated"
|
|
173
178
|
|
|
174
|
-
|
|
175
|
-
|
|
179
|
+
# Occurs whenever a Card Profile is created.
|
|
180
|
+
CARD_PROFILE_CREATED = :"card_profile.created"
|
|
176
181
|
|
|
177
|
-
|
|
178
|
-
|
|
182
|
+
# Occurs whenever a Card Profile is updated.
|
|
183
|
+
CARD_PROFILE_UPDATED = :"card_profile.updated"
|
|
179
184
|
|
|
180
|
-
|
|
181
|
-
|
|
185
|
+
# Occurs whenever a Card Dispute is created.
|
|
186
|
+
CARD_DISPUTE_CREATED = :"card_dispute.created"
|
|
182
187
|
|
|
183
|
-
|
|
184
|
-
|
|
188
|
+
# Occurs whenever a Card Dispute is updated.
|
|
189
|
+
CARD_DISPUTE_UPDATED = :"card_dispute.updated"
|
|
185
190
|
|
|
186
|
-
|
|
187
|
-
|
|
191
|
+
# Occurs whenever a Check Deposit is created.
|
|
192
|
+
CHECK_DEPOSIT_CREATED = :"check_deposit.created"
|
|
188
193
|
|
|
189
|
-
|
|
190
|
-
|
|
194
|
+
# Occurs whenever a Check Deposit is updated.
|
|
195
|
+
CHECK_DEPOSIT_UPDATED = :"check_deposit.updated"
|
|
191
196
|
|
|
192
|
-
|
|
193
|
-
|
|
197
|
+
# Occurs whenever a Check Transfer is created.
|
|
198
|
+
CHECK_TRANSFER_CREATED = :"check_transfer.created"
|
|
194
199
|
|
|
195
|
-
|
|
196
|
-
|
|
200
|
+
# Occurs whenever a Check Transfer is updated.
|
|
201
|
+
CHECK_TRANSFER_UPDATED = :"check_transfer.updated"
|
|
197
202
|
|
|
198
|
-
|
|
199
|
-
|
|
203
|
+
# Occurs whenever a Declined Transaction is created.
|
|
204
|
+
DECLINED_TRANSACTION_CREATED = :"declined_transaction.created"
|
|
200
205
|
|
|
201
|
-
|
|
202
|
-
|
|
206
|
+
# Occurs whenever a Digital Card Profile is created.
|
|
207
|
+
DIGITAL_CARD_PROFILE_CREATED = :"digital_card_profile.created"
|
|
203
208
|
|
|
204
|
-
|
|
205
|
-
|
|
209
|
+
# Occurs whenever a Digital Card Profile is updated.
|
|
210
|
+
DIGITAL_CARD_PROFILE_UPDATED = :"digital_card_profile.updated"
|
|
206
211
|
|
|
207
|
-
|
|
208
|
-
|
|
212
|
+
# Occurs whenever a Digital Wallet Token is created.
|
|
213
|
+
DIGITAL_WALLET_TOKEN_CREATED = :"digital_wallet_token.created"
|
|
209
214
|
|
|
210
|
-
|
|
211
|
-
|
|
215
|
+
# Occurs whenever a Digital Wallet Token is updated.
|
|
216
|
+
DIGITAL_WALLET_TOKEN_UPDATED = :"digital_wallet_token.updated"
|
|
212
217
|
|
|
213
|
-
|
|
214
|
-
|
|
218
|
+
# Occurs whenever a Document is created.
|
|
219
|
+
DOCUMENT_CREATED = :"document.created"
|
|
215
220
|
|
|
216
|
-
|
|
217
|
-
|
|
221
|
+
# Occurs whenever an Entity is created.
|
|
222
|
+
ENTITY_CREATED = :"entity.created"
|
|
218
223
|
|
|
219
|
-
|
|
220
|
-
|
|
224
|
+
# Occurs whenever an Entity is updated.
|
|
225
|
+
ENTITY_UPDATED = :"entity.updated"
|
|
221
226
|
|
|
222
|
-
|
|
223
|
-
|
|
227
|
+
# Occurs whenever an Event Subscription is created.
|
|
228
|
+
EVENT_SUBSCRIPTION_CREATED = :"event_subscription.created"
|
|
224
229
|
|
|
225
|
-
|
|
226
|
-
|
|
230
|
+
# Occurs whenever an Event Subscription is updated.
|
|
231
|
+
EVENT_SUBSCRIPTION_UPDATED = :"event_subscription.updated"
|
|
227
232
|
|
|
228
|
-
|
|
229
|
-
|
|
233
|
+
# Occurs whenever an Export is created.
|
|
234
|
+
EXPORT_CREATED = :"export.created"
|
|
230
235
|
|
|
231
|
-
|
|
232
|
-
|
|
236
|
+
# Occurs whenever an Export is updated.
|
|
237
|
+
EXPORT_UPDATED = :"export.updated"
|
|
233
238
|
|
|
234
|
-
|
|
235
|
-
|
|
239
|
+
# Occurs whenever an External Account is created.
|
|
240
|
+
EXTERNAL_ACCOUNT_CREATED = :"external_account.created"
|
|
236
241
|
|
|
237
|
-
|
|
238
|
-
|
|
242
|
+
# Occurs whenever an External Account is updated.
|
|
243
|
+
EXTERNAL_ACCOUNT_UPDATED = :"external_account.updated"
|
|
239
244
|
|
|
240
|
-
|
|
241
|
-
|
|
245
|
+
# Occurs whenever a FedNow Transfer is created.
|
|
246
|
+
FEDNOW_TRANSFER_CREATED = :"fednow_transfer.created"
|
|
242
247
|
|
|
243
|
-
|
|
244
|
-
|
|
248
|
+
# Occurs whenever a FedNow Transfer is updated.
|
|
249
|
+
FEDNOW_TRANSFER_UPDATED = :"fednow_transfer.updated"
|
|
245
250
|
|
|
246
|
-
|
|
247
|
-
|
|
251
|
+
# Occurs whenever a File is created.
|
|
252
|
+
FILE_CREATED = :"file.created"
|
|
248
253
|
|
|
249
|
-
|
|
250
|
-
|
|
254
|
+
# Occurs whenever a Group is updated.
|
|
255
|
+
GROUP_UPDATED = :"group.updated"
|
|
251
256
|
|
|
252
|
-
|
|
253
|
-
|
|
257
|
+
# Increase may send webhooks with this category to see if a webhook endpoint is working properly.
|
|
258
|
+
GROUP_HEARTBEAT = :"group.heartbeat"
|
|
254
259
|
|
|
255
|
-
|
|
256
|
-
|
|
260
|
+
# Occurs whenever an Inbound ACH Transfer is created.
|
|
261
|
+
INBOUND_ACH_TRANSFER_CREATED = :"inbound_ach_transfer.created"
|
|
257
262
|
|
|
258
|
-
|
|
259
|
-
|
|
263
|
+
# Occurs whenever an Inbound ACH Transfer is updated.
|
|
264
|
+
INBOUND_ACH_TRANSFER_UPDATED = :"inbound_ach_transfer.updated"
|
|
260
265
|
|
|
261
|
-
|
|
262
|
-
|
|
266
|
+
# Occurs whenever an Inbound ACH Transfer Return is created.
|
|
267
|
+
INBOUND_ACH_TRANSFER_RETURN_CREATED = :"inbound_ach_transfer_return.created"
|
|
263
268
|
|
|
264
|
-
|
|
265
|
-
|
|
269
|
+
# Occurs whenever an Inbound ACH Transfer Return is updated.
|
|
270
|
+
INBOUND_ACH_TRANSFER_RETURN_UPDATED = :"inbound_ach_transfer_return.updated"
|
|
266
271
|
|
|
267
|
-
|
|
268
|
-
|
|
272
|
+
# Occurs whenever an Inbound Check Deposit is created.
|
|
273
|
+
INBOUND_CHECK_DEPOSIT_CREATED = :"inbound_check_deposit.created"
|
|
269
274
|
|
|
270
|
-
|
|
271
|
-
|
|
275
|
+
# Occurs whenever an Inbound Check Deposit is updated.
|
|
276
|
+
INBOUND_CHECK_DEPOSIT_UPDATED = :"inbound_check_deposit.updated"
|
|
272
277
|
|
|
273
|
-
|
|
274
|
-
|
|
278
|
+
# Occurs whenever an Inbound FedNow Transfer is created.
|
|
279
|
+
INBOUND_FEDNOW_TRANSFER_CREATED = :"inbound_fednow_transfer.created"
|
|
275
280
|
|
|
276
|
-
|
|
277
|
-
|
|
281
|
+
# Occurs whenever an Inbound FedNow Transfer is updated.
|
|
282
|
+
INBOUND_FEDNOW_TRANSFER_UPDATED = :"inbound_fednow_transfer.updated"
|
|
278
283
|
|
|
279
|
-
|
|
280
|
-
|
|
284
|
+
# Occurs whenever an Inbound Mail Item is created.
|
|
285
|
+
INBOUND_MAIL_ITEM_CREATED = :"inbound_mail_item.created"
|
|
281
286
|
|
|
282
|
-
|
|
283
|
-
|
|
287
|
+
# Occurs whenever an Inbound Mail Item is updated.
|
|
288
|
+
INBOUND_MAIL_ITEM_UPDATED = :"inbound_mail_item.updated"
|
|
284
289
|
|
|
285
|
-
|
|
286
|
-
|
|
290
|
+
# Occurs whenever an Inbound Real-Time Payments Transfer is created.
|
|
291
|
+
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_CREATED = :"inbound_real_time_payments_transfer.created"
|
|
287
292
|
|
|
288
|
-
|
|
289
|
-
|
|
293
|
+
# Occurs whenever an Inbound Real-Time Payments Transfer is updated.
|
|
294
|
+
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_UPDATED = :"inbound_real_time_payments_transfer.updated"
|
|
290
295
|
|
|
291
|
-
|
|
292
|
-
|
|
296
|
+
# Occurs whenever an Inbound Wire Drawdown Request is created.
|
|
297
|
+
INBOUND_WIRE_DRAWDOWN_REQUEST_CREATED = :"inbound_wire_drawdown_request.created"
|
|
293
298
|
|
|
294
|
-
|
|
295
|
-
|
|
299
|
+
# Occurs whenever an Inbound Wire Transfer is created.
|
|
300
|
+
INBOUND_WIRE_TRANSFER_CREATED = :"inbound_wire_transfer.created"
|
|
296
301
|
|
|
297
|
-
|
|
298
|
-
|
|
302
|
+
# Occurs whenever an Inbound Wire Transfer is updated.
|
|
303
|
+
INBOUND_WIRE_TRANSFER_UPDATED = :"inbound_wire_transfer.updated"
|
|
299
304
|
|
|
300
|
-
|
|
301
|
-
|
|
305
|
+
# Occurs whenever an IntraFi Account Enrollment is created.
|
|
306
|
+
INTRAFI_ACCOUNT_ENROLLMENT_CREATED = :"intrafi_account_enrollment.created"
|
|
302
307
|
|
|
303
|
-
|
|
304
|
-
|
|
308
|
+
# Occurs whenever an IntraFi Account Enrollment is updated.
|
|
309
|
+
INTRAFI_ACCOUNT_ENROLLMENT_UPDATED = :"intrafi_account_enrollment.updated"
|
|
305
310
|
|
|
306
|
-
|
|
307
|
-
|
|
311
|
+
# Occurs whenever an IntraFi Exclusion is created.
|
|
312
|
+
INTRAFI_EXCLUSION_CREATED = :"intrafi_exclusion.created"
|
|
308
313
|
|
|
309
|
-
|
|
310
|
-
|
|
314
|
+
# Occurs whenever an IntraFi Exclusion is updated.
|
|
315
|
+
INTRAFI_EXCLUSION_UPDATED = :"intrafi_exclusion.updated"
|
|
311
316
|
|
|
312
|
-
|
|
313
|
-
|
|
317
|
+
# Occurs whenever a Legacy Card Dispute is created.
|
|
318
|
+
LEGACY_CARD_DISPUTE_CREATED = :"legacy_card_dispute.created"
|
|
314
319
|
|
|
315
|
-
|
|
316
|
-
|
|
320
|
+
# Occurs whenever a Legacy Card Dispute is updated.
|
|
321
|
+
LEGACY_CARD_DISPUTE_UPDATED = :"legacy_card_dispute.updated"
|
|
317
322
|
|
|
318
|
-
|
|
319
|
-
|
|
323
|
+
# Occurs whenever a Lockbox is created.
|
|
324
|
+
LOCKBOX_CREATED = :"lockbox.created"
|
|
320
325
|
|
|
321
|
-
|
|
322
|
-
|
|
326
|
+
# Occurs whenever a Lockbox is updated.
|
|
327
|
+
LOCKBOX_UPDATED = :"lockbox.updated"
|
|
323
328
|
|
|
324
|
-
|
|
325
|
-
|
|
329
|
+
# Occurs whenever an OAuth Connection is created.
|
|
330
|
+
OAUTH_CONNECTION_CREATED = :"oauth_connection.created"
|
|
326
331
|
|
|
327
|
-
|
|
328
|
-
|
|
332
|
+
# Occurs whenever an OAuth Connection is deactivated.
|
|
333
|
+
OAUTH_CONNECTION_DEACTIVATED = :"oauth_connection.deactivated"
|
|
329
334
|
|
|
330
|
-
|
|
331
|
-
|
|
335
|
+
# Occurs whenever a Card Push Transfer is created.
|
|
336
|
+
CARD_PUSH_TRANSFER_CREATED = :"card_push_transfer.created"
|
|
332
337
|
|
|
333
|
-
|
|
334
|
-
|
|
338
|
+
# Occurs whenever a Card Push Transfer is updated.
|
|
339
|
+
CARD_PUSH_TRANSFER_UPDATED = :"card_push_transfer.updated"
|
|
335
340
|
|
|
336
|
-
|
|
337
|
-
|
|
341
|
+
# Occurs whenever a Card Validation is created.
|
|
342
|
+
CARD_VALIDATION_CREATED = :"card_validation.created"
|
|
338
343
|
|
|
339
|
-
|
|
340
|
-
|
|
344
|
+
# Occurs whenever a Card Validation is updated.
|
|
345
|
+
CARD_VALIDATION_UPDATED = :"card_validation.updated"
|
|
341
346
|
|
|
342
|
-
|
|
343
|
-
|
|
347
|
+
# Occurs whenever a Pending Transaction is created.
|
|
348
|
+
PENDING_TRANSACTION_CREATED = :"pending_transaction.created"
|
|
344
349
|
|
|
345
|
-
|
|
346
|
-
|
|
350
|
+
# Occurs whenever a Pending Transaction is updated.
|
|
351
|
+
PENDING_TRANSACTION_UPDATED = :"pending_transaction.updated"
|
|
347
352
|
|
|
348
|
-
|
|
349
|
-
|
|
353
|
+
# Occurs whenever a Physical Card is created.
|
|
354
|
+
PHYSICAL_CARD_CREATED = :"physical_card.created"
|
|
350
355
|
|
|
351
|
-
|
|
352
|
-
|
|
356
|
+
# Occurs whenever a Physical Card is updated.
|
|
357
|
+
PHYSICAL_CARD_UPDATED = :"physical_card.updated"
|
|
353
358
|
|
|
354
|
-
|
|
355
|
-
|
|
359
|
+
# Occurs whenever a Physical Card Profile is created.
|
|
360
|
+
PHYSICAL_CARD_PROFILE_CREATED = :"physical_card_profile.created"
|
|
356
361
|
|
|
357
|
-
|
|
358
|
-
|
|
362
|
+
# Occurs whenever a Physical Card Profile is updated.
|
|
363
|
+
PHYSICAL_CARD_PROFILE_UPDATED = :"physical_card_profile.updated"
|
|
359
364
|
|
|
360
|
-
|
|
361
|
-
|
|
365
|
+
# Occurs whenever a Physical Check is created.
|
|
366
|
+
PHYSICAL_CHECK_CREATED = :"physical_check.created"
|
|
362
367
|
|
|
363
|
-
|
|
364
|
-
|
|
368
|
+
# Occurs whenever a Physical Check is updated.
|
|
369
|
+
PHYSICAL_CHECK_UPDATED = :"physical_check.updated"
|
|
365
370
|
|
|
366
|
-
|
|
367
|
-
|
|
371
|
+
# Occurs whenever a Program is created.
|
|
372
|
+
PROGRAM_CREATED = :"program.created"
|
|
368
373
|
|
|
369
|
-
|
|
370
|
-
|
|
374
|
+
# Occurs whenever a Program is updated.
|
|
375
|
+
PROGRAM_UPDATED = :"program.updated"
|
|
371
376
|
|
|
372
|
-
|
|
373
|
-
|
|
377
|
+
# Occurs whenever a Proof of Authorization Request is created.
|
|
378
|
+
PROOF_OF_AUTHORIZATION_REQUEST_CREATED = :"proof_of_authorization_request.created"
|
|
374
379
|
|
|
375
|
-
|
|
376
|
-
|
|
380
|
+
# Occurs whenever a Proof of Authorization Request is updated.
|
|
381
|
+
PROOF_OF_AUTHORIZATION_REQUEST_UPDATED = :"proof_of_authorization_request.updated"
|
|
377
382
|
|
|
378
|
-
|
|
379
|
-
|
|
383
|
+
# Occurs whenever a Real-Time Decision is created in response to a card authorization.
|
|
384
|
+
REAL_TIME_DECISION_CARD_AUTHORIZATION_REQUESTED = :"real_time_decision.card_authorization_requested"
|
|
380
385
|
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
:"real_time_decision.digital_wallet_authentication_requested"
|
|
386
|
+
# Occurs whenever a Real-Time Decision is created in response to a card balance inquiry.
|
|
387
|
+
REAL_TIME_DECISION_CARD_BALANCE_INQUIRY_REQUESTED = :"real_time_decision.card_balance_inquiry_requested"
|
|
384
388
|
|
|
385
|
-
|
|
386
|
-
|
|
389
|
+
# Occurs whenever a Real-Time Decision is created in response to a digital wallet provisioning attempt.
|
|
390
|
+
REAL_TIME_DECISION_DIGITAL_WALLET_TOKEN_REQUESTED = :"real_time_decision.digital_wallet_token_requested"
|
|
387
391
|
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
392
|
+
# Occurs whenever a Real-Time Decision is created in response to a digital wallet requiring two-factor authentication.
|
|
393
|
+
REAL_TIME_DECISION_DIGITAL_WALLET_AUTHENTICATION_REQUESTED =
|
|
394
|
+
:"real_time_decision.digital_wallet_authentication_requested"
|
|
391
395
|
|
|
392
|
-
|
|
393
|
-
|
|
396
|
+
# Occurs whenever a Real-Time Decision is created in response to 3DS authentication.
|
|
397
|
+
REAL_TIME_DECISION_CARD_AUTHENTICATION_REQUESTED = :"real_time_decision.card_authentication_requested"
|
|
394
398
|
|
|
395
|
-
|
|
396
|
-
|
|
399
|
+
# Occurs whenever a Real-Time Decision is created in response to 3DS authentication challenges.
|
|
400
|
+
REAL_TIME_DECISION_CARD_AUTHENTICATION_CHALLENGE_REQUESTED =
|
|
401
|
+
:"real_time_decision.card_authentication_challenge_requested"
|
|
397
402
|
|
|
398
|
-
|
|
399
|
-
|
|
403
|
+
# Occurs whenever a Real-Time Payments Transfer is created.
|
|
404
|
+
REAL_TIME_PAYMENTS_TRANSFER_CREATED = :"real_time_payments_transfer.created"
|
|
400
405
|
|
|
401
|
-
|
|
402
|
-
|
|
406
|
+
# Occurs whenever a Real-Time Payments Transfer is updated.
|
|
407
|
+
REAL_TIME_PAYMENTS_TRANSFER_UPDATED = :"real_time_payments_transfer.updated"
|
|
403
408
|
|
|
404
|
-
|
|
405
|
-
|
|
409
|
+
# Occurs whenever a Real-Time Payments Request for Payment is created.
|
|
410
|
+
REAL_TIME_PAYMENTS_REQUEST_FOR_PAYMENT_CREATED = :"real_time_payments_request_for_payment.created"
|
|
406
411
|
|
|
407
|
-
|
|
408
|
-
|
|
412
|
+
# Occurs whenever a Real-Time Payments Request for Payment is updated.
|
|
413
|
+
REAL_TIME_PAYMENTS_REQUEST_FOR_PAYMENT_UPDATED = :"real_time_payments_request_for_payment.updated"
|
|
409
414
|
|
|
410
|
-
|
|
411
|
-
|
|
415
|
+
# Occurs whenever a Swift Transfer is created.
|
|
416
|
+
SWIFT_TRANSFER_CREATED = :"swift_transfer.created"
|
|
412
417
|
|
|
413
|
-
|
|
414
|
-
|
|
418
|
+
# Occurs whenever a Swift Transfer is updated.
|
|
419
|
+
SWIFT_TRANSFER_UPDATED = :"swift_transfer.updated"
|
|
415
420
|
|
|
416
|
-
|
|
417
|
-
|
|
421
|
+
# Occurs whenever a Transaction is created.
|
|
422
|
+
TRANSACTION_CREATED = :"transaction.created"
|
|
418
423
|
|
|
419
|
-
|
|
420
|
-
|
|
424
|
+
# Occurs whenever a Wire Drawdown Request is created.
|
|
425
|
+
WIRE_DRAWDOWN_REQUEST_CREATED = :"wire_drawdown_request.created"
|
|
421
426
|
|
|
422
|
-
|
|
423
|
-
|
|
427
|
+
# Occurs whenever a Wire Drawdown Request is updated.
|
|
428
|
+
WIRE_DRAWDOWN_REQUEST_UPDATED = :"wire_drawdown_request.updated"
|
|
424
429
|
|
|
425
|
-
|
|
426
|
-
|
|
430
|
+
# Occurs whenever a Wire Transfer is created.
|
|
431
|
+
WIRE_TRANSFER_CREATED = :"wire_transfer.created"
|
|
432
|
+
|
|
433
|
+
# Occurs whenever a Wire Transfer is updated.
|
|
434
|
+
WIRE_TRANSFER_UPDATED = :"wire_transfer.updated"
|
|
435
|
+
|
|
436
|
+
# @!method self.values
|
|
437
|
+
# @return [Array<Symbol>]
|
|
438
|
+
end
|
|
427
439
|
end
|
|
428
440
|
|
|
429
441
|
# This indicates if we'll send notifications to this subscription.
|