increase 0.11.3 → 0.11.5

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.
Files changed (97) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/README.md +1 -1
  3. package/index.d.mts +12 -0
  4. package/index.d.ts +12 -0
  5. package/index.d.ts.map +1 -1
  6. package/index.js +6 -0
  7. package/index.js.map +1 -1
  8. package/index.mjs +6 -0
  9. package/index.mjs.map +1 -1
  10. package/package.json +1 -1
  11. package/resources/card-payments.d.ts +1797 -0
  12. package/resources/card-payments.d.ts.map +1 -0
  13. package/resources/card-payments.js +28 -0
  14. package/resources/card-payments.js.map +1 -0
  15. package/resources/card-payments.mjs +23 -0
  16. package/resources/card-payments.mjs.map +1 -0
  17. package/resources/cards.d.ts +7 -1
  18. package/resources/cards.d.ts.map +1 -1
  19. package/resources/cards.js.map +1 -1
  20. package/resources/cards.mjs.map +1 -1
  21. package/resources/entities/entities.d.ts +16 -6
  22. package/resources/entities/entities.d.ts.map +1 -1
  23. package/resources/entities/entities.js.map +1 -1
  24. package/resources/entities/entities.mjs.map +1 -1
  25. package/resources/event-subscriptions.d.ts +40 -2
  26. package/resources/event-subscriptions.d.ts.map +1 -1
  27. package/resources/event-subscriptions.js.map +1 -1
  28. package/resources/event-subscriptions.mjs.map +1 -1
  29. package/resources/events.d.ts +21 -2
  30. package/resources/events.d.ts.map +1 -1
  31. package/resources/events.js.map +1 -1
  32. package/resources/events.mjs.map +1 -1
  33. package/resources/files.d.ts +4 -0
  34. package/resources/files.d.ts.map +1 -1
  35. package/resources/files.js.map +1 -1
  36. package/resources/files.mjs.map +1 -1
  37. package/resources/index.d.ts +2 -0
  38. package/resources/index.d.ts.map +1 -1
  39. package/resources/index.js +8 -2
  40. package/resources/index.js.map +1 -1
  41. package/resources/index.mjs +2 -0
  42. package/resources/index.mjs.map +1 -1
  43. package/resources/physical-cards.d.ts +318 -0
  44. package/resources/physical-cards.d.ts.map +1 -0
  45. package/resources/physical-cards.js +40 -0
  46. package/resources/physical-cards.js.map +1 -0
  47. package/resources/physical-cards.mjs +35 -0
  48. package/resources/physical-cards.mjs.map +1 -0
  49. package/resources/simulations/ach-transfers.d.ts +5 -5
  50. package/resources/simulations/ach-transfers.d.ts.map +1 -1
  51. package/resources/simulations/index.d.ts +1 -0
  52. package/resources/simulations/index.d.ts.map +1 -1
  53. package/resources/simulations/index.js +3 -1
  54. package/resources/simulations/index.js.map +1 -1
  55. package/resources/simulations/index.mjs +1 -0
  56. package/resources/simulations/index.mjs.map +1 -1
  57. package/resources/simulations/interest-payments.d.ts +5 -5
  58. package/resources/simulations/interest-payments.d.ts.map +1 -1
  59. package/resources/simulations/physical-cards.d.ts +34 -0
  60. package/resources/simulations/physical-cards.d.ts.map +1 -0
  61. package/resources/simulations/physical-cards.js +19 -0
  62. package/resources/simulations/physical-cards.js.map +1 -0
  63. package/resources/simulations/physical-cards.mjs +15 -0
  64. package/resources/simulations/physical-cards.mjs.map +1 -0
  65. package/resources/simulations/real-time-payments-transfers.d.ts +5 -5
  66. package/resources/simulations/real-time-payments-transfers.d.ts.map +1 -1
  67. package/resources/simulations/simulations.d.ts +4 -0
  68. package/resources/simulations/simulations.d.ts.map +1 -1
  69. package/resources/simulations/simulations.js +3 -0
  70. package/resources/simulations/simulations.js.map +1 -1
  71. package/resources/simulations/simulations.mjs +3 -0
  72. package/resources/simulations/simulations.mjs.map +1 -1
  73. package/resources/simulations/wire-transfers.d.ts +5 -5
  74. package/resources/simulations/wire-transfers.d.ts.map +1 -1
  75. package/resources/transactions.d.ts +6 -6
  76. package/resources/transactions.d.ts.map +1 -1
  77. package/src/index.ts +14 -0
  78. package/src/resources/card-payments.ts +2284 -0
  79. package/src/resources/cards.ts +8 -1
  80. package/src/resources/entities/entities.ts +18 -6
  81. package/src/resources/event-subscriptions.ts +64 -0
  82. package/src/resources/events.ts +45 -0
  83. package/src/resources/files.ts +5 -0
  84. package/src/resources/index.ts +9 -0
  85. package/src/resources/physical-cards.ts +394 -0
  86. package/src/resources/simulations/ach-transfers.ts +6 -6
  87. package/src/resources/simulations/index.ts +1 -0
  88. package/src/resources/simulations/interest-payments.ts +6 -6
  89. package/src/resources/simulations/physical-cards.ts +51 -0
  90. package/src/resources/simulations/real-time-payments-transfers.ts +6 -6
  91. package/src/resources/simulations/simulations.ts +5 -0
  92. package/src/resources/simulations/wire-transfers.ts +6 -6
  93. package/src/resources/transactions.ts +8 -8
  94. package/src/version.ts +1 -1
  95. package/version.d.ts +1 -1
  96. package/version.js +1 -1
  97. package/version.mjs +1 -1
@@ -252,7 +252,8 @@ export interface CardCreateParams {
252
252
  digital_wallet?: CardCreateParams.DigitalWallet;
253
253
 
254
254
  /**
255
- * The Entity the card should belong to.
255
+ * The Entity the card belongs to. You only need to supply this in rare situations
256
+ * when the card is not for the Account holder.
256
257
  */
257
258
  entity_id?: string;
258
259
  }
@@ -334,6 +335,12 @@ export interface CardUpdateParams {
334
335
  */
335
336
  digital_wallet?: CardUpdateParams.DigitalWallet;
336
337
 
338
+ /**
339
+ * The Entity the card belongs to. You only need to supply this in rare situations
340
+ * when the card is not for the Account holder.
341
+ */
342
+ entity_id?: string;
343
+
337
344
  /**
338
345
  * The status to update the Card with.
339
346
  *
@@ -97,14 +97,15 @@ export interface Entity {
97
97
  natural_person: Entity.NaturalPerson | null;
98
98
 
99
99
  /**
100
- * The relationship between your group and the entity.
100
+ * The status of the entity.
101
101
  *
102
- * - `affiliated` - The entity is controlled by your group.
103
- * - `informational` - The entity is for informational purposes only.
104
- * - `unaffiliated` - The entity is not controlled by your group, but can still
105
- * directly open accounts.
102
+ * - `active` - The entity is active.
103
+ * - `archived` - The entity is archived, and can no longer be used to create
104
+ * accounts.
105
+ * - `disabled` - The entity is temporarily disabled and cannot be used for
106
+ * financial activity.
106
107
  */
107
- relationship: 'affiliated' | 'informational' | 'unaffiliated' | null;
108
+ status: 'active' | 'archived' | 'disabled';
108
109
 
109
110
  /**
110
111
  * The entity's legal structure.
@@ -2057,6 +2058,8 @@ export namespace EntityCreateParams {
2057
2058
 
2058
2059
  export interface EntityListParams extends PageParams {
2059
2060
  created_at?: EntityListParams.CreatedAt;
2061
+
2062
+ status?: EntityListParams.Status;
2060
2063
  }
2061
2064
 
2062
2065
  export namespace EntityListParams {
@@ -2085,6 +2088,15 @@ export namespace EntityListParams {
2085
2088
  */
2086
2089
  on_or_before?: string;
2087
2090
  }
2091
+
2092
+ export interface Status {
2093
+ /**
2094
+ * Filter Entities for those with the specified status or statuses. For GET
2095
+ * requests, this should be encoded as a comma-delimited string, such as
2096
+ * `?in=one,two,three`.
2097
+ */
2098
+ in?: Array<'active' | 'archived' | 'disabled'>;
2099
+ }
2088
2100
  }
2089
2101
 
2090
2102
  export interface EntityUpdateAddressParams {
@@ -94,6 +94,10 @@ export interface EventSubscription {
94
94
  * updated.
95
95
  * - `ach_transfer.created` - Occurs whenever an ACH Transfer is created.
96
96
  * - `ach_transfer.updated` - Occurs whenever an ACH Transfer is updated.
97
+ * - `bookkeeping_account.created` - Occurs whenever a Bookkeeping Account is
98
+ * created.
99
+ * - `bookkeeping_entry_set.updated` - Occurs whenever a Bookkeeping Entry Set is
100
+ * created.
97
101
  * - `card.created` - Occurs whenever a Card is created.
98
102
  * - `card.updated` - Occurs whenever a Card is updated.
99
103
  * - `card_payment.created` - Occurs whenever a Card Payment is created.
@@ -115,7 +119,14 @@ export interface EventSubscription {
115
119
  * - `document.created` - Occurs whenever a Document is created.
116
120
  * - `entity.created` - Occurs whenever an Entity is created.
117
121
  * - `entity.updated` - Occurs whenever an Entity is updated.
122
+ * - `event_subscription.created` - Occurs whenever an Event Subscription is
123
+ * created.
124
+ * - `event_subscription.updated` - Occurs whenever an Event Subscription is
125
+ * updated.
126
+ * - `export.created` - Occurs whenever an Export is created.
127
+ * - `export.updated` - Occurs whenever an Export is updated.
118
128
  * - `external_account.created` - Occurs whenever an External Account is created.
129
+ * - `external_account.updated` - Occurs whenever an External Account is updated.
119
130
  * - `file.created` - Occurs whenever a File is created.
120
131
  * - `group.updated` - Occurs whenever a Group is updated.
121
132
  * - `group.heartbeat` - Increase may send webhooks with this category to see if a
@@ -130,6 +141,12 @@ export interface EventSubscription {
130
141
  * Transfer Return is updated.
131
142
  * - `inbound_wire_drawdown_request.created` - Occurs whenever an Inbound Wire
132
143
  * Drawdown Request is created.
144
+ * - `intrafi_account_enrollment.created` - Occurs whenever an IntraFi Account
145
+ * Enrollment is created.
146
+ * - `intrafi_account_enrollment.updated` - Occurs whenever an IntraFi Account
147
+ * Enrollment is updated.
148
+ * - `intrafi_exclusion.created` - Occurs whenever an IntraFi Exclusion is created.
149
+ * - `intrafi_exclusion.updated` - Occurs whenever an IntraFi Exclusion is updated.
133
150
  * - `oauth_connection.created` - Occurs whenever an OAuth Connection is created.
134
151
  * - `oauth_connection.deactivated` - Occurs whenever an OAuth Connection is
135
152
  * deactivated.
@@ -137,6 +154,8 @@ export interface EventSubscription {
137
154
  * created.
138
155
  * - `pending_transaction.updated` - Occurs whenever a Pending Transaction is
139
156
  * updated.
157
+ * - `physical_card.created` - Occurs whenever a Physical Card is created.
158
+ * - `physical_card.updated` - Occurs whenever a Physical Card is updated.
140
159
  * - `real_time_decision.card_authorization_requested` - Occurs whenever a
141
160
  * Real-Time Decision is created in response to a card authorization.
142
161
  * - `real_time_decision.digital_wallet_token_requested` - Occurs whenever a
@@ -173,6 +192,8 @@ export interface EventSubscription {
173
192
  | 'ach_prenotification.updated'
174
193
  | 'ach_transfer.created'
175
194
  | 'ach_transfer.updated'
195
+ | 'bookkeeping_account.created'
196
+ | 'bookkeeping_entry_set.updated'
176
197
  | 'card.created'
177
198
  | 'card.updated'
178
199
  | 'card_payment.created'
@@ -191,7 +212,12 @@ export interface EventSubscription {
191
212
  | 'document.created'
192
213
  | 'entity.created'
193
214
  | 'entity.updated'
215
+ | 'event_subscription.created'
216
+ | 'event_subscription.updated'
217
+ | 'export.created'
218
+ | 'export.updated'
194
219
  | 'external_account.created'
220
+ | 'external_account.updated'
195
221
  | 'file.created'
196
222
  | 'group.updated'
197
223
  | 'group.heartbeat'
@@ -200,10 +226,16 @@ export interface EventSubscription {
200
226
  | 'inbound_ach_transfer_return.created'
201
227
  | 'inbound_ach_transfer_return.updated'
202
228
  | 'inbound_wire_drawdown_request.created'
229
+ | 'intrafi_account_enrollment.created'
230
+ | 'intrafi_account_enrollment.updated'
231
+ | 'intrafi_exclusion.created'
232
+ | 'intrafi_exclusion.updated'
203
233
  | 'oauth_connection.created'
204
234
  | 'oauth_connection.deactivated'
205
235
  | 'pending_transaction.created'
206
236
  | 'pending_transaction.updated'
237
+ | 'physical_card.created'
238
+ | 'physical_card.updated'
207
239
  | 'real_time_decision.card_authorization_requested'
208
240
  | 'real_time_decision.digital_wallet_token_requested'
209
241
  | 'real_time_decision.digital_wallet_authentication_requested'
@@ -266,6 +298,10 @@ export interface EventSubscriptionCreateParams {
266
298
  * updated.
267
299
  * - `ach_transfer.created` - Occurs whenever an ACH Transfer is created.
268
300
  * - `ach_transfer.updated` - Occurs whenever an ACH Transfer is updated.
301
+ * - `bookkeeping_account.created` - Occurs whenever a Bookkeeping Account is
302
+ * created.
303
+ * - `bookkeeping_entry_set.updated` - Occurs whenever a Bookkeeping Entry Set is
304
+ * created.
269
305
  * - `card.created` - Occurs whenever a Card is created.
270
306
  * - `card.updated` - Occurs whenever a Card is updated.
271
307
  * - `card_payment.created` - Occurs whenever a Card Payment is created.
@@ -287,7 +323,14 @@ export interface EventSubscriptionCreateParams {
287
323
  * - `document.created` - Occurs whenever a Document is created.
288
324
  * - `entity.created` - Occurs whenever an Entity is created.
289
325
  * - `entity.updated` - Occurs whenever an Entity is updated.
326
+ * - `event_subscription.created` - Occurs whenever an Event Subscription is
327
+ * created.
328
+ * - `event_subscription.updated` - Occurs whenever an Event Subscription is
329
+ * updated.
330
+ * - `export.created` - Occurs whenever an Export is created.
331
+ * - `export.updated` - Occurs whenever an Export is updated.
290
332
  * - `external_account.created` - Occurs whenever an External Account is created.
333
+ * - `external_account.updated` - Occurs whenever an External Account is updated.
291
334
  * - `file.created` - Occurs whenever a File is created.
292
335
  * - `group.updated` - Occurs whenever a Group is updated.
293
336
  * - `group.heartbeat` - Increase may send webhooks with this category to see if a
@@ -302,6 +345,12 @@ export interface EventSubscriptionCreateParams {
302
345
  * Transfer Return is updated.
303
346
  * - `inbound_wire_drawdown_request.created` - Occurs whenever an Inbound Wire
304
347
  * Drawdown Request is created.
348
+ * - `intrafi_account_enrollment.created` - Occurs whenever an IntraFi Account
349
+ * Enrollment is created.
350
+ * - `intrafi_account_enrollment.updated` - Occurs whenever an IntraFi Account
351
+ * Enrollment is updated.
352
+ * - `intrafi_exclusion.created` - Occurs whenever an IntraFi Exclusion is created.
353
+ * - `intrafi_exclusion.updated` - Occurs whenever an IntraFi Exclusion is updated.
305
354
  * - `oauth_connection.created` - Occurs whenever an OAuth Connection is created.
306
355
  * - `oauth_connection.deactivated` - Occurs whenever an OAuth Connection is
307
356
  * deactivated.
@@ -309,6 +358,8 @@ export interface EventSubscriptionCreateParams {
309
358
  * created.
310
359
  * - `pending_transaction.updated` - Occurs whenever a Pending Transaction is
311
360
  * updated.
361
+ * - `physical_card.created` - Occurs whenever a Physical Card is created.
362
+ * - `physical_card.updated` - Occurs whenever a Physical Card is updated.
312
363
  * - `real_time_decision.card_authorization_requested` - Occurs whenever a
313
364
  * Real-Time Decision is created in response to a card authorization.
314
365
  * - `real_time_decision.digital_wallet_token_requested` - Occurs whenever a
@@ -345,6 +396,8 @@ export interface EventSubscriptionCreateParams {
345
396
  | 'ach_prenotification.updated'
346
397
  | 'ach_transfer.created'
347
398
  | 'ach_transfer.updated'
399
+ | 'bookkeeping_account.created'
400
+ | 'bookkeeping_entry_set.updated'
348
401
  | 'card.created'
349
402
  | 'card.updated'
350
403
  | 'card_payment.created'
@@ -363,7 +416,12 @@ export interface EventSubscriptionCreateParams {
363
416
  | 'document.created'
364
417
  | 'entity.created'
365
418
  | 'entity.updated'
419
+ | 'event_subscription.created'
420
+ | 'event_subscription.updated'
421
+ | 'export.created'
422
+ | 'export.updated'
366
423
  | 'external_account.created'
424
+ | 'external_account.updated'
367
425
  | 'file.created'
368
426
  | 'group.updated'
369
427
  | 'group.heartbeat'
@@ -372,10 +430,16 @@ export interface EventSubscriptionCreateParams {
372
430
  | 'inbound_ach_transfer_return.created'
373
431
  | 'inbound_ach_transfer_return.updated'
374
432
  | 'inbound_wire_drawdown_request.created'
433
+ | 'intrafi_account_enrollment.created'
434
+ | 'intrafi_account_enrollment.updated'
435
+ | 'intrafi_exclusion.created'
436
+ | 'intrafi_exclusion.updated'
375
437
  | 'oauth_connection.created'
376
438
  | 'oauth_connection.deactivated'
377
439
  | 'pending_transaction.created'
378
440
  | 'pending_transaction.updated'
441
+ | 'physical_card.created'
442
+ | 'physical_card.updated'
379
443
  | 'real_time_decision.card_authorization_requested'
380
444
  | 'real_time_decision.digital_wallet_token_requested'
381
445
  | 'real_time_decision.digital_wallet_authentication_requested'
@@ -73,6 +73,10 @@ export interface Event {
73
73
  * updated.
74
74
  * - `ach_transfer.created` - Occurs whenever an ACH Transfer is created.
75
75
  * - `ach_transfer.updated` - Occurs whenever an ACH Transfer is updated.
76
+ * - `bookkeeping_account.created` - Occurs whenever a Bookkeeping Account is
77
+ * created.
78
+ * - `bookkeeping_entry_set.updated` - Occurs whenever a Bookkeeping Entry Set is
79
+ * created.
76
80
  * - `card.created` - Occurs whenever a Card is created.
77
81
  * - `card.updated` - Occurs whenever a Card is updated.
78
82
  * - `card_payment.created` - Occurs whenever a Card Payment is created.
@@ -94,7 +98,14 @@ export interface Event {
94
98
  * - `document.created` - Occurs whenever a Document is created.
95
99
  * - `entity.created` - Occurs whenever an Entity is created.
96
100
  * - `entity.updated` - Occurs whenever an Entity is updated.
101
+ * - `event_subscription.created` - Occurs whenever an Event Subscription is
102
+ * created.
103
+ * - `event_subscription.updated` - Occurs whenever an Event Subscription is
104
+ * updated.
105
+ * - `export.created` - Occurs whenever an Export is created.
106
+ * - `export.updated` - Occurs whenever an Export is updated.
97
107
  * - `external_account.created` - Occurs whenever an External Account is created.
108
+ * - `external_account.updated` - Occurs whenever an External Account is updated.
98
109
  * - `file.created` - Occurs whenever a File is created.
99
110
  * - `group.updated` - Occurs whenever a Group is updated.
100
111
  * - `group.heartbeat` - Increase may send webhooks with this category to see if a
@@ -109,6 +120,12 @@ export interface Event {
109
120
  * Transfer Return is updated.
110
121
  * - `inbound_wire_drawdown_request.created` - Occurs whenever an Inbound Wire
111
122
  * Drawdown Request is created.
123
+ * - `intrafi_account_enrollment.created` - Occurs whenever an IntraFi Account
124
+ * Enrollment is created.
125
+ * - `intrafi_account_enrollment.updated` - Occurs whenever an IntraFi Account
126
+ * Enrollment is updated.
127
+ * - `intrafi_exclusion.created` - Occurs whenever an IntraFi Exclusion is created.
128
+ * - `intrafi_exclusion.updated` - Occurs whenever an IntraFi Exclusion is updated.
112
129
  * - `oauth_connection.created` - Occurs whenever an OAuth Connection is created.
113
130
  * - `oauth_connection.deactivated` - Occurs whenever an OAuth Connection is
114
131
  * deactivated.
@@ -116,6 +133,8 @@ export interface Event {
116
133
  * created.
117
134
  * - `pending_transaction.updated` - Occurs whenever a Pending Transaction is
118
135
  * updated.
136
+ * - `physical_card.created` - Occurs whenever a Physical Card is created.
137
+ * - `physical_card.updated` - Occurs whenever a Physical Card is updated.
119
138
  * - `real_time_decision.card_authorization_requested` - Occurs whenever a
120
139
  * Real-Time Decision is created in response to a card authorization.
121
140
  * - `real_time_decision.digital_wallet_token_requested` - Occurs whenever a
@@ -152,6 +171,8 @@ export interface Event {
152
171
  | 'ach_prenotification.updated'
153
172
  | 'ach_transfer.created'
154
173
  | 'ach_transfer.updated'
174
+ | 'bookkeeping_account.created'
175
+ | 'bookkeeping_entry_set.updated'
155
176
  | 'card.created'
156
177
  | 'card.updated'
157
178
  | 'card_payment.created'
@@ -170,7 +191,12 @@ export interface Event {
170
191
  | 'document.created'
171
192
  | 'entity.created'
172
193
  | 'entity.updated'
194
+ | 'event_subscription.created'
195
+ | 'event_subscription.updated'
196
+ | 'export.created'
197
+ | 'export.updated'
173
198
  | 'external_account.created'
199
+ | 'external_account.updated'
174
200
  | 'file.created'
175
201
  | 'group.updated'
176
202
  | 'group.heartbeat'
@@ -179,10 +205,16 @@ export interface Event {
179
205
  | 'inbound_ach_transfer_return.created'
180
206
  | 'inbound_ach_transfer_return.updated'
181
207
  | 'inbound_wire_drawdown_request.created'
208
+ | 'intrafi_account_enrollment.created'
209
+ | 'intrafi_account_enrollment.updated'
210
+ | 'intrafi_exclusion.created'
211
+ | 'intrafi_exclusion.updated'
182
212
  | 'oauth_connection.created'
183
213
  | 'oauth_connection.deactivated'
184
214
  | 'pending_transaction.created'
185
215
  | 'pending_transaction.updated'
216
+ | 'physical_card.created'
217
+ | 'physical_card.updated'
186
218
  | 'real_time_decision.card_authorization_requested'
187
219
  | 'real_time_decision.digital_wallet_token_requested'
188
220
  | 'real_time_decision.digital_wallet_authentication_requested'
@@ -238,6 +270,8 @@ export namespace EventListParams {
238
270
  | 'ach_prenotification.updated'
239
271
  | 'ach_transfer.created'
240
272
  | 'ach_transfer.updated'
273
+ | 'bookkeeping_account.created'
274
+ | 'bookkeeping_entry_set.updated'
241
275
  | 'card.created'
242
276
  | 'card.updated'
243
277
  | 'card_payment.created'
@@ -256,7 +290,12 @@ export namespace EventListParams {
256
290
  | 'document.created'
257
291
  | 'entity.created'
258
292
  | 'entity.updated'
293
+ | 'event_subscription.created'
294
+ | 'event_subscription.updated'
295
+ | 'export.created'
296
+ | 'export.updated'
259
297
  | 'external_account.created'
298
+ | 'external_account.updated'
260
299
  | 'file.created'
261
300
  | 'group.updated'
262
301
  | 'group.heartbeat'
@@ -265,10 +304,16 @@ export namespace EventListParams {
265
304
  | 'inbound_ach_transfer_return.created'
266
305
  | 'inbound_ach_transfer_return.updated'
267
306
  | 'inbound_wire_drawdown_request.created'
307
+ | 'intrafi_account_enrollment.created'
308
+ | 'intrafi_account_enrollment.updated'
309
+ | 'intrafi_exclusion.created'
310
+ | 'intrafi_exclusion.updated'
268
311
  | 'oauth_connection.created'
269
312
  | 'oauth_connection.deactivated'
270
313
  | 'pending_transaction.created'
271
314
  | 'pending_transaction.updated'
315
+ | 'physical_card.created'
316
+ | 'physical_card.updated'
272
317
  | 'real_time_decision.card_authorization_requested'
273
318
  | 'real_time_decision.digital_wallet_token_requested'
274
319
  | 'real_time_decision.digital_wallet_authentication_requested'
@@ -84,6 +84,11 @@ export interface File {
84
84
  */
85
85
  filename: string | null;
86
86
 
87
+ /**
88
+ * The MIME type of the file.
89
+ */
90
+ mime_type: string;
91
+
87
92
  /**
88
93
  * What the File will be used for. We may add additional possible values for this
89
94
  * enum over time; your application should be able to handle such additions
@@ -78,6 +78,7 @@ export {
78
78
  CardDisputesPage,
79
79
  CardDisputes,
80
80
  } from './card-disputes';
81
+ export { CardPayment, CardPaymentListParams, CardPaymentsPage, CardPayments } from './card-payments';
81
82
  export {
82
83
  CardProfile,
83
84
  CardProfileCreateParams,
@@ -173,6 +174,14 @@ export {
173
174
  PendingTransactionsPage,
174
175
  PendingTransactions,
175
176
  } from './pending-transactions';
177
+ export {
178
+ PhysicalCard,
179
+ PhysicalCardCreateParams,
180
+ PhysicalCardUpdateParams,
181
+ PhysicalCardListParams,
182
+ PhysicalCardsPage,
183
+ PhysicalCards,
184
+ } from './physical-cards';
176
185
  export { Program, ProgramListParams, ProgramsPage, Programs } from './programs';
177
186
  export { RealTimeDecision, RealTimeDecisionActionParams, RealTimeDecisions } from './real-time-decisions';
178
187
  export {