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
|
@@ -4,7 +4,7 @@ module Increase
|
|
|
4
4
|
{
|
|
5
5
|
url: String,
|
|
6
6
|
oauth_connection_id: String,
|
|
7
|
-
|
|
7
|
+
selected_event_categories: ::Array[Increase::EventSubscriptionCreateParams::SelectedEventCategory],
|
|
8
8
|
shared_secret: String,
|
|
9
9
|
status: Increase::Models::EventSubscriptionCreateParams::status
|
|
10
10
|
}
|
|
@@ -20,11 +20,11 @@ module Increase
|
|
|
20
20
|
|
|
21
21
|
def oauth_connection_id=: (String) -> String
|
|
22
22
|
|
|
23
|
-
attr_reader
|
|
23
|
+
attr_reader selected_event_categories: ::Array[Increase::EventSubscriptionCreateParams::SelectedEventCategory]?
|
|
24
24
|
|
|
25
|
-
def
|
|
26
|
-
Increase::
|
|
27
|
-
) -> Increase::
|
|
25
|
+
def selected_event_categories=: (
|
|
26
|
+
::Array[Increase::EventSubscriptionCreateParams::SelectedEventCategory]
|
|
27
|
+
) -> ::Array[Increase::EventSubscriptionCreateParams::SelectedEventCategory]
|
|
28
28
|
|
|
29
29
|
attr_reader shared_secret: String?
|
|
30
30
|
|
|
@@ -39,7 +39,7 @@ module Increase
|
|
|
39
39
|
def initialize: (
|
|
40
40
|
url: String,
|
|
41
41
|
?oauth_connection_id: String,
|
|
42
|
-
?
|
|
42
|
+
?selected_event_categories: ::Array[Increase::EventSubscriptionCreateParams::SelectedEventCategory],
|
|
43
43
|
?shared_secret: String,
|
|
44
44
|
?status: Increase::Models::EventSubscriptionCreateParams::status,
|
|
45
45
|
?request_options: Increase::request_opts
|
|
@@ -48,454 +48,471 @@ module Increase
|
|
|
48
48
|
def to_hash: -> {
|
|
49
49
|
url: String,
|
|
50
50
|
oauth_connection_id: String,
|
|
51
|
-
|
|
51
|
+
selected_event_categories: ::Array[Increase::EventSubscriptionCreateParams::SelectedEventCategory],
|
|
52
52
|
shared_secret: String,
|
|
53
53
|
status: Increase::Models::EventSubscriptionCreateParams::status,
|
|
54
54
|
request_options: Increase::RequestOptions
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
type selected_event_category =
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
58
|
+
{
|
|
59
|
+
event_category: Increase::Models::EventSubscriptionCreateParams::SelectedEventCategory::event_category
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
class SelectedEventCategory < Increase::Internal::Type::BaseModel
|
|
63
|
+
attr_accessor event_category: Increase::Models::EventSubscriptionCreateParams::SelectedEventCategory::event_category
|
|
64
|
+
|
|
65
|
+
def initialize: (
|
|
66
|
+
event_category: Increase::Models::EventSubscriptionCreateParams::SelectedEventCategory::event_category
|
|
67
|
+
) -> void
|
|
68
|
+
|
|
69
|
+
def to_hash: -> {
|
|
70
|
+
event_category: Increase::Models::EventSubscriptionCreateParams::SelectedEventCategory::event_category
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
type event_category =
|
|
74
|
+
:"account.created"
|
|
75
|
+
| :"account.updated"
|
|
76
|
+
| :"account_number.created"
|
|
77
|
+
| :"account_number.updated"
|
|
78
|
+
| :"account_statement.created"
|
|
79
|
+
| :"account_transfer.created"
|
|
80
|
+
| :"account_transfer.updated"
|
|
81
|
+
| :"ach_prenotification.created"
|
|
82
|
+
| :"ach_prenotification.updated"
|
|
83
|
+
| :"ach_transfer.created"
|
|
84
|
+
| :"ach_transfer.updated"
|
|
85
|
+
| :"blockchain_address.created"
|
|
86
|
+
| :"blockchain_address.updated"
|
|
87
|
+
| :"blockchain_offramp_transfer.created"
|
|
88
|
+
| :"blockchain_offramp_transfer.updated"
|
|
89
|
+
| :"blockchain_onramp_transfer.created"
|
|
90
|
+
| :"blockchain_onramp_transfer.updated"
|
|
91
|
+
| :"bookkeeping_account.created"
|
|
92
|
+
| :"bookkeeping_account.updated"
|
|
93
|
+
| :"bookkeeping_entry_set.updated"
|
|
94
|
+
| :"card.created"
|
|
95
|
+
| :"card.updated"
|
|
96
|
+
| :"card_payment.created"
|
|
97
|
+
| :"card_payment.updated"
|
|
98
|
+
| :"card_profile.created"
|
|
99
|
+
| :"card_profile.updated"
|
|
100
|
+
| :"card_dispute.created"
|
|
101
|
+
| :"card_dispute.updated"
|
|
102
|
+
| :"check_deposit.created"
|
|
103
|
+
| :"check_deposit.updated"
|
|
104
|
+
| :"check_transfer.created"
|
|
105
|
+
| :"check_transfer.updated"
|
|
106
|
+
| :"declined_transaction.created"
|
|
107
|
+
| :"digital_card_profile.created"
|
|
108
|
+
| :"digital_card_profile.updated"
|
|
109
|
+
| :"digital_wallet_token.created"
|
|
110
|
+
| :"digital_wallet_token.updated"
|
|
111
|
+
| :"document.created"
|
|
112
|
+
| :"entity.created"
|
|
113
|
+
| :"entity.updated"
|
|
114
|
+
| :"event_subscription.created"
|
|
115
|
+
| :"event_subscription.updated"
|
|
116
|
+
| :"export.created"
|
|
117
|
+
| :"export.updated"
|
|
118
|
+
| :"external_account.created"
|
|
119
|
+
| :"external_account.updated"
|
|
120
|
+
| :"fednow_transfer.created"
|
|
121
|
+
| :"fednow_transfer.updated"
|
|
122
|
+
| :"file.created"
|
|
123
|
+
| :"group.updated"
|
|
124
|
+
| :"group.heartbeat"
|
|
125
|
+
| :"inbound_ach_transfer.created"
|
|
126
|
+
| :"inbound_ach_transfer.updated"
|
|
127
|
+
| :"inbound_ach_transfer_return.created"
|
|
128
|
+
| :"inbound_ach_transfer_return.updated"
|
|
129
|
+
| :"inbound_check_deposit.created"
|
|
130
|
+
| :"inbound_check_deposit.updated"
|
|
131
|
+
| :"inbound_fednow_transfer.created"
|
|
132
|
+
| :"inbound_fednow_transfer.updated"
|
|
133
|
+
| :"inbound_mail_item.created"
|
|
134
|
+
| :"inbound_mail_item.updated"
|
|
135
|
+
| :"inbound_real_time_payments_transfer.created"
|
|
136
|
+
| :"inbound_real_time_payments_transfer.updated"
|
|
137
|
+
| :"inbound_wire_drawdown_request.created"
|
|
138
|
+
| :"inbound_wire_transfer.created"
|
|
139
|
+
| :"inbound_wire_transfer.updated"
|
|
140
|
+
| :"intrafi_account_enrollment.created"
|
|
141
|
+
| :"intrafi_account_enrollment.updated"
|
|
142
|
+
| :"intrafi_exclusion.created"
|
|
143
|
+
| :"intrafi_exclusion.updated"
|
|
144
|
+
| :"legacy_card_dispute.created"
|
|
145
|
+
| :"legacy_card_dispute.updated"
|
|
146
|
+
| :"lockbox.created"
|
|
147
|
+
| :"lockbox.updated"
|
|
148
|
+
| :"oauth_connection.created"
|
|
149
|
+
| :"oauth_connection.deactivated"
|
|
150
|
+
| :"card_push_transfer.created"
|
|
151
|
+
| :"card_push_transfer.updated"
|
|
152
|
+
| :"card_validation.created"
|
|
153
|
+
| :"card_validation.updated"
|
|
154
|
+
| :"pending_transaction.created"
|
|
155
|
+
| :"pending_transaction.updated"
|
|
156
|
+
| :"physical_card.created"
|
|
157
|
+
| :"physical_card.updated"
|
|
158
|
+
| :"physical_card_profile.created"
|
|
159
|
+
| :"physical_card_profile.updated"
|
|
160
|
+
| :"physical_check.created"
|
|
161
|
+
| :"physical_check.updated"
|
|
162
|
+
| :"program.created"
|
|
163
|
+
| :"program.updated"
|
|
164
|
+
| :"proof_of_authorization_request.created"
|
|
165
|
+
| :"proof_of_authorization_request.updated"
|
|
166
|
+
| :"real_time_decision.card_authorization_requested"
|
|
167
|
+
| :"real_time_decision.card_balance_inquiry_requested"
|
|
168
|
+
| :"real_time_decision.digital_wallet_token_requested"
|
|
169
|
+
| :"real_time_decision.digital_wallet_authentication_requested"
|
|
170
|
+
| :"real_time_decision.card_authentication_requested"
|
|
171
|
+
| :"real_time_decision.card_authentication_challenge_requested"
|
|
172
|
+
| :"real_time_payments_transfer.created"
|
|
173
|
+
| :"real_time_payments_transfer.updated"
|
|
174
|
+
| :"real_time_payments_request_for_payment.created"
|
|
175
|
+
| :"real_time_payments_request_for_payment.updated"
|
|
176
|
+
| :"swift_transfer.created"
|
|
177
|
+
| :"swift_transfer.updated"
|
|
178
|
+
| :"transaction.created"
|
|
179
|
+
| :"wire_drawdown_request.created"
|
|
180
|
+
| :"wire_drawdown_request.updated"
|
|
181
|
+
| :"wire_transfer.created"
|
|
182
|
+
| :"wire_transfer.updated"
|
|
183
|
+
|
|
184
|
+
module EventCategory
|
|
185
|
+
extend Increase::Internal::Type::Enum
|
|
186
|
+
|
|
187
|
+
# Occurs whenever an Account is created.
|
|
188
|
+
ACCOUNT_CREATED: :"account.created"
|
|
189
|
+
|
|
190
|
+
# Occurs whenever an Account is updated.
|
|
191
|
+
ACCOUNT_UPDATED: :"account.updated"
|
|
192
|
+
|
|
193
|
+
# Occurs whenever an Account Number is created.
|
|
194
|
+
ACCOUNT_NUMBER_CREATED: :"account_number.created"
|
|
195
|
+
|
|
196
|
+
# Occurs whenever an Account Number is updated.
|
|
197
|
+
ACCOUNT_NUMBER_UPDATED: :"account_number.updated"
|
|
198
|
+
|
|
199
|
+
# Occurs whenever an Account Statement is created.
|
|
200
|
+
ACCOUNT_STATEMENT_CREATED: :"account_statement.created"
|
|
201
|
+
|
|
202
|
+
# Occurs whenever an Account Transfer is created.
|
|
203
|
+
ACCOUNT_TRANSFER_CREATED: :"account_transfer.created"
|
|
204
|
+
|
|
205
|
+
# Occurs whenever an Account Transfer is updated.
|
|
206
|
+
ACCOUNT_TRANSFER_UPDATED: :"account_transfer.updated"
|
|
207
|
+
|
|
208
|
+
# Occurs whenever an ACH Prenotification is created.
|
|
209
|
+
ACH_PRENOTIFICATION_CREATED: :"ach_prenotification.created"
|
|
210
|
+
|
|
211
|
+
# Occurs whenever an ACH Prenotification is updated.
|
|
212
|
+
ACH_PRENOTIFICATION_UPDATED: :"ach_prenotification.updated"
|
|
213
|
+
|
|
214
|
+
# Occurs whenever an ACH Transfer is created.
|
|
215
|
+
ACH_TRANSFER_CREATED: :"ach_transfer.created"
|
|
216
|
+
|
|
217
|
+
# Occurs whenever an ACH Transfer is updated.
|
|
218
|
+
ACH_TRANSFER_UPDATED: :"ach_transfer.updated"
|
|
219
|
+
|
|
220
|
+
# Occurs whenever a Blockchain Address is created.
|
|
221
|
+
BLOCKCHAIN_ADDRESS_CREATED: :"blockchain_address.created"
|
|
222
|
+
|
|
223
|
+
# Occurs whenever a Blockchain Address is updated.
|
|
224
|
+
BLOCKCHAIN_ADDRESS_UPDATED: :"blockchain_address.updated"
|
|
225
|
+
|
|
226
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is created.
|
|
227
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_CREATED: :"blockchain_offramp_transfer.created"
|
|
228
|
+
|
|
229
|
+
# Occurs whenever a Blockchain Off-Ramp Transfer is updated.
|
|
230
|
+
BLOCKCHAIN_OFFRAMP_TRANSFER_UPDATED: :"blockchain_offramp_transfer.updated"
|
|
215
231
|
|
|
216
|
-
|
|
217
|
-
|
|
232
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is created.
|
|
233
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_CREATED: :"blockchain_onramp_transfer.created"
|
|
218
234
|
|
|
219
|
-
|
|
220
|
-
|
|
235
|
+
# Occurs whenever a Blockchain On-Ramp Transfer is updated.
|
|
236
|
+
BLOCKCHAIN_ONRAMP_TRANSFER_UPDATED: :"blockchain_onramp_transfer.updated"
|
|
221
237
|
|
|
222
|
-
|
|
223
|
-
|
|
238
|
+
# Occurs whenever a Bookkeeping Account is created.
|
|
239
|
+
BOOKKEEPING_ACCOUNT_CREATED: :"bookkeeping_account.created"
|
|
224
240
|
|
|
225
|
-
|
|
226
|
-
|
|
241
|
+
# Occurs whenever a Bookkeeping Account is updated.
|
|
242
|
+
BOOKKEEPING_ACCOUNT_UPDATED: :"bookkeeping_account.updated"
|
|
227
243
|
|
|
228
|
-
|
|
229
|
-
|
|
244
|
+
# Occurs whenever a Bookkeeping Entry Set is created.
|
|
245
|
+
BOOKKEEPING_ENTRY_SET_UPDATED: :"bookkeeping_entry_set.updated"
|
|
230
246
|
|
|
231
|
-
|
|
232
|
-
|
|
247
|
+
# Occurs whenever a Card is created.
|
|
248
|
+
CARD_CREATED: :"card.created"
|
|
233
249
|
|
|
234
|
-
|
|
235
|
-
|
|
250
|
+
# Occurs whenever a Card is updated.
|
|
251
|
+
CARD_UPDATED: :"card.updated"
|
|
236
252
|
|
|
237
|
-
|
|
238
|
-
|
|
253
|
+
# Occurs whenever a Card Payment is created.
|
|
254
|
+
CARD_PAYMENT_CREATED: :"card_payment.created"
|
|
239
255
|
|
|
240
|
-
|
|
241
|
-
|
|
256
|
+
# Occurs whenever a Card Payment is updated.
|
|
257
|
+
CARD_PAYMENT_UPDATED: :"card_payment.updated"
|
|
242
258
|
|
|
243
|
-
|
|
244
|
-
|
|
259
|
+
# Occurs whenever a Card Profile is created.
|
|
260
|
+
CARD_PROFILE_CREATED: :"card_profile.created"
|
|
245
261
|
|
|
246
|
-
|
|
247
|
-
|
|
262
|
+
# Occurs whenever a Card Profile is updated.
|
|
263
|
+
CARD_PROFILE_UPDATED: :"card_profile.updated"
|
|
248
264
|
|
|
249
|
-
|
|
250
|
-
|
|
265
|
+
# Occurs whenever a Card Dispute is created.
|
|
266
|
+
CARD_DISPUTE_CREATED: :"card_dispute.created"
|
|
251
267
|
|
|
252
|
-
|
|
253
|
-
|
|
268
|
+
# Occurs whenever a Card Dispute is updated.
|
|
269
|
+
CARD_DISPUTE_UPDATED: :"card_dispute.updated"
|
|
254
270
|
|
|
255
|
-
|
|
256
|
-
|
|
271
|
+
# Occurs whenever a Check Deposit is created.
|
|
272
|
+
CHECK_DEPOSIT_CREATED: :"check_deposit.created"
|
|
257
273
|
|
|
258
|
-
|
|
259
|
-
|
|
274
|
+
# Occurs whenever a Check Deposit is updated.
|
|
275
|
+
CHECK_DEPOSIT_UPDATED: :"check_deposit.updated"
|
|
260
276
|
|
|
261
|
-
|
|
262
|
-
|
|
277
|
+
# Occurs whenever a Check Transfer is created.
|
|
278
|
+
CHECK_TRANSFER_CREATED: :"check_transfer.created"
|
|
263
279
|
|
|
264
|
-
|
|
265
|
-
|
|
280
|
+
# Occurs whenever a Check Transfer is updated.
|
|
281
|
+
CHECK_TRANSFER_UPDATED: :"check_transfer.updated"
|
|
266
282
|
|
|
267
|
-
|
|
268
|
-
|
|
283
|
+
# Occurs whenever a Declined Transaction is created.
|
|
284
|
+
DECLINED_TRANSACTION_CREATED: :"declined_transaction.created"
|
|
269
285
|
|
|
270
|
-
|
|
271
|
-
|
|
286
|
+
# Occurs whenever a Digital Card Profile is created.
|
|
287
|
+
DIGITAL_CARD_PROFILE_CREATED: :"digital_card_profile.created"
|
|
272
288
|
|
|
273
|
-
|
|
274
|
-
|
|
289
|
+
# Occurs whenever a Digital Card Profile is updated.
|
|
290
|
+
DIGITAL_CARD_PROFILE_UPDATED: :"digital_card_profile.updated"
|
|
275
291
|
|
|
276
|
-
|
|
277
|
-
|
|
292
|
+
# Occurs whenever a Digital Wallet Token is created.
|
|
293
|
+
DIGITAL_WALLET_TOKEN_CREATED: :"digital_wallet_token.created"
|
|
278
294
|
|
|
279
|
-
|
|
280
|
-
|
|
295
|
+
# Occurs whenever a Digital Wallet Token is updated.
|
|
296
|
+
DIGITAL_WALLET_TOKEN_UPDATED: :"digital_wallet_token.updated"
|
|
281
297
|
|
|
282
|
-
|
|
283
|
-
|
|
298
|
+
# Occurs whenever a Document is created.
|
|
299
|
+
DOCUMENT_CREATED: :"document.created"
|
|
284
300
|
|
|
285
|
-
|
|
286
|
-
|
|
301
|
+
# Occurs whenever an Entity is created.
|
|
302
|
+
ENTITY_CREATED: :"entity.created"
|
|
287
303
|
|
|
288
|
-
|
|
289
|
-
|
|
304
|
+
# Occurs whenever an Entity is updated.
|
|
305
|
+
ENTITY_UPDATED: :"entity.updated"
|
|
290
306
|
|
|
291
|
-
|
|
292
|
-
|
|
307
|
+
# Occurs whenever an Event Subscription is created.
|
|
308
|
+
EVENT_SUBSCRIPTION_CREATED: :"event_subscription.created"
|
|
293
309
|
|
|
294
|
-
|
|
295
|
-
|
|
310
|
+
# Occurs whenever an Event Subscription is updated.
|
|
311
|
+
EVENT_SUBSCRIPTION_UPDATED: :"event_subscription.updated"
|
|
296
312
|
|
|
297
|
-
|
|
298
|
-
|
|
313
|
+
# Occurs whenever an Export is created.
|
|
314
|
+
EXPORT_CREATED: :"export.created"
|
|
299
315
|
|
|
300
|
-
|
|
301
|
-
|
|
316
|
+
# Occurs whenever an Export is updated.
|
|
317
|
+
EXPORT_UPDATED: :"export.updated"
|
|
302
318
|
|
|
303
|
-
|
|
304
|
-
|
|
319
|
+
# Occurs whenever an External Account is created.
|
|
320
|
+
EXTERNAL_ACCOUNT_CREATED: :"external_account.created"
|
|
305
321
|
|
|
306
|
-
|
|
307
|
-
|
|
322
|
+
# Occurs whenever an External Account is updated.
|
|
323
|
+
EXTERNAL_ACCOUNT_UPDATED: :"external_account.updated"
|
|
308
324
|
|
|
309
|
-
|
|
310
|
-
|
|
325
|
+
# Occurs whenever a FedNow Transfer is created.
|
|
326
|
+
FEDNOW_TRANSFER_CREATED: :"fednow_transfer.created"
|
|
311
327
|
|
|
312
|
-
|
|
313
|
-
|
|
328
|
+
# Occurs whenever a FedNow Transfer is updated.
|
|
329
|
+
FEDNOW_TRANSFER_UPDATED: :"fednow_transfer.updated"
|
|
314
330
|
|
|
315
|
-
|
|
316
|
-
|
|
331
|
+
# Occurs whenever a File is created.
|
|
332
|
+
FILE_CREATED: :"file.created"
|
|
317
333
|
|
|
318
|
-
|
|
319
|
-
|
|
334
|
+
# Occurs whenever a Group is updated.
|
|
335
|
+
GROUP_UPDATED: :"group.updated"
|
|
320
336
|
|
|
321
|
-
|
|
322
|
-
|
|
337
|
+
# Increase may send webhooks with this category to see if a webhook endpoint is working properly.
|
|
338
|
+
GROUP_HEARTBEAT: :"group.heartbeat"
|
|
323
339
|
|
|
324
|
-
|
|
325
|
-
|
|
340
|
+
# Occurs whenever an Inbound ACH Transfer is created.
|
|
341
|
+
INBOUND_ACH_TRANSFER_CREATED: :"inbound_ach_transfer.created"
|
|
326
342
|
|
|
327
|
-
|
|
328
|
-
|
|
343
|
+
# Occurs whenever an Inbound ACH Transfer is updated.
|
|
344
|
+
INBOUND_ACH_TRANSFER_UPDATED: :"inbound_ach_transfer.updated"
|
|
329
345
|
|
|
330
|
-
|
|
331
|
-
|
|
346
|
+
# Occurs whenever an Inbound ACH Transfer Return is created.
|
|
347
|
+
INBOUND_ACH_TRANSFER_RETURN_CREATED: :"inbound_ach_transfer_return.created"
|
|
332
348
|
|
|
333
|
-
|
|
334
|
-
|
|
349
|
+
# Occurs whenever an Inbound ACH Transfer Return is updated.
|
|
350
|
+
INBOUND_ACH_TRANSFER_RETURN_UPDATED: :"inbound_ach_transfer_return.updated"
|
|
335
351
|
|
|
336
|
-
|
|
337
|
-
|
|
352
|
+
# Occurs whenever an Inbound Check Deposit is created.
|
|
353
|
+
INBOUND_CHECK_DEPOSIT_CREATED: :"inbound_check_deposit.created"
|
|
338
354
|
|
|
339
|
-
|
|
340
|
-
|
|
355
|
+
# Occurs whenever an Inbound Check Deposit is updated.
|
|
356
|
+
INBOUND_CHECK_DEPOSIT_UPDATED: :"inbound_check_deposit.updated"
|
|
341
357
|
|
|
342
|
-
|
|
343
|
-
|
|
358
|
+
# Occurs whenever an Inbound FedNow Transfer is created.
|
|
359
|
+
INBOUND_FEDNOW_TRANSFER_CREATED: :"inbound_fednow_transfer.created"
|
|
344
360
|
|
|
345
|
-
|
|
346
|
-
|
|
361
|
+
# Occurs whenever an Inbound FedNow Transfer is updated.
|
|
362
|
+
INBOUND_FEDNOW_TRANSFER_UPDATED: :"inbound_fednow_transfer.updated"
|
|
347
363
|
|
|
348
|
-
|
|
349
|
-
|
|
364
|
+
# Occurs whenever an Inbound Mail Item is created.
|
|
365
|
+
INBOUND_MAIL_ITEM_CREATED: :"inbound_mail_item.created"
|
|
350
366
|
|
|
351
|
-
|
|
352
|
-
|
|
367
|
+
# Occurs whenever an Inbound Mail Item is updated.
|
|
368
|
+
INBOUND_MAIL_ITEM_UPDATED: :"inbound_mail_item.updated"
|
|
353
369
|
|
|
354
|
-
|
|
355
|
-
|
|
370
|
+
# Occurs whenever an Inbound Real-Time Payments Transfer is created.
|
|
371
|
+
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_CREATED: :"inbound_real_time_payments_transfer.created"
|
|
356
372
|
|
|
357
|
-
|
|
358
|
-
|
|
373
|
+
# Occurs whenever an Inbound Real-Time Payments Transfer is updated.
|
|
374
|
+
INBOUND_REAL_TIME_PAYMENTS_TRANSFER_UPDATED: :"inbound_real_time_payments_transfer.updated"
|
|
359
375
|
|
|
360
|
-
|
|
361
|
-
|
|
376
|
+
# Occurs whenever an Inbound Wire Drawdown Request is created.
|
|
377
|
+
INBOUND_WIRE_DRAWDOWN_REQUEST_CREATED: :"inbound_wire_drawdown_request.created"
|
|
362
378
|
|
|
363
|
-
|
|
364
|
-
|
|
379
|
+
# Occurs whenever an Inbound Wire Transfer is created.
|
|
380
|
+
INBOUND_WIRE_TRANSFER_CREATED: :"inbound_wire_transfer.created"
|
|
365
381
|
|
|
366
|
-
|
|
367
|
-
|
|
382
|
+
# Occurs whenever an Inbound Wire Transfer is updated.
|
|
383
|
+
INBOUND_WIRE_TRANSFER_UPDATED: :"inbound_wire_transfer.updated"
|
|
368
384
|
|
|
369
|
-
|
|
370
|
-
|
|
385
|
+
# Occurs whenever an IntraFi Account Enrollment is created.
|
|
386
|
+
INTRAFI_ACCOUNT_ENROLLMENT_CREATED: :"intrafi_account_enrollment.created"
|
|
371
387
|
|
|
372
|
-
|
|
373
|
-
|
|
388
|
+
# Occurs whenever an IntraFi Account Enrollment is updated.
|
|
389
|
+
INTRAFI_ACCOUNT_ENROLLMENT_UPDATED: :"intrafi_account_enrollment.updated"
|
|
374
390
|
|
|
375
|
-
|
|
376
|
-
|
|
391
|
+
# Occurs whenever an IntraFi Exclusion is created.
|
|
392
|
+
INTRAFI_EXCLUSION_CREATED: :"intrafi_exclusion.created"
|
|
377
393
|
|
|
378
|
-
|
|
379
|
-
|
|
394
|
+
# Occurs whenever an IntraFi Exclusion is updated.
|
|
395
|
+
INTRAFI_EXCLUSION_UPDATED: :"intrafi_exclusion.updated"
|
|
380
396
|
|
|
381
|
-
|
|
382
|
-
|
|
397
|
+
# Occurs whenever a Legacy Card Dispute is created.
|
|
398
|
+
LEGACY_CARD_DISPUTE_CREATED: :"legacy_card_dispute.created"
|
|
383
399
|
|
|
384
|
-
|
|
385
|
-
|
|
400
|
+
# Occurs whenever a Legacy Card Dispute is updated.
|
|
401
|
+
LEGACY_CARD_DISPUTE_UPDATED: :"legacy_card_dispute.updated"
|
|
386
402
|
|
|
387
|
-
|
|
388
|
-
|
|
403
|
+
# Occurs whenever a Lockbox is created.
|
|
404
|
+
LOCKBOX_CREATED: :"lockbox.created"
|
|
389
405
|
|
|
390
|
-
|
|
391
|
-
|
|
406
|
+
# Occurs whenever a Lockbox is updated.
|
|
407
|
+
LOCKBOX_UPDATED: :"lockbox.updated"
|
|
392
408
|
|
|
393
|
-
|
|
394
|
-
|
|
409
|
+
# Occurs whenever an OAuth Connection is created.
|
|
410
|
+
OAUTH_CONNECTION_CREATED: :"oauth_connection.created"
|
|
395
411
|
|
|
396
|
-
|
|
397
|
-
|
|
412
|
+
# Occurs whenever an OAuth Connection is deactivated.
|
|
413
|
+
OAUTH_CONNECTION_DEACTIVATED: :"oauth_connection.deactivated"
|
|
398
414
|
|
|
399
|
-
|
|
400
|
-
|
|
415
|
+
# Occurs whenever a Card Push Transfer is created.
|
|
416
|
+
CARD_PUSH_TRANSFER_CREATED: :"card_push_transfer.created"
|
|
401
417
|
|
|
402
|
-
|
|
403
|
-
|
|
418
|
+
# Occurs whenever a Card Push Transfer is updated.
|
|
419
|
+
CARD_PUSH_TRANSFER_UPDATED: :"card_push_transfer.updated"
|
|
404
420
|
|
|
405
|
-
|
|
406
|
-
|
|
421
|
+
# Occurs whenever a Card Validation is created.
|
|
422
|
+
CARD_VALIDATION_CREATED: :"card_validation.created"
|
|
407
423
|
|
|
408
|
-
|
|
409
|
-
|
|
424
|
+
# Occurs whenever a Card Validation is updated.
|
|
425
|
+
CARD_VALIDATION_UPDATED: :"card_validation.updated"
|
|
410
426
|
|
|
411
|
-
|
|
412
|
-
|
|
427
|
+
# Occurs whenever a Pending Transaction is created.
|
|
428
|
+
PENDING_TRANSACTION_CREATED: :"pending_transaction.created"
|
|
413
429
|
|
|
414
|
-
|
|
415
|
-
|
|
430
|
+
# Occurs whenever a Pending Transaction is updated.
|
|
431
|
+
PENDING_TRANSACTION_UPDATED: :"pending_transaction.updated"
|
|
416
432
|
|
|
417
|
-
|
|
418
|
-
|
|
433
|
+
# Occurs whenever a Physical Card is created.
|
|
434
|
+
PHYSICAL_CARD_CREATED: :"physical_card.created"
|
|
419
435
|
|
|
420
|
-
|
|
421
|
-
|
|
436
|
+
# Occurs whenever a Physical Card is updated.
|
|
437
|
+
PHYSICAL_CARD_UPDATED: :"physical_card.updated"
|
|
422
438
|
|
|
423
|
-
|
|
424
|
-
|
|
439
|
+
# Occurs whenever a Physical Card Profile is created.
|
|
440
|
+
PHYSICAL_CARD_PROFILE_CREATED: :"physical_card_profile.created"
|
|
425
441
|
|
|
426
|
-
|
|
427
|
-
|
|
442
|
+
# Occurs whenever a Physical Card Profile is updated.
|
|
443
|
+
PHYSICAL_CARD_PROFILE_UPDATED: :"physical_card_profile.updated"
|
|
428
444
|
|
|
429
|
-
|
|
430
|
-
|
|
445
|
+
# Occurs whenever a Physical Check is created.
|
|
446
|
+
PHYSICAL_CHECK_CREATED: :"physical_check.created"
|
|
431
447
|
|
|
432
|
-
|
|
433
|
-
|
|
448
|
+
# Occurs whenever a Physical Check is updated.
|
|
449
|
+
PHYSICAL_CHECK_UPDATED: :"physical_check.updated"
|
|
434
450
|
|
|
435
|
-
|
|
436
|
-
|
|
451
|
+
# Occurs whenever a Program is created.
|
|
452
|
+
PROGRAM_CREATED: :"program.created"
|
|
437
453
|
|
|
438
|
-
|
|
439
|
-
|
|
454
|
+
# Occurs whenever a Program is updated.
|
|
455
|
+
PROGRAM_UPDATED: :"program.updated"
|
|
440
456
|
|
|
441
|
-
|
|
442
|
-
|
|
457
|
+
# Occurs whenever a Proof of Authorization Request is created.
|
|
458
|
+
PROOF_OF_AUTHORIZATION_REQUEST_CREATED: :"proof_of_authorization_request.created"
|
|
443
459
|
|
|
444
|
-
|
|
445
|
-
|
|
460
|
+
# Occurs whenever a Proof of Authorization Request is updated.
|
|
461
|
+
PROOF_OF_AUTHORIZATION_REQUEST_UPDATED: :"proof_of_authorization_request.updated"
|
|
446
462
|
|
|
447
|
-
|
|
448
|
-
|
|
463
|
+
# Occurs whenever a Real-Time Decision is created in response to a card authorization.
|
|
464
|
+
REAL_TIME_DECISION_CARD_AUTHORIZATION_REQUESTED: :"real_time_decision.card_authorization_requested"
|
|
449
465
|
|
|
450
|
-
|
|
451
|
-
|
|
466
|
+
# Occurs whenever a Real-Time Decision is created in response to a card balance inquiry.
|
|
467
|
+
REAL_TIME_DECISION_CARD_BALANCE_INQUIRY_REQUESTED: :"real_time_decision.card_balance_inquiry_requested"
|
|
452
468
|
|
|
453
|
-
|
|
454
|
-
|
|
469
|
+
# Occurs whenever a Real-Time Decision is created in response to a digital wallet provisioning attempt.
|
|
470
|
+
REAL_TIME_DECISION_DIGITAL_WALLET_TOKEN_REQUESTED: :"real_time_decision.digital_wallet_token_requested"
|
|
455
471
|
|
|
456
|
-
|
|
457
|
-
|
|
472
|
+
# Occurs whenever a Real-Time Decision is created in response to a digital wallet requiring two-factor authentication.
|
|
473
|
+
REAL_TIME_DECISION_DIGITAL_WALLET_AUTHENTICATION_REQUESTED: :"real_time_decision.digital_wallet_authentication_requested"
|
|
458
474
|
|
|
459
|
-
|
|
460
|
-
|
|
475
|
+
# Occurs whenever a Real-Time Decision is created in response to 3DS authentication.
|
|
476
|
+
REAL_TIME_DECISION_CARD_AUTHENTICATION_REQUESTED: :"real_time_decision.card_authentication_requested"
|
|
461
477
|
|
|
462
|
-
|
|
463
|
-
|
|
478
|
+
# Occurs whenever a Real-Time Decision is created in response to 3DS authentication challenges.
|
|
479
|
+
REAL_TIME_DECISION_CARD_AUTHENTICATION_CHALLENGE_REQUESTED: :"real_time_decision.card_authentication_challenge_requested"
|
|
464
480
|
|
|
465
|
-
|
|
466
|
-
|
|
481
|
+
# Occurs whenever a Real-Time Payments Transfer is created.
|
|
482
|
+
REAL_TIME_PAYMENTS_TRANSFER_CREATED: :"real_time_payments_transfer.created"
|
|
467
483
|
|
|
468
|
-
|
|
469
|
-
|
|
484
|
+
# Occurs whenever a Real-Time Payments Transfer is updated.
|
|
485
|
+
REAL_TIME_PAYMENTS_TRANSFER_UPDATED: :"real_time_payments_transfer.updated"
|
|
470
486
|
|
|
471
|
-
|
|
472
|
-
|
|
487
|
+
# Occurs whenever a Real-Time Payments Request for Payment is created.
|
|
488
|
+
REAL_TIME_PAYMENTS_REQUEST_FOR_PAYMENT_CREATED: :"real_time_payments_request_for_payment.created"
|
|
473
489
|
|
|
474
|
-
|
|
475
|
-
|
|
490
|
+
# Occurs whenever a Real-Time Payments Request for Payment is updated.
|
|
491
|
+
REAL_TIME_PAYMENTS_REQUEST_FOR_PAYMENT_UPDATED: :"real_time_payments_request_for_payment.updated"
|
|
476
492
|
|
|
477
|
-
|
|
478
|
-
|
|
493
|
+
# Occurs whenever a Swift Transfer is created.
|
|
494
|
+
SWIFT_TRANSFER_CREATED: :"swift_transfer.created"
|
|
479
495
|
|
|
480
|
-
|
|
481
|
-
|
|
496
|
+
# Occurs whenever a Swift Transfer is updated.
|
|
497
|
+
SWIFT_TRANSFER_UPDATED: :"swift_transfer.updated"
|
|
482
498
|
|
|
483
|
-
|
|
484
|
-
|
|
499
|
+
# Occurs whenever a Transaction is created.
|
|
500
|
+
TRANSACTION_CREATED: :"transaction.created"
|
|
485
501
|
|
|
486
|
-
|
|
487
|
-
|
|
502
|
+
# Occurs whenever a Wire Drawdown Request is created.
|
|
503
|
+
WIRE_DRAWDOWN_REQUEST_CREATED: :"wire_drawdown_request.created"
|
|
488
504
|
|
|
489
|
-
|
|
490
|
-
|
|
505
|
+
# Occurs whenever a Wire Drawdown Request is updated.
|
|
506
|
+
WIRE_DRAWDOWN_REQUEST_UPDATED: :"wire_drawdown_request.updated"
|
|
491
507
|
|
|
492
|
-
|
|
493
|
-
|
|
508
|
+
# Occurs whenever a Wire Transfer is created.
|
|
509
|
+
WIRE_TRANSFER_CREATED: :"wire_transfer.created"
|
|
494
510
|
|
|
495
|
-
|
|
496
|
-
|
|
511
|
+
# Occurs whenever a Wire Transfer is updated.
|
|
512
|
+
WIRE_TRANSFER_UPDATED: :"wire_transfer.updated"
|
|
497
513
|
|
|
498
|
-
|
|
514
|
+
def self?.values: -> ::Array[Increase::Models::EventSubscriptionCreateParams::SelectedEventCategory::event_category]
|
|
515
|
+
end
|
|
499
516
|
end
|
|
500
517
|
|
|
501
518
|
type status = :active | :disabled
|