increase 0.343.0 → 0.345.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.
- package/CHANGELOG.md +16 -0
- package/package.json +1 -1
- package/resources/card-payments.d.ts +589 -1
- package/resources/card-payments.d.ts.map +1 -1
- package/resources/card-payments.js.map +1 -1
- package/resources/card-payments.mjs.map +1 -1
- package/resources/event-subscriptions.d.ts +2 -18
- package/resources/event-subscriptions.d.ts.map +1 -1
- package/resources/event-subscriptions.js.map +1 -1
- package/resources/event-subscriptions.mjs.map +1 -1
- package/resources/events.d.ts +2 -10
- package/resources/events.d.ts.map +1 -1
- package/resources/events.js.map +1 -1
- package/resources/events.mjs.map +1 -1
- package/src/resources/card-payments.ts +708 -0
- package/src/resources/event-subscriptions.ts +0 -24
- package/src/resources/events.ts +0 -16
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -224,14 +224,6 @@ export interface EventSubscription {
|
|
|
224
224
|
* - `oauth_connection.created` - Occurs whenever an OAuth Connection is created.
|
|
225
225
|
* - `oauth_connection.deactivated` - Occurs whenever an OAuth Connection is
|
|
226
226
|
* deactivated.
|
|
227
|
-
* - `outbound_card_push_transfer.created` - Occurs whenever a Card Push Transfer
|
|
228
|
-
* is created.
|
|
229
|
-
* - `outbound_card_push_transfer.updated` - Occurs whenever a Card Push Transfer
|
|
230
|
-
* is updated.
|
|
231
|
-
* - `outbound_card_validation.created` - Occurs whenever a Card Validation is
|
|
232
|
-
* created.
|
|
233
|
-
* - `outbound_card_validation.updated` - Occurs whenever a Card Validation is
|
|
234
|
-
* updated.
|
|
235
227
|
* - `card_push_transfer.created` - Occurs whenever a Card Push Transfer is
|
|
236
228
|
* created.
|
|
237
229
|
* - `card_push_transfer.updated` - Occurs whenever a Card Push Transfer is
|
|
@@ -355,10 +347,6 @@ export interface EventSubscription {
|
|
|
355
347
|
| 'lockbox.updated'
|
|
356
348
|
| 'oauth_connection.created'
|
|
357
349
|
| 'oauth_connection.deactivated'
|
|
358
|
-
| 'outbound_card_push_transfer.created'
|
|
359
|
-
| 'outbound_card_push_transfer.updated'
|
|
360
|
-
| 'outbound_card_validation.created'
|
|
361
|
-
| 'outbound_card_validation.updated'
|
|
362
350
|
| 'card_push_transfer.created'
|
|
363
351
|
| 'card_push_transfer.updated'
|
|
364
352
|
| 'card_validation.created'
|
|
@@ -533,14 +521,6 @@ export interface EventSubscriptionCreateParams {
|
|
|
533
521
|
* - `oauth_connection.created` - Occurs whenever an OAuth Connection is created.
|
|
534
522
|
* - `oauth_connection.deactivated` - Occurs whenever an OAuth Connection is
|
|
535
523
|
* deactivated.
|
|
536
|
-
* - `outbound_card_push_transfer.created` - Occurs whenever a Card Push Transfer
|
|
537
|
-
* is created.
|
|
538
|
-
* - `outbound_card_push_transfer.updated` - Occurs whenever a Card Push Transfer
|
|
539
|
-
* is updated.
|
|
540
|
-
* - `outbound_card_validation.created` - Occurs whenever a Card Validation is
|
|
541
|
-
* created.
|
|
542
|
-
* - `outbound_card_validation.updated` - Occurs whenever a Card Validation is
|
|
543
|
-
* updated.
|
|
544
524
|
* - `card_push_transfer.created` - Occurs whenever a Card Push Transfer is
|
|
545
525
|
* created.
|
|
546
526
|
* - `card_push_transfer.updated` - Occurs whenever a Card Push Transfer is
|
|
@@ -664,10 +644,6 @@ export interface EventSubscriptionCreateParams {
|
|
|
664
644
|
| 'lockbox.updated'
|
|
665
645
|
| 'oauth_connection.created'
|
|
666
646
|
| 'oauth_connection.deactivated'
|
|
667
|
-
| 'outbound_card_push_transfer.created'
|
|
668
|
-
| 'outbound_card_push_transfer.updated'
|
|
669
|
-
| 'outbound_card_validation.created'
|
|
670
|
-
| 'outbound_card_validation.updated'
|
|
671
647
|
| 'card_push_transfer.created'
|
|
672
648
|
| 'card_push_transfer.updated'
|
|
673
649
|
| 'card_validation.created'
|
package/src/resources/events.ts
CHANGED
|
@@ -173,14 +173,6 @@ export interface Event {
|
|
|
173
173
|
* - `oauth_connection.created` - Occurs whenever an OAuth Connection is created.
|
|
174
174
|
* - `oauth_connection.deactivated` - Occurs whenever an OAuth Connection is
|
|
175
175
|
* deactivated.
|
|
176
|
-
* - `outbound_card_push_transfer.created` - Occurs whenever a Card Push Transfer
|
|
177
|
-
* is created.
|
|
178
|
-
* - `outbound_card_push_transfer.updated` - Occurs whenever a Card Push Transfer
|
|
179
|
-
* is updated.
|
|
180
|
-
* - `outbound_card_validation.created` - Occurs whenever a Card Validation is
|
|
181
|
-
* created.
|
|
182
|
-
* - `outbound_card_validation.updated` - Occurs whenever a Card Validation is
|
|
183
|
-
* updated.
|
|
184
176
|
* - `card_push_transfer.created` - Occurs whenever a Card Push Transfer is
|
|
185
177
|
* created.
|
|
186
178
|
* - `card_push_transfer.updated` - Occurs whenever a Card Push Transfer is
|
|
@@ -304,10 +296,6 @@ export interface Event {
|
|
|
304
296
|
| 'lockbox.updated'
|
|
305
297
|
| 'oauth_connection.created'
|
|
306
298
|
| 'oauth_connection.deactivated'
|
|
307
|
-
| 'outbound_card_push_transfer.created'
|
|
308
|
-
| 'outbound_card_push_transfer.updated'
|
|
309
|
-
| 'outbound_card_validation.created'
|
|
310
|
-
| 'outbound_card_validation.updated'
|
|
311
299
|
| 'card_push_transfer.created'
|
|
312
300
|
| 'card_push_transfer.updated'
|
|
313
301
|
| 'card_validation.created'
|
|
@@ -440,10 +428,6 @@ export namespace EventListParams {
|
|
|
440
428
|
| 'lockbox.updated'
|
|
441
429
|
| 'oauth_connection.created'
|
|
442
430
|
| 'oauth_connection.deactivated'
|
|
443
|
-
| 'outbound_card_push_transfer.created'
|
|
444
|
-
| 'outbound_card_push_transfer.updated'
|
|
445
|
-
| 'outbound_card_validation.created'
|
|
446
|
-
| 'outbound_card_validation.updated'
|
|
447
431
|
| 'card_push_transfer.created'
|
|
448
432
|
| 'card_push_transfer.updated'
|
|
449
433
|
| 'card_validation.created'
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.345.0'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.345.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.345.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|