increase 0.580.0 → 0.582.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 +14 -0
- package/package.json +1 -1
- package/resources/check-transfers.d.mts +5 -0
- package/resources/check-transfers.d.mts.map +1 -1
- package/resources/check-transfers.d.ts +5 -0
- package/resources/check-transfers.d.ts.map +1 -1
- package/resources/entities.d.mts +16 -16
- package/resources/entities.d.mts.map +1 -1
- package/resources/entities.d.ts +16 -16
- package/resources/entities.d.ts.map +1 -1
- package/resources/event-subscriptions.d.mts +6 -10
- package/resources/event-subscriptions.d.mts.map +1 -1
- package/resources/event-subscriptions.d.ts +6 -10
- package/resources/event-subscriptions.d.ts.map +1 -1
- package/resources/events.d.mts +7 -11
- package/resources/events.d.mts.map +1 -1
- package/resources/events.d.ts +7 -11
- package/resources/events.d.ts.map +1 -1
- package/src/resources/check-transfers.ts +6 -0
- package/src/resources/entities.ts +16 -16
- package/src/resources/event-subscriptions.ts +8 -12
- package/src/resources/events.ts +10 -14
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -912,29 +912,29 @@ export namespace Entity {
|
|
|
912
912
|
*/
|
|
913
913
|
export interface Grantor {
|
|
914
914
|
/**
|
|
915
|
-
* The
|
|
915
|
+
* The grantor's address.
|
|
916
916
|
*/
|
|
917
|
-
address: Grantor.Address;
|
|
917
|
+
address: Grantor.Address | null;
|
|
918
918
|
|
|
919
919
|
/**
|
|
920
|
-
* The
|
|
920
|
+
* The grantor's date of birth in YYYY-MM-DD format.
|
|
921
921
|
*/
|
|
922
|
-
date_of_birth: string;
|
|
922
|
+
date_of_birth: string | null;
|
|
923
923
|
|
|
924
924
|
/**
|
|
925
|
-
* A means of verifying the
|
|
925
|
+
* A means of verifying the grantor's identity.
|
|
926
926
|
*/
|
|
927
927
|
identification: Grantor.Identification | null;
|
|
928
928
|
|
|
929
929
|
/**
|
|
930
|
-
* The
|
|
930
|
+
* The grantor's legal name.
|
|
931
931
|
*/
|
|
932
932
|
name: string;
|
|
933
933
|
}
|
|
934
934
|
|
|
935
935
|
export namespace Grantor {
|
|
936
936
|
/**
|
|
937
|
-
* The
|
|
937
|
+
* The grantor's address.
|
|
938
938
|
*/
|
|
939
939
|
export interface Address {
|
|
940
940
|
/**
|
|
@@ -970,11 +970,11 @@ export namespace Entity {
|
|
|
970
970
|
}
|
|
971
971
|
|
|
972
972
|
/**
|
|
973
|
-
* A means of verifying the
|
|
973
|
+
* A means of verifying the grantor's identity.
|
|
974
974
|
*/
|
|
975
975
|
export interface Identification {
|
|
976
976
|
/**
|
|
977
|
-
* A method that can be used to verify the
|
|
977
|
+
* A method that can be used to verify the grantor's identity.
|
|
978
978
|
*
|
|
979
979
|
* - `social_security_number` - A social security number.
|
|
980
980
|
* - `individual_taxpayer_identification_number` - An individual taxpayer
|
|
@@ -992,7 +992,7 @@ export namespace Entity {
|
|
|
992
992
|
|
|
993
993
|
/**
|
|
994
994
|
* The last 4 digits of the identification number that can be used to verify the
|
|
995
|
-
*
|
|
995
|
+
* grantor's identity.
|
|
996
996
|
*/
|
|
997
997
|
number_last4: string;
|
|
998
998
|
|
|
@@ -2578,13 +2578,13 @@ export namespace EntityCreateParams {
|
|
|
2578
2578
|
*/
|
|
2579
2579
|
export interface Grantor {
|
|
2580
2580
|
/**
|
|
2581
|
-
* The
|
|
2582
|
-
*
|
|
2581
|
+
* The grantor's physical address. Mail receiving locations like PO Boxes and PMB's
|
|
2582
|
+
* are disallowed.
|
|
2583
2583
|
*/
|
|
2584
2584
|
address: Grantor.Address;
|
|
2585
2585
|
|
|
2586
2586
|
/**
|
|
2587
|
-
* The
|
|
2587
|
+
* The grantor's date of birth in YYYY-MM-DD format.
|
|
2588
2588
|
*/
|
|
2589
2589
|
date_of_birth: string;
|
|
2590
2590
|
|
|
@@ -2594,7 +2594,7 @@ export namespace EntityCreateParams {
|
|
|
2594
2594
|
identification: Grantor.Identification;
|
|
2595
2595
|
|
|
2596
2596
|
/**
|
|
2597
|
-
* The
|
|
2597
|
+
* The grantor's legal name.
|
|
2598
2598
|
*/
|
|
2599
2599
|
name: string;
|
|
2600
2600
|
|
|
@@ -2609,8 +2609,8 @@ export namespace EntityCreateParams {
|
|
|
2609
2609
|
|
|
2610
2610
|
export namespace Grantor {
|
|
2611
2611
|
/**
|
|
2612
|
-
* The
|
|
2613
|
-
*
|
|
2612
|
+
* The grantor's physical address. Mail receiving locations like PO Boxes and PMB's
|
|
2613
|
+
* are disallowed.
|
|
2614
2614
|
*/
|
|
2615
2615
|
export interface Address {
|
|
2616
2616
|
/**
|
|
@@ -283,10 +283,8 @@ export namespace EventSubscription {
|
|
|
283
283
|
* updated.
|
|
284
284
|
* - `physical_check.created` - Occurs whenever a Physical Check is created.
|
|
285
285
|
* - `physical_check.updated` - Occurs whenever a Physical Check is updated.
|
|
286
|
-
* - `
|
|
287
|
-
*
|
|
288
|
-
* - `physical_check_book.updated` - Occurs whenever a Physical Check Book is
|
|
289
|
-
* updated.
|
|
286
|
+
* - `checkbook.created` - Occurs whenever a Checkbook is created.
|
|
287
|
+
* - `checkbook.updated` - Occurs whenever a Checkbook is updated.
|
|
290
288
|
* - `program.created` - Occurs whenever a Program is created.
|
|
291
289
|
* - `program.updated` - Occurs whenever a Program is updated.
|
|
292
290
|
* - `proof_of_authorization_request.created` - Occurs whenever a Proof of
|
|
@@ -420,8 +418,8 @@ export namespace EventSubscription {
|
|
|
420
418
|
| 'physical_card_profile.updated'
|
|
421
419
|
| 'physical_check.created'
|
|
422
420
|
| 'physical_check.updated'
|
|
423
|
-
| '
|
|
424
|
-
| '
|
|
421
|
+
| 'checkbook.created'
|
|
422
|
+
| 'checkbook.updated'
|
|
425
423
|
| 'program.created'
|
|
426
424
|
| 'program.updated'
|
|
427
425
|
| 'proof_of_authorization_request.created'
|
|
@@ -627,10 +625,8 @@ export namespace EventSubscriptionCreateParams {
|
|
|
627
625
|
* updated.
|
|
628
626
|
* - `physical_check.created` - Occurs whenever a Physical Check is created.
|
|
629
627
|
* - `physical_check.updated` - Occurs whenever a Physical Check is updated.
|
|
630
|
-
* - `
|
|
631
|
-
*
|
|
632
|
-
* - `physical_check_book.updated` - Occurs whenever a Physical Check Book is
|
|
633
|
-
* updated.
|
|
628
|
+
* - `checkbook.created` - Occurs whenever a Checkbook is created.
|
|
629
|
+
* - `checkbook.updated` - Occurs whenever a Checkbook is updated.
|
|
634
630
|
* - `program.created` - Occurs whenever a Program is created.
|
|
635
631
|
* - `program.updated` - Occurs whenever a Program is updated.
|
|
636
632
|
* - `proof_of_authorization_request.created` - Occurs whenever a Proof of
|
|
@@ -764,8 +760,8 @@ export namespace EventSubscriptionCreateParams {
|
|
|
764
760
|
| 'physical_card_profile.updated'
|
|
765
761
|
| 'physical_check.created'
|
|
766
762
|
| 'physical_check.updated'
|
|
767
|
-
| '
|
|
768
|
-
| '
|
|
763
|
+
| 'checkbook.created'
|
|
764
|
+
| 'checkbook.updated'
|
|
769
765
|
| 'program.created'
|
|
770
766
|
| 'program.updated'
|
|
771
767
|
| 'proof_of_authorization_request.created'
|
package/src/resources/events.ts
CHANGED
|
@@ -221,10 +221,8 @@ export interface Event {
|
|
|
221
221
|
* updated.
|
|
222
222
|
* - `physical_check.created` - Occurs whenever a Physical Check is created.
|
|
223
223
|
* - `physical_check.updated` - Occurs whenever a Physical Check is updated.
|
|
224
|
-
* - `
|
|
225
|
-
*
|
|
226
|
-
* - `physical_check_book.updated` - Occurs whenever a Physical Check Book is
|
|
227
|
-
* updated.
|
|
224
|
+
* - `checkbook.created` - Occurs whenever a Checkbook is created.
|
|
225
|
+
* - `checkbook.updated` - Occurs whenever a Checkbook is updated.
|
|
228
226
|
* - `program.created` - Occurs whenever a Program is created.
|
|
229
227
|
* - `program.updated` - Occurs whenever a Program is updated.
|
|
230
228
|
* - `proof_of_authorization_request.created` - Occurs whenever a Proof of
|
|
@@ -358,8 +356,8 @@ export interface Event {
|
|
|
358
356
|
| 'physical_card_profile.updated'
|
|
359
357
|
| 'physical_check.created'
|
|
360
358
|
| 'physical_check.updated'
|
|
361
|
-
| '
|
|
362
|
-
| '
|
|
359
|
+
| 'checkbook.created'
|
|
360
|
+
| 'checkbook.updated'
|
|
363
361
|
| 'program.created'
|
|
364
362
|
| 'program.updated'
|
|
365
363
|
| 'proof_of_authorization_request.created'
|
|
@@ -558,10 +556,8 @@ export interface UnwrapWebhookEvent {
|
|
|
558
556
|
* updated.
|
|
559
557
|
* - `physical_check.created` - Occurs whenever a Physical Check is created.
|
|
560
558
|
* - `physical_check.updated` - Occurs whenever a Physical Check is updated.
|
|
561
|
-
* - `
|
|
562
|
-
*
|
|
563
|
-
* - `physical_check_book.updated` - Occurs whenever a Physical Check Book is
|
|
564
|
-
* updated.
|
|
559
|
+
* - `checkbook.created` - Occurs whenever a Checkbook is created.
|
|
560
|
+
* - `checkbook.updated` - Occurs whenever a Checkbook is updated.
|
|
565
561
|
* - `program.created` - Occurs whenever a Program is created.
|
|
566
562
|
* - `program.updated` - Occurs whenever a Program is updated.
|
|
567
563
|
* - `proof_of_authorization_request.created` - Occurs whenever a Proof of
|
|
@@ -695,8 +691,8 @@ export interface UnwrapWebhookEvent {
|
|
|
695
691
|
| 'physical_card_profile.updated'
|
|
696
692
|
| 'physical_check.created'
|
|
697
693
|
| 'physical_check.updated'
|
|
698
|
-
| '
|
|
699
|
-
| '
|
|
694
|
+
| 'checkbook.created'
|
|
695
|
+
| 'checkbook.updated'
|
|
700
696
|
| 'program.created'
|
|
701
697
|
| 'program.updated'
|
|
702
698
|
| 'proof_of_authorization_request.created'
|
|
@@ -846,8 +842,8 @@ export namespace EventListParams {
|
|
|
846
842
|
| 'physical_card_profile.updated'
|
|
847
843
|
| 'physical_check.created'
|
|
848
844
|
| 'physical_check.updated'
|
|
849
|
-
| '
|
|
850
|
-
| '
|
|
845
|
+
| 'checkbook.created'
|
|
846
|
+
| 'checkbook.updated'
|
|
851
847
|
| 'program.created'
|
|
852
848
|
| 'program.updated'
|
|
853
849
|
| 'proof_of_authorization_request.created'
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.582.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.582.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.582.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.582.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|