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