increase 0.12.0 → 0.13.1
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 +21 -0
- package/core.d.ts.map +1 -1
- package/core.js +12 -10
- package/core.js.map +1 -1
- package/core.mjs +12 -10
- package/core.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/card-payments.d.ts +275 -2
- 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/declined-transactions.d.ts +76 -1
- package/resources/declined-transactions.d.ts.map +1 -1
- package/resources/declined-transactions.js.map +1 -1
- package/resources/declined-transactions.mjs.map +1 -1
- package/resources/inbound-ach-transfers.d.ts +8 -2
- package/resources/inbound-ach-transfers.d.ts.map +1 -1
- package/resources/inbound-ach-transfers.js.map +1 -1
- package/resources/inbound-ach-transfers.mjs.map +1 -1
- package/resources/pending-transactions.d.ts +73 -0
- package/resources/pending-transactions.d.ts.map +1 -1
- package/resources/pending-transactions.js.map +1 -1
- package/resources/pending-transactions.mjs.map +1 -1
- package/resources/real-time-decisions.d.ts +73 -0
- package/resources/real-time-decisions.d.ts.map +1 -1
- package/resources/real-time-decisions.js.map +1 -1
- package/resources/real-time-decisions.mjs.map +1 -1
- package/resources/simulations/ach-transfers.d.ts +80 -2
- package/resources/simulations/ach-transfers.d.ts.map +1 -1
- package/resources/simulations/ach-transfers.js.map +1 -1
- package/resources/simulations/ach-transfers.mjs.map +1 -1
- package/resources/simulations/cards.d.ts +149 -1
- package/resources/simulations/cards.d.ts.map +1 -1
- package/resources/simulations/cards.js.map +1 -1
- package/resources/simulations/cards.mjs.map +1 -1
- package/resources/simulations/real-time-payments-transfers.d.ts +76 -1
- package/resources/simulations/real-time-payments-transfers.d.ts.map +1 -1
- package/resources/simulations/real-time-payments-transfers.js.map +1 -1
- package/resources/simulations/real-time-payments-transfers.mjs.map +1 -1
- package/src/_shims/index.d.ts +1 -1
- package/src/_shims/index.mjs +1 -1
- package/src/core.ts +13 -12
- package/src/index.ts +1 -1
- package/src/resources/account-numbers.ts +5 -5
- package/src/resources/account-statements.ts +5 -5
- package/src/resources/account-transfers.ts +5 -5
- package/src/resources/accounts.ts +5 -5
- package/src/resources/ach-prenotifications.ts +5 -5
- package/src/resources/ach-transfers.ts +5 -5
- package/src/resources/balance-lookups.ts +3 -3
- package/src/resources/bookkeeping-accounts.ts +5 -5
- package/src/resources/bookkeeping-entries.ts +5 -5
- package/src/resources/bookkeeping-entry-sets.ts +3 -3
- package/src/resources/card-disputes.ts +5 -5
- package/src/resources/card-payments.ts +333 -6
- package/src/resources/card-profiles.ts +5 -5
- package/src/resources/card-purchase-supplements.ts +5 -5
- package/src/resources/cards.ts +5 -5
- package/src/resources/check-deposits.ts +5 -5
- package/src/resources/check-transfers.ts +5 -5
- package/src/resources/declined-transactions.ts +97 -6
- package/src/resources/digital-wallet-tokens.ts +5 -5
- package/src/resources/documents.ts +5 -5
- package/src/resources/entities/beneficial-owners.ts +4 -4
- package/src/resources/entities/entities.ts +7 -7
- package/src/resources/entities/supplemental-documents.ts +5 -5
- package/src/resources/event-subscriptions.ts +5 -5
- package/src/resources/events.ts +5 -5
- package/src/resources/exports.ts +5 -5
- package/src/resources/external-accounts.ts +5 -5
- package/src/resources/files.ts +6 -6
- package/src/resources/groups.ts +3 -3
- package/src/resources/inbound-ach-transfers.ts +13 -5
- package/src/resources/inbound-wire-drawdown-requests.ts +5 -5
- package/src/resources/oauth-connections.ts +5 -5
- package/src/resources/pending-transactions.ts +93 -5
- package/src/resources/physical-cards.ts +5 -5
- package/src/resources/programs.ts +5 -5
- package/src/resources/real-time-decisions.ts +91 -3
- package/src/resources/real-time-payments-transfers.ts +5 -5
- package/src/resources/routing-numbers.ts +4 -4
- package/src/resources/simulations/account-statements.ts +4 -4
- package/src/resources/simulations/account-transfers.ts +3 -3
- package/src/resources/simulations/ach-transfers.ts +100 -5
- package/src/resources/simulations/card-disputes.ts +4 -4
- package/src/resources/simulations/card-profiles.ts +3 -3
- package/src/resources/simulations/card-refunds.ts +4 -4
- package/src/resources/simulations/cards.ts +184 -5
- package/src/resources/simulations/check-deposits.ts +3 -3
- package/src/resources/simulations/check-transfers.ts +3 -3
- package/src/resources/simulations/digital-wallet-token-requests.ts +3 -3
- package/src/resources/simulations/documents.ts +4 -4
- package/src/resources/simulations/inbound-funds-holds.ts +3 -3
- package/src/resources/simulations/inbound-wire-drawdown-requests.ts +4 -4
- package/src/resources/simulations/interest-payments.ts +3 -3
- package/src/resources/simulations/physical-cards.ts +4 -4
- package/src/resources/simulations/programs.ts +4 -4
- package/src/resources/simulations/real-time-payments-transfers.ts +96 -5
- package/src/resources/simulations/simulations.ts +19 -19
- package/src/resources/simulations/wire-transfers.ts +3 -3
- package/src/resources/transactions.ts +5 -5
- package/src/resources/wire-drawdown-requests.ts +5 -5
- package/src/resources/wire-transfers.ts +5 -5
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless.
|
|
2
2
|
|
|
3
|
-
import * as Core from "../../
|
|
4
|
-
import { APIResource } from "../../
|
|
5
|
-
import * as SimulationsACHTransfersAPI from "
|
|
6
|
-
import * as ACHTransfersAPI from "
|
|
3
|
+
import * as Core from "../../core";
|
|
4
|
+
import { APIResource } from "../../resource";
|
|
5
|
+
import * as SimulationsACHTransfersAPI from "./ach-transfers";
|
|
6
|
+
import * as ACHTransfersAPI from "../ach-transfers";
|
|
7
7
|
|
|
8
8
|
export class ACHTransfers extends APIResource {
|
|
9
9
|
/**
|
|
@@ -462,6 +462,11 @@ export namespace ACHTransferSimulation {
|
|
|
462
462
|
| 'invalid_physical_card'
|
|
463
463
|
| 'missing_original_authorization'
|
|
464
464
|
| 'suspected_fraud';
|
|
465
|
+
|
|
466
|
+
/**
|
|
467
|
+
* Fields related to verification of cardholder-provided values.
|
|
468
|
+
*/
|
|
469
|
+
verification: CardDecline.Verification;
|
|
465
470
|
}
|
|
466
471
|
|
|
467
472
|
export namespace CardDecline {
|
|
@@ -565,6 +570,89 @@ export namespace ACHTransferSimulation {
|
|
|
565
570
|
| null;
|
|
566
571
|
}
|
|
567
572
|
}
|
|
573
|
+
|
|
574
|
+
/**
|
|
575
|
+
* Fields related to verification of cardholder-provided values.
|
|
576
|
+
*/
|
|
577
|
+
export interface Verification {
|
|
578
|
+
/**
|
|
579
|
+
* Fields related to verification of the Card Verification Code, a 3-digit code on
|
|
580
|
+
* the back of the card.
|
|
581
|
+
*/
|
|
582
|
+
card_verification_code: Verification.CardVerificationCode;
|
|
583
|
+
|
|
584
|
+
/**
|
|
585
|
+
* Cardholder address provided in the authorization request and the address on file
|
|
586
|
+
* we verified it against.
|
|
587
|
+
*/
|
|
588
|
+
cardholder_address: Verification.CardholderAddress;
|
|
589
|
+
}
|
|
590
|
+
|
|
591
|
+
export namespace Verification {
|
|
592
|
+
/**
|
|
593
|
+
* Fields related to verification of the Card Verification Code, a 3-digit code on
|
|
594
|
+
* the back of the card.
|
|
595
|
+
*/
|
|
596
|
+
export interface CardVerificationCode {
|
|
597
|
+
/**
|
|
598
|
+
* The result of verifying the Card Verification Code.
|
|
599
|
+
*
|
|
600
|
+
* - `not_checked` - No card verification code was provided in the authorization
|
|
601
|
+
* request.
|
|
602
|
+
* - `match` - The card verification code matched the one on file.
|
|
603
|
+
* - `no_match` - The card verification code did not match the one on file.
|
|
604
|
+
*/
|
|
605
|
+
result: 'not_checked' | 'match' | 'no_match';
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
/**
|
|
609
|
+
* Cardholder address provided in the authorization request and the address on file
|
|
610
|
+
* we verified it against.
|
|
611
|
+
*/
|
|
612
|
+
export interface CardholderAddress {
|
|
613
|
+
/**
|
|
614
|
+
* Line 1 of the address on file for the cardholder.
|
|
615
|
+
*/
|
|
616
|
+
actual_line1: string | null;
|
|
617
|
+
|
|
618
|
+
/**
|
|
619
|
+
* The postal code of the address on file for the cardholder.
|
|
620
|
+
*/
|
|
621
|
+
actual_postal_code: string | null;
|
|
622
|
+
|
|
623
|
+
/**
|
|
624
|
+
* The cardholder address line 1 provided for verification in the authorization
|
|
625
|
+
* request.
|
|
626
|
+
*/
|
|
627
|
+
provided_line1: string | null;
|
|
628
|
+
|
|
629
|
+
/**
|
|
630
|
+
* The postal code provided for verification in the authorization request.
|
|
631
|
+
*/
|
|
632
|
+
provided_postal_code: string | null;
|
|
633
|
+
|
|
634
|
+
/**
|
|
635
|
+
* The address verification result returned to the card network.
|
|
636
|
+
*
|
|
637
|
+
* - `not_checked` - No adress was provided in the authorization request.
|
|
638
|
+
* - `postal_code_match_address_not_checked` - Postal code matches, but the street
|
|
639
|
+
* address was not verified.
|
|
640
|
+
* - `postal_code_match_address_no_match` - Postal code matches, but the street
|
|
641
|
+
* address does not match.
|
|
642
|
+
* - `postal_code_no_match_address_match` - Postal code does not match, but the
|
|
643
|
+
* street address matches.
|
|
644
|
+
* - `match` - Postal code and street address match.
|
|
645
|
+
* - `no_match` - Postal code and street address do not match.
|
|
646
|
+
*/
|
|
647
|
+
result:
|
|
648
|
+
| 'not_checked'
|
|
649
|
+
| 'postal_code_match_address_not_checked'
|
|
650
|
+
| 'postal_code_match_address_no_match'
|
|
651
|
+
| 'postal_code_no_match_address_match'
|
|
652
|
+
| 'match'
|
|
653
|
+
| 'no_match';
|
|
654
|
+
}
|
|
655
|
+
}
|
|
568
656
|
}
|
|
569
657
|
|
|
570
658
|
/**
|
|
@@ -601,6 +689,8 @@ export namespace ACHTransferSimulation {
|
|
|
601
689
|
* does not match the amount on the check.
|
|
602
690
|
* - `not_our_item` - The check attempting to be deposited does not belong to
|
|
603
691
|
* Increase.
|
|
692
|
+
* - `no_account_number_found` - The account number on the check does not exist at
|
|
693
|
+
* Increase.
|
|
604
694
|
*/
|
|
605
695
|
reason:
|
|
606
696
|
| 'ach_route_disabled'
|
|
@@ -613,7 +703,8 @@ export namespace ACHTransferSimulation {
|
|
|
613
703
|
| 'duplicate_presentment'
|
|
614
704
|
| 'not_authorized'
|
|
615
705
|
| 'amount_mismatch'
|
|
616
|
-
| 'not_our_item'
|
|
706
|
+
| 'not_our_item'
|
|
707
|
+
| 'no_account_number_found';
|
|
617
708
|
}
|
|
618
709
|
|
|
619
710
|
/**
|
|
@@ -4644,6 +4735,9 @@ export namespace ACHTransferSimulation {
|
|
|
4644
4735
|
/**
|
|
4645
4736
|
* The reason for the transfer return.
|
|
4646
4737
|
*
|
|
4738
|
+
* - `returned_per_odfi_request` - The originating financial institution asked for
|
|
4739
|
+
* this transfer to be returned. The receiving bank is complying with the
|
|
4740
|
+
* request. The Nacha return code is R06.
|
|
4647
4741
|
* - `authorization_revoked_by_customer` - The customer no longer authorizes this
|
|
4648
4742
|
* transaction. The Nacha return code is R07.
|
|
4649
4743
|
* - `payment_stopped` - The customer asked for the payment to be stopped. This
|
|
@@ -4663,6 +4757,7 @@ export namespace ACHTransferSimulation {
|
|
|
4663
4757
|
* authorizes this transaction. The Nacha return code is R29.
|
|
4664
4758
|
*/
|
|
4665
4759
|
reason:
|
|
4760
|
+
| 'returned_per_odfi_request'
|
|
4666
4761
|
| 'authorization_revoked_by_customer'
|
|
4667
4762
|
| 'payment_stopped'
|
|
4668
4763
|
| 'customer_advised_unauthorized_improper_ineligible_or_incomplete'
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless.
|
|
2
2
|
|
|
3
|
-
import * as Core from "../../
|
|
4
|
-
import { APIResource } from "../../
|
|
5
|
-
import * as SimulationsCardDisputesAPI from "
|
|
6
|
-
import * as CardDisputesAPI from "
|
|
3
|
+
import * as Core from "../../core";
|
|
4
|
+
import { APIResource } from "../../resource";
|
|
5
|
+
import * as SimulationsCardDisputesAPI from "./card-disputes";
|
|
6
|
+
import * as CardDisputesAPI from "../card-disputes";
|
|
7
7
|
|
|
8
8
|
export class CardDisputes extends APIResource {
|
|
9
9
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless.
|
|
2
2
|
|
|
3
|
-
import * as Core from "../../
|
|
4
|
-
import { APIResource } from "../../
|
|
5
|
-
import * as CardProfilesAPI from "
|
|
3
|
+
import * as Core from "../../core";
|
|
4
|
+
import { APIResource } from "../../resource";
|
|
5
|
+
import * as CardProfilesAPI from "../card-profiles";
|
|
6
6
|
|
|
7
7
|
export class CardProfiles extends APIResource {
|
|
8
8
|
/**
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless.
|
|
2
2
|
|
|
3
|
-
import * as Core from "../../
|
|
4
|
-
import { APIResource } from "../../
|
|
5
|
-
import * as CardRefundsAPI from "
|
|
6
|
-
import * as TransactionsAPI from "
|
|
3
|
+
import * as Core from "../../core";
|
|
4
|
+
import { APIResource } from "../../resource";
|
|
5
|
+
import * as CardRefundsAPI from "./card-refunds";
|
|
6
|
+
import * as TransactionsAPI from "../transactions";
|
|
7
7
|
|
|
8
8
|
export class CardRefunds extends APIResource {
|
|
9
9
|
/**
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless.
|
|
2
2
|
|
|
3
|
-
import * as Core from "../../
|
|
4
|
-
import { APIResource } from "../../
|
|
5
|
-
import * as CardsAPI from "
|
|
6
|
-
import * as TransactionsAPI from "
|
|
3
|
+
import * as Core from "../../core";
|
|
4
|
+
import { APIResource } from "../../resource";
|
|
5
|
+
import * as CardsAPI from "./cards";
|
|
6
|
+
import * as TransactionsAPI from "../transactions";
|
|
7
7
|
|
|
8
8
|
export class Cards extends APIResource {
|
|
9
9
|
/**
|
|
@@ -443,6 +443,11 @@ export namespace CardAuthorizationSimulation {
|
|
|
443
443
|
| 'invalid_physical_card'
|
|
444
444
|
| 'missing_original_authorization'
|
|
445
445
|
| 'suspected_fraud';
|
|
446
|
+
|
|
447
|
+
/**
|
|
448
|
+
* Fields related to verification of cardholder-provided values.
|
|
449
|
+
*/
|
|
450
|
+
verification: CardDecline.Verification;
|
|
446
451
|
}
|
|
447
452
|
|
|
448
453
|
export namespace CardDecline {
|
|
@@ -546,6 +551,89 @@ export namespace CardAuthorizationSimulation {
|
|
|
546
551
|
| null;
|
|
547
552
|
}
|
|
548
553
|
}
|
|
554
|
+
|
|
555
|
+
/**
|
|
556
|
+
* Fields related to verification of cardholder-provided values.
|
|
557
|
+
*/
|
|
558
|
+
export interface Verification {
|
|
559
|
+
/**
|
|
560
|
+
* Fields related to verification of the Card Verification Code, a 3-digit code on
|
|
561
|
+
* the back of the card.
|
|
562
|
+
*/
|
|
563
|
+
card_verification_code: Verification.CardVerificationCode;
|
|
564
|
+
|
|
565
|
+
/**
|
|
566
|
+
* Cardholder address provided in the authorization request and the address on file
|
|
567
|
+
* we verified it against.
|
|
568
|
+
*/
|
|
569
|
+
cardholder_address: Verification.CardholderAddress;
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
export namespace Verification {
|
|
573
|
+
/**
|
|
574
|
+
* Fields related to verification of the Card Verification Code, a 3-digit code on
|
|
575
|
+
* the back of the card.
|
|
576
|
+
*/
|
|
577
|
+
export interface CardVerificationCode {
|
|
578
|
+
/**
|
|
579
|
+
* The result of verifying the Card Verification Code.
|
|
580
|
+
*
|
|
581
|
+
* - `not_checked` - No card verification code was provided in the authorization
|
|
582
|
+
* request.
|
|
583
|
+
* - `match` - The card verification code matched the one on file.
|
|
584
|
+
* - `no_match` - The card verification code did not match the one on file.
|
|
585
|
+
*/
|
|
586
|
+
result: 'not_checked' | 'match' | 'no_match';
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
/**
|
|
590
|
+
* Cardholder address provided in the authorization request and the address on file
|
|
591
|
+
* we verified it against.
|
|
592
|
+
*/
|
|
593
|
+
export interface CardholderAddress {
|
|
594
|
+
/**
|
|
595
|
+
* Line 1 of the address on file for the cardholder.
|
|
596
|
+
*/
|
|
597
|
+
actual_line1: string | null;
|
|
598
|
+
|
|
599
|
+
/**
|
|
600
|
+
* The postal code of the address on file for the cardholder.
|
|
601
|
+
*/
|
|
602
|
+
actual_postal_code: string | null;
|
|
603
|
+
|
|
604
|
+
/**
|
|
605
|
+
* The cardholder address line 1 provided for verification in the authorization
|
|
606
|
+
* request.
|
|
607
|
+
*/
|
|
608
|
+
provided_line1: string | null;
|
|
609
|
+
|
|
610
|
+
/**
|
|
611
|
+
* The postal code provided for verification in the authorization request.
|
|
612
|
+
*/
|
|
613
|
+
provided_postal_code: string | null;
|
|
614
|
+
|
|
615
|
+
/**
|
|
616
|
+
* The address verification result returned to the card network.
|
|
617
|
+
*
|
|
618
|
+
* - `not_checked` - No adress was provided in the authorization request.
|
|
619
|
+
* - `postal_code_match_address_not_checked` - Postal code matches, but the street
|
|
620
|
+
* address was not verified.
|
|
621
|
+
* - `postal_code_match_address_no_match` - Postal code matches, but the street
|
|
622
|
+
* address does not match.
|
|
623
|
+
* - `postal_code_no_match_address_match` - Postal code does not match, but the
|
|
624
|
+
* street address matches.
|
|
625
|
+
* - `match` - Postal code and street address match.
|
|
626
|
+
* - `no_match` - Postal code and street address do not match.
|
|
627
|
+
*/
|
|
628
|
+
result:
|
|
629
|
+
| 'not_checked'
|
|
630
|
+
| 'postal_code_match_address_not_checked'
|
|
631
|
+
| 'postal_code_match_address_no_match'
|
|
632
|
+
| 'postal_code_no_match_address_match'
|
|
633
|
+
| 'match'
|
|
634
|
+
| 'no_match';
|
|
635
|
+
}
|
|
636
|
+
}
|
|
549
637
|
}
|
|
550
638
|
|
|
551
639
|
/**
|
|
@@ -582,6 +670,8 @@ export namespace CardAuthorizationSimulation {
|
|
|
582
670
|
* does not match the amount on the check.
|
|
583
671
|
* - `not_our_item` - The check attempting to be deposited does not belong to
|
|
584
672
|
* Increase.
|
|
673
|
+
* - `no_account_number_found` - The account number on the check does not exist at
|
|
674
|
+
* Increase.
|
|
585
675
|
*/
|
|
586
676
|
reason:
|
|
587
677
|
| 'ach_route_disabled'
|
|
@@ -594,7 +684,8 @@ export namespace CardAuthorizationSimulation {
|
|
|
594
684
|
| 'duplicate_presentment'
|
|
595
685
|
| 'not_authorized'
|
|
596
686
|
| 'amount_mismatch'
|
|
597
|
-
| 'not_our_item'
|
|
687
|
+
| 'not_our_item'
|
|
688
|
+
| 'no_account_number_found';
|
|
598
689
|
}
|
|
599
690
|
|
|
600
691
|
/**
|
|
@@ -1421,6 +1512,11 @@ export namespace CardAuthorizationSimulation {
|
|
|
1421
1512
|
* `card_authorization`.
|
|
1422
1513
|
*/
|
|
1423
1514
|
type: 'card_authorization';
|
|
1515
|
+
|
|
1516
|
+
/**
|
|
1517
|
+
* Fields related to verification of cardholder-provided values.
|
|
1518
|
+
*/
|
|
1519
|
+
verification: CardAuthorization.Verification;
|
|
1424
1520
|
}
|
|
1425
1521
|
|
|
1426
1522
|
export namespace CardAuthorization {
|
|
@@ -1524,6 +1620,89 @@ export namespace CardAuthorizationSimulation {
|
|
|
1524
1620
|
| null;
|
|
1525
1621
|
}
|
|
1526
1622
|
}
|
|
1623
|
+
|
|
1624
|
+
/**
|
|
1625
|
+
* Fields related to verification of cardholder-provided values.
|
|
1626
|
+
*/
|
|
1627
|
+
export interface Verification {
|
|
1628
|
+
/**
|
|
1629
|
+
* Fields related to verification of the Card Verification Code, a 3-digit code on
|
|
1630
|
+
* the back of the card.
|
|
1631
|
+
*/
|
|
1632
|
+
card_verification_code: Verification.CardVerificationCode;
|
|
1633
|
+
|
|
1634
|
+
/**
|
|
1635
|
+
* Cardholder address provided in the authorization request and the address on file
|
|
1636
|
+
* we verified it against.
|
|
1637
|
+
*/
|
|
1638
|
+
cardholder_address: Verification.CardholderAddress;
|
|
1639
|
+
}
|
|
1640
|
+
|
|
1641
|
+
export namespace Verification {
|
|
1642
|
+
/**
|
|
1643
|
+
* Fields related to verification of the Card Verification Code, a 3-digit code on
|
|
1644
|
+
* the back of the card.
|
|
1645
|
+
*/
|
|
1646
|
+
export interface CardVerificationCode {
|
|
1647
|
+
/**
|
|
1648
|
+
* The result of verifying the Card Verification Code.
|
|
1649
|
+
*
|
|
1650
|
+
* - `not_checked` - No card verification code was provided in the authorization
|
|
1651
|
+
* request.
|
|
1652
|
+
* - `match` - The card verification code matched the one on file.
|
|
1653
|
+
* - `no_match` - The card verification code did not match the one on file.
|
|
1654
|
+
*/
|
|
1655
|
+
result: 'not_checked' | 'match' | 'no_match';
|
|
1656
|
+
}
|
|
1657
|
+
|
|
1658
|
+
/**
|
|
1659
|
+
* Cardholder address provided in the authorization request and the address on file
|
|
1660
|
+
* we verified it against.
|
|
1661
|
+
*/
|
|
1662
|
+
export interface CardholderAddress {
|
|
1663
|
+
/**
|
|
1664
|
+
* Line 1 of the address on file for the cardholder.
|
|
1665
|
+
*/
|
|
1666
|
+
actual_line1: string | null;
|
|
1667
|
+
|
|
1668
|
+
/**
|
|
1669
|
+
* The postal code of the address on file for the cardholder.
|
|
1670
|
+
*/
|
|
1671
|
+
actual_postal_code: string | null;
|
|
1672
|
+
|
|
1673
|
+
/**
|
|
1674
|
+
* The cardholder address line 1 provided for verification in the authorization
|
|
1675
|
+
* request.
|
|
1676
|
+
*/
|
|
1677
|
+
provided_line1: string | null;
|
|
1678
|
+
|
|
1679
|
+
/**
|
|
1680
|
+
* The postal code provided for verification in the authorization request.
|
|
1681
|
+
*/
|
|
1682
|
+
provided_postal_code: string | null;
|
|
1683
|
+
|
|
1684
|
+
/**
|
|
1685
|
+
* The address verification result returned to the card network.
|
|
1686
|
+
*
|
|
1687
|
+
* - `not_checked` - No adress was provided in the authorization request.
|
|
1688
|
+
* - `postal_code_match_address_not_checked` - Postal code matches, but the street
|
|
1689
|
+
* address was not verified.
|
|
1690
|
+
* - `postal_code_match_address_no_match` - Postal code matches, but the street
|
|
1691
|
+
* address does not match.
|
|
1692
|
+
* - `postal_code_no_match_address_match` - Postal code does not match, but the
|
|
1693
|
+
* street address matches.
|
|
1694
|
+
* - `match` - Postal code and street address match.
|
|
1695
|
+
* - `no_match` - Postal code and street address do not match.
|
|
1696
|
+
*/
|
|
1697
|
+
result:
|
|
1698
|
+
| 'not_checked'
|
|
1699
|
+
| 'postal_code_match_address_not_checked'
|
|
1700
|
+
| 'postal_code_match_address_no_match'
|
|
1701
|
+
| 'postal_code_no_match_address_match'
|
|
1702
|
+
| 'match'
|
|
1703
|
+
| 'no_match';
|
|
1704
|
+
}
|
|
1705
|
+
}
|
|
1527
1706
|
}
|
|
1528
1707
|
|
|
1529
1708
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless.
|
|
2
2
|
|
|
3
|
-
import * as Core from "../../
|
|
4
|
-
import { APIResource } from "../../
|
|
5
|
-
import * as CheckDepositsAPI from "
|
|
3
|
+
import * as Core from "../../core";
|
|
4
|
+
import { APIResource } from "../../resource";
|
|
5
|
+
import * as CheckDepositsAPI from "../check-deposits";
|
|
6
6
|
|
|
7
7
|
export class CheckDeposits extends APIResource {
|
|
8
8
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless.
|
|
2
2
|
|
|
3
|
-
import * as Core from "../../
|
|
4
|
-
import { APIResource } from "../../
|
|
5
|
-
import * as CheckTransfersAPI from "
|
|
3
|
+
import * as Core from "../../core";
|
|
4
|
+
import { APIResource } from "../../resource";
|
|
5
|
+
import * as CheckTransfersAPI from "../check-transfers";
|
|
6
6
|
|
|
7
7
|
export class CheckTransfers extends APIResource {
|
|
8
8
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless.
|
|
2
2
|
|
|
3
|
-
import * as Core from "../../
|
|
4
|
-
import { APIResource } from "../../
|
|
5
|
-
import * as DigitalWalletTokenRequestsAPI from "
|
|
3
|
+
import * as Core from "../../core";
|
|
4
|
+
import { APIResource } from "../../resource";
|
|
5
|
+
import * as DigitalWalletTokenRequestsAPI from "./digital-wallet-token-requests";
|
|
6
6
|
|
|
7
7
|
export class DigitalWalletTokenRequests extends APIResource {
|
|
8
8
|
/**
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless.
|
|
2
2
|
|
|
3
|
-
import * as Core from "../../
|
|
4
|
-
import { APIResource } from "../../
|
|
5
|
-
import * as SimulationsDocumentsAPI from "
|
|
6
|
-
import * as DocumentsAPI from "
|
|
3
|
+
import * as Core from "../../core";
|
|
4
|
+
import { APIResource } from "../../resource";
|
|
5
|
+
import * as SimulationsDocumentsAPI from "./documents";
|
|
6
|
+
import * as DocumentsAPI from "../documents";
|
|
7
7
|
|
|
8
8
|
export class Documents extends APIResource {
|
|
9
9
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless.
|
|
2
2
|
|
|
3
|
-
import * as Core from "../../
|
|
4
|
-
import { APIResource } from "../../
|
|
5
|
-
import * as InboundFundsHoldsAPI from "
|
|
3
|
+
import * as Core from "../../core";
|
|
4
|
+
import { APIResource } from "../../resource";
|
|
5
|
+
import * as InboundFundsHoldsAPI from "./inbound-funds-holds";
|
|
6
6
|
|
|
7
7
|
export class InboundFundsHolds extends APIResource {
|
|
8
8
|
/**
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless.
|
|
2
2
|
|
|
3
|
-
import * as Core from "../../
|
|
4
|
-
import { APIResource } from "../../
|
|
5
|
-
import * as SimulationsInboundWireDrawdownRequestsAPI from "
|
|
6
|
-
import * as InboundWireDrawdownRequestsAPI from "
|
|
3
|
+
import * as Core from "../../core";
|
|
4
|
+
import { APIResource } from "../../resource";
|
|
5
|
+
import * as SimulationsInboundWireDrawdownRequestsAPI from "./inbound-wire-drawdown-requests";
|
|
6
|
+
import * as InboundWireDrawdownRequestsAPI from "../inbound-wire-drawdown-requests";
|
|
7
7
|
|
|
8
8
|
export class InboundWireDrawdownRequests extends APIResource {
|
|
9
9
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless.
|
|
2
2
|
|
|
3
|
-
import * as Core from "../../
|
|
4
|
-
import { APIResource } from "../../
|
|
5
|
-
import * as InterestPaymentsAPI from "
|
|
3
|
+
import * as Core from "../../core";
|
|
4
|
+
import { APIResource } from "../../resource";
|
|
5
|
+
import * as InterestPaymentsAPI from "./interest-payments";
|
|
6
6
|
|
|
7
7
|
export class InterestPayments extends APIResource {
|
|
8
8
|
/**
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless.
|
|
2
2
|
|
|
3
|
-
import * as Core from "../../
|
|
4
|
-
import { APIResource } from "../../
|
|
5
|
-
import * as SimulationsPhysicalCardsAPI from "
|
|
6
|
-
import * as PhysicalCardsAPI from "
|
|
3
|
+
import * as Core from "../../core";
|
|
4
|
+
import { APIResource } from "../../resource";
|
|
5
|
+
import * as SimulationsPhysicalCardsAPI from "./physical-cards";
|
|
6
|
+
import * as PhysicalCardsAPI from "../physical-cards";
|
|
7
7
|
|
|
8
8
|
export class PhysicalCards extends APIResource {
|
|
9
9
|
/**
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// File generated from our OpenAPI spec by Stainless.
|
|
2
2
|
|
|
3
|
-
import * as Core from "../../
|
|
4
|
-
import { APIResource } from "../../
|
|
5
|
-
import * as SimulationsProgramsAPI from "
|
|
6
|
-
import * as ProgramsAPI from "
|
|
3
|
+
import * as Core from "../../core";
|
|
4
|
+
import { APIResource } from "../../resource";
|
|
5
|
+
import * as SimulationsProgramsAPI from "./programs";
|
|
6
|
+
import * as ProgramsAPI from "../programs";
|
|
7
7
|
|
|
8
8
|
export class Programs extends APIResource {
|
|
9
9
|
/**
|