@blockchyp/blockchyp-ts 2.22.0 → 2.24.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/_bundles/blockchyp.js +83 -11
- package/_bundles/blockchyp.js.map +1 -1
- package/_bundles/blockchyp.min.js +1 -1
- package/_bundles/blockchyp.min.js.map +1 -1
- package/lib/src/models.d.ts +102 -11
- package/lib/src/models.js +83 -11
- package/lib/src/models.js.map +1 -1
- package/package.json +1 -1
- package/src/models.ts +157 -0
package/_bundles/blockchyp.js
CHANGED
|
@@ -60592,7 +60592,7 @@ exports.TokenMetadataResponse = TokenMetadataResponse;
|
|
|
60592
60592
|
*/
|
|
60593
60593
|
class CustomerToken {
|
|
60594
60594
|
// Constructor with default values for optional fields
|
|
60595
|
-
constructor(token = null, maskedPan = null, expiryMonth = null, expiryYear = null, paymentType = null, accountType = null, accountHolderType = null, bankName = null, routingNumber = null, customers = null) {
|
|
60595
|
+
constructor(token = null, maskedPan = null, expiryMonth = null, expiryYear = null, paymentType = null, accountType = null, accountHolderType = null, bankName = null, routingNumber = null, tokenHash = null, bin = null, customers = null) {
|
|
60596
60596
|
/**
|
|
60597
60597
|
* BlockChyp assigned customer id.
|
|
60598
60598
|
*/
|
|
@@ -60629,6 +60629,14 @@ class CustomerToken {
|
|
|
60629
60629
|
* Routing number.
|
|
60630
60630
|
*/
|
|
60631
60631
|
this.routingNumber = null;
|
|
60632
|
+
/**
|
|
60633
|
+
* Token hash (generated with a static salt, Merchant ID, Registration Date and PAN.
|
|
60634
|
+
*/
|
|
60635
|
+
this.tokenHash = null;
|
|
60636
|
+
/**
|
|
60637
|
+
* Card bin.
|
|
60638
|
+
*/
|
|
60639
|
+
this.bin = null;
|
|
60632
60640
|
/**
|
|
60633
60641
|
* Models customer records associated with a payment token.
|
|
60634
60642
|
*/
|
|
@@ -60642,6 +60650,8 @@ class CustomerToken {
|
|
|
60642
60650
|
this.accountHolderType = accountHolderType;
|
|
60643
60651
|
this.bankName = bankName;
|
|
60644
60652
|
this.routingNumber = routingNumber;
|
|
60653
|
+
this.tokenHash = tokenHash;
|
|
60654
|
+
this.bin = bin;
|
|
60645
60655
|
this.customers = customers;
|
|
60646
60656
|
}
|
|
60647
60657
|
}
|
|
@@ -61008,7 +61018,7 @@ exports.CardMetadataRequest = CardMetadataRequest;
|
|
|
61008
61018
|
*/
|
|
61009
61019
|
class CardMetadataResponse {
|
|
61010
61020
|
// Constructor with default values for optional fields
|
|
61011
|
-
constructor(success = null, error = null, responseDescription = null, token = undefined, entryMethod = undefined, paymentType = undefined, network = undefined, logo = undefined, maskedPan = undefined, publicKey = undefined, ScopeAlert = false, cardHolder = undefined, expMonth = undefined, expYear = undefined, avsResponse = null, receiptSuggestions = null, customer = undefined, customers = null, cardMetadata = undefined) {
|
|
61021
|
+
constructor(success = null, error = null, responseDescription = null, token = undefined, entryMethod = undefined, paymentType = undefined, network = undefined, logo = undefined, maskedPan = undefined, publicKey = undefined, ScopeAlert = false, cardHolder = undefined, expMonth = undefined, expYear = undefined, avsResponse = null, cvvResponse = undefined, receiptSuggestions = null, customer = undefined, customers = null, cardMetadata = undefined) {
|
|
61012
61022
|
/**
|
|
61013
61023
|
* Whether or not the request succeeded.
|
|
61014
61024
|
*/
|
|
@@ -61048,6 +61058,7 @@ class CardMetadataResponse {
|
|
|
61048
61058
|
this.expMonth = expMonth;
|
|
61049
61059
|
this.expYear = expYear;
|
|
61050
61060
|
this.avsResponse = avsResponse;
|
|
61061
|
+
this.cvvResponse = cvvResponse;
|
|
61051
61062
|
this.receiptSuggestions = receiptSuggestions;
|
|
61052
61063
|
this.customer = customer;
|
|
61053
61064
|
this.customers = customers;
|
|
@@ -61126,7 +61137,7 @@ exports.BalanceRequest = BalanceRequest;
|
|
|
61126
61137
|
*/
|
|
61127
61138
|
class BalanceResponse {
|
|
61128
61139
|
// Constructor with default values for optional fields
|
|
61129
|
-
constructor(success = null, error = null, responseDescription = null, transactionId = null, batchId = undefined, transactionRef = undefined, transactionType = null, timestamp = null, tickBlock = null, test = null, destinationAccount = undefined, sig = undefined, token = undefined, entryMethod = undefined, paymentType = undefined, network = undefined, logo = undefined, maskedPan = undefined, publicKey = undefined, ScopeAlert = false, cardHolder = undefined, expMonth = undefined, expYear = undefined, avsResponse = null, receiptSuggestions = null, customer = undefined, customers = null, remainingBalance = undefined) {
|
|
61140
|
+
constructor(success = null, error = null, responseDescription = null, transactionId = null, batchId = undefined, transactionRef = undefined, transactionType = null, timestamp = null, tickBlock = null, test = null, destinationAccount = undefined, sig = undefined, token = undefined, entryMethod = undefined, paymentType = undefined, network = undefined, logo = undefined, maskedPan = undefined, publicKey = undefined, ScopeAlert = false, cardHolder = undefined, expMonth = undefined, expYear = undefined, avsResponse = null, cvvResponse = undefined, receiptSuggestions = null, customer = undefined, customers = null, remainingBalance = undefined) {
|
|
61130
61141
|
/**
|
|
61131
61142
|
* Whether or not the request succeeded.
|
|
61132
61143
|
*/
|
|
@@ -61195,6 +61206,7 @@ class BalanceResponse {
|
|
|
61195
61206
|
this.expMonth = expMonth;
|
|
61196
61207
|
this.expYear = expYear;
|
|
61197
61208
|
this.avsResponse = avsResponse;
|
|
61209
|
+
this.cvvResponse = cvvResponse;
|
|
61198
61210
|
this.receiptSuggestions = receiptSuggestions;
|
|
61199
61211
|
this.customer = customer;
|
|
61200
61212
|
this.customers = customers;
|
|
@@ -61403,7 +61415,7 @@ exports.CaptureRequest = CaptureRequest;
|
|
|
61403
61415
|
*/
|
|
61404
61416
|
class CaptureResponse {
|
|
61405
61417
|
// Constructor with default values for optional fields
|
|
61406
|
-
constructor(success = null, error = null, responseDescription = null, approved = null, authCode = undefined, authResponseCode = undefined, transactionId = null, batchId = undefined, transactionRef = undefined, transactionType = null, timestamp = null, tickBlock = null, test = null, destinationAccount = undefined, sig = undefined, partialAuth = null, altCurrency = null, fsaAuth = null, currencyCode = null, requestedAmount = null, authorizedAmount = null, remainingBalance = null, tipAmount = null, taxAmount = null, requestedCashBackAmount = null, authorizedCashBackAmount = null, token = undefined, entryMethod = undefined, paymentType = undefined, network = undefined, logo = undefined, maskedPan = undefined, publicKey = undefined, ScopeAlert = false, cardHolder = undefined, expMonth = undefined, expYear = undefined, avsResponse = null, receiptSuggestions = null, customer = undefined, customers = null) {
|
|
61418
|
+
constructor(success = null, error = null, responseDescription = null, approved = null, authCode = undefined, authResponseCode = undefined, transactionId = null, batchId = undefined, transactionRef = undefined, transactionType = null, timestamp = null, tickBlock = null, test = null, destinationAccount = undefined, sig = undefined, partialAuth = null, altCurrency = null, fsaAuth = null, currencyCode = null, requestedAmount = null, authorizedAmount = null, remainingBalance = null, tipAmount = null, taxAmount = null, requestedCashBackAmount = null, authorizedCashBackAmount = null, token = undefined, entryMethod = undefined, paymentType = undefined, network = undefined, logo = undefined, maskedPan = undefined, publicKey = undefined, ScopeAlert = false, cardHolder = undefined, expMonth = undefined, expYear = undefined, avsResponse = null, cvvResponse = undefined, receiptSuggestions = null, customer = undefined, customers = null) {
|
|
61407
61419
|
/**
|
|
61408
61420
|
* Whether or not the request succeeded.
|
|
61409
61421
|
*/
|
|
@@ -61536,6 +61548,7 @@ class CaptureResponse {
|
|
|
61536
61548
|
this.expMonth = expMonth;
|
|
61537
61549
|
this.expYear = expYear;
|
|
61538
61550
|
this.avsResponse = avsResponse;
|
|
61551
|
+
this.cvvResponse = cvvResponse;
|
|
61539
61552
|
this.receiptSuggestions = receiptSuggestions;
|
|
61540
61553
|
this.customer = customer;
|
|
61541
61554
|
this.customers = customers;
|
|
@@ -61595,7 +61608,7 @@ exports.VoidRequest = VoidRequest;
|
|
|
61595
61608
|
*/
|
|
61596
61609
|
class VoidResponse {
|
|
61597
61610
|
// Constructor with default values for optional fields
|
|
61598
|
-
constructor(success = null, error = null, responseDescription = null, approved = null, authCode = undefined, authResponseCode = undefined, transactionId = null, batchId = undefined, transactionRef = undefined, transactionType = null, timestamp = null, tickBlock = null, test = null, destinationAccount = undefined, sig = undefined, token = undefined, entryMethod = undefined, paymentType = undefined, network = undefined, logo = undefined, maskedPan = undefined, publicKey = undefined, ScopeAlert = false, cardHolder = undefined, expMonth = undefined, expYear = undefined, avsResponse = null, receiptSuggestions = null, customer = undefined, customers = null, sigFile = undefined) {
|
|
61611
|
+
constructor(success = null, error = null, responseDescription = null, approved = null, authCode = undefined, authResponseCode = undefined, transactionId = null, batchId = undefined, transactionRef = undefined, transactionType = null, timestamp = null, tickBlock = null, test = null, destinationAccount = undefined, sig = undefined, token = undefined, entryMethod = undefined, paymentType = undefined, network = undefined, logo = undefined, maskedPan = undefined, publicKey = undefined, ScopeAlert = false, cardHolder = undefined, expMonth = undefined, expYear = undefined, avsResponse = null, cvvResponse = undefined, receiptSuggestions = null, customer = undefined, customers = null, sigFile = undefined) {
|
|
61599
61612
|
/**
|
|
61600
61613
|
* Whether or not the request succeeded.
|
|
61601
61614
|
*/
|
|
@@ -61671,6 +61684,7 @@ class VoidResponse {
|
|
|
61671
61684
|
this.expMonth = expMonth;
|
|
61672
61685
|
this.expYear = expYear;
|
|
61673
61686
|
this.avsResponse = avsResponse;
|
|
61687
|
+
this.cvvResponse = cvvResponse;
|
|
61674
61688
|
this.receiptSuggestions = receiptSuggestions;
|
|
61675
61689
|
this.customer = customer;
|
|
61676
61690
|
this.customers = customers;
|
|
@@ -61757,7 +61771,7 @@ exports.EnrollRequest = EnrollRequest;
|
|
|
61757
61771
|
*/
|
|
61758
61772
|
class EnrollResponse {
|
|
61759
61773
|
// Constructor with default values for optional fields
|
|
61760
|
-
constructor(success = null, error = null, responseDescription = null, approved = null, authCode = undefined, authResponseCode = undefined, transactionId = null, batchId = undefined, transactionRef = undefined, transactionType = null, timestamp = null, tickBlock = null, test = null, destinationAccount = undefined, sig = undefined, token = undefined, entryMethod = undefined, paymentType = undefined, network = undefined, logo = undefined, maskedPan = undefined, publicKey = undefined, ScopeAlert = false, cardHolder = undefined, expMonth = undefined, expYear = undefined, avsResponse = null, receiptSuggestions = null, customer = undefined, customers = null, sigFile = undefined, cardMetadata = undefined, accountType = undefined, accountHolderType = undefined, bankName = undefined) {
|
|
61774
|
+
constructor(success = null, error = null, responseDescription = null, approved = null, authCode = undefined, authResponseCode = undefined, transactionId = null, batchId = undefined, transactionRef = undefined, transactionType = null, timestamp = null, tickBlock = null, test = null, destinationAccount = undefined, sig = undefined, token = undefined, entryMethod = undefined, paymentType = undefined, network = undefined, logo = undefined, maskedPan = undefined, publicKey = undefined, ScopeAlert = false, cardHolder = undefined, expMonth = undefined, expYear = undefined, avsResponse = null, cvvResponse = undefined, receiptSuggestions = null, customer = undefined, customers = null, sigFile = undefined, cardMetadata = undefined, accountType = undefined, accountHolderType = undefined, bankName = undefined, tokenHash = undefined, bin = undefined) {
|
|
61761
61775
|
/**
|
|
61762
61776
|
* Whether or not the request succeeded.
|
|
61763
61777
|
*/
|
|
@@ -61833,6 +61847,7 @@ class EnrollResponse {
|
|
|
61833
61847
|
this.expMonth = expMonth;
|
|
61834
61848
|
this.expYear = expYear;
|
|
61835
61849
|
this.avsResponse = avsResponse;
|
|
61850
|
+
this.cvvResponse = cvvResponse;
|
|
61836
61851
|
this.receiptSuggestions = receiptSuggestions;
|
|
61837
61852
|
this.customer = customer;
|
|
61838
61853
|
this.customers = customers;
|
|
@@ -61841,6 +61856,8 @@ class EnrollResponse {
|
|
|
61841
61856
|
this.accountType = accountType;
|
|
61842
61857
|
this.accountHolderType = accountHolderType;
|
|
61843
61858
|
this.bankName = bankName;
|
|
61859
|
+
this.tokenHash = tokenHash;
|
|
61860
|
+
this.bin = bin;
|
|
61844
61861
|
}
|
|
61845
61862
|
}
|
|
61846
61863
|
exports.EnrollResponse = EnrollResponse;
|
|
@@ -62298,7 +62315,7 @@ exports.TermsAndConditionsResponse = TermsAndConditionsResponse;
|
|
|
62298
62315
|
*/
|
|
62299
62316
|
class AuthorizationResponse {
|
|
62300
62317
|
// Constructor with default values for optional fields
|
|
62301
|
-
constructor(success = null, error = null, responseDescription = null, approved = null, authCode = undefined, authResponseCode = undefined, transactionId = null, batchId = undefined, transactionRef = undefined, transactionType = null, timestamp = null, tickBlock = null, test = null, destinationAccount = undefined, sig = undefined, partialAuth = null, altCurrency = null, fsaAuth = null, currencyCode = null, requestedAmount = null, authorizedAmount = null, remainingBalance = null, tipAmount = null, taxAmount = null, requestedCashBackAmount = null, authorizedCashBackAmount = null, confirmed = null, cryptoAuthorizedAmount = null, cryptoNetworkFee = null, cryptocurrency = null, cryptoNetwork = null, cryptoReceiveAddress = null, cryptoBlock = null, cryptoTransactionId = null, cryptoPaymentRequest = null, cryptoStatus = null, token = undefined, entryMethod = undefined, paymentType = undefined, network = undefined, logo = undefined, maskedPan = undefined, publicKey = undefined, ScopeAlert = false, cardHolder = undefined, expMonth = undefined, expYear = undefined, avsResponse = null, receiptSuggestions = null, customer = undefined, customers = null, sigFile = undefined, whiteListedCard = undefined, storeAndForward = null, status = null, cardMetadata = undefined) {
|
|
62318
|
+
constructor(success = null, error = null, responseDescription = null, approved = null, authCode = undefined, authResponseCode = undefined, transactionId = null, batchId = undefined, transactionRef = undefined, transactionType = null, timestamp = null, tickBlock = null, test = null, destinationAccount = undefined, sig = undefined, partialAuth = null, altCurrency = null, fsaAuth = null, currencyCode = null, requestedAmount = null, authorizedAmount = null, remainingBalance = null, tipAmount = null, taxAmount = null, requestedCashBackAmount = null, authorizedCashBackAmount = null, confirmed = null, cryptoAuthorizedAmount = null, cryptoNetworkFee = null, cryptocurrency = null, cryptoNetwork = null, cryptoReceiveAddress = null, cryptoBlock = null, cryptoTransactionId = null, cryptoPaymentRequest = null, cryptoStatus = null, token = undefined, entryMethod = undefined, paymentType = undefined, network = undefined, logo = undefined, maskedPan = undefined, publicKey = undefined, ScopeAlert = false, cardHolder = undefined, expMonth = undefined, expYear = undefined, avsResponse = null, cvvResponse = undefined, receiptSuggestions = null, customer = undefined, customers = null, sigFile = undefined, whiteListedCard = undefined, storeAndForward = null, status = null, cardMetadata = undefined) {
|
|
62302
62319
|
/**
|
|
62303
62320
|
* Whether or not the request succeeded.
|
|
62304
62321
|
*/
|
|
@@ -62493,6 +62510,7 @@ class AuthorizationResponse {
|
|
|
62493
62510
|
this.expMonth = expMonth;
|
|
62494
62511
|
this.expYear = expYear;
|
|
62495
62512
|
this.avsResponse = avsResponse;
|
|
62513
|
+
this.cvvResponse = cvvResponse;
|
|
62496
62514
|
this.receiptSuggestions = receiptSuggestions;
|
|
62497
62515
|
this.customer = customer;
|
|
62498
62516
|
this.customers = customers;
|
|
@@ -62632,7 +62650,7 @@ exports.PaymentLinkStatusResponse = PaymentLinkStatusResponse;
|
|
|
62632
62650
|
*/
|
|
62633
62651
|
class TransactionStatus {
|
|
62634
62652
|
// Constructor with default values for optional fields
|
|
62635
|
-
constructor(success = null, error = null, responseDescription = null, approved = null, authCode = undefined, authResponseCode = undefined, transactionId = null, batchId = undefined, transactionRef = undefined, transactionType = null, timestamp = null, tickBlock = null, test = null, destinationAccount = undefined, sig = undefined, partialAuth = null, altCurrency = null, fsaAuth = null, currencyCode = null, requestedAmount = null, authorizedAmount = null, remainingBalance = null, tipAmount = null, taxAmount = null, requestedCashBackAmount = null, authorizedCashBackAmount = null, token = undefined, entryMethod = undefined, paymentType = undefined, network = undefined, logo = undefined, maskedPan = undefined, publicKey = undefined, ScopeAlert = false, cardHolder = undefined, expMonth = undefined, expYear = undefined, avsResponse = null, receiptSuggestions = null, customer = undefined, customers = null, sigFile = undefined, storeAndForward = null) {
|
|
62653
|
+
constructor(success = null, error = null, responseDescription = null, approved = null, authCode = undefined, authResponseCode = undefined, transactionId = null, batchId = undefined, transactionRef = undefined, transactionType = null, timestamp = null, tickBlock = null, test = null, destinationAccount = undefined, sig = undefined, partialAuth = null, altCurrency = null, fsaAuth = null, currencyCode = null, requestedAmount = null, authorizedAmount = null, remainingBalance = null, tipAmount = null, taxAmount = null, requestedCashBackAmount = null, authorizedCashBackAmount = null, token = undefined, entryMethod = undefined, paymentType = undefined, network = undefined, logo = undefined, maskedPan = undefined, publicKey = undefined, ScopeAlert = false, cardHolder = undefined, expMonth = undefined, expYear = undefined, avsResponse = null, cvvResponse = undefined, receiptSuggestions = null, customer = undefined, customers = null, sigFile = undefined, storeAndForward = null) {
|
|
62636
62654
|
/**
|
|
62637
62655
|
* Whether or not the request succeeded.
|
|
62638
62656
|
*/
|
|
@@ -62769,6 +62787,7 @@ class TransactionStatus {
|
|
|
62769
62787
|
this.expMonth = expMonth;
|
|
62770
62788
|
this.expYear = expYear;
|
|
62771
62789
|
this.avsResponse = avsResponse;
|
|
62790
|
+
this.cvvResponse = cvvResponse;
|
|
62772
62791
|
this.receiptSuggestions = receiptSuggestions;
|
|
62773
62792
|
this.customer = customer;
|
|
62774
62793
|
this.customers = customers;
|
|
@@ -64307,7 +64326,7 @@ exports.Address = Address;
|
|
|
64307
64326
|
*/
|
|
64308
64327
|
class MerchantProfile {
|
|
64309
64328
|
// Constructor with default values for optional fields
|
|
64310
|
-
constructor(timeout = null, test = null, merchantId = null, bankMid = null, companyName = null, dbaName = null, invoiceName = null, contactName = null, contactNumber = null, locationName = null, storeNumber = null, partnerRef = null, timeZone = null, batchCloseTime = null, terminalUpdateTime = null, autoBatchClose = null, disableBatchEmails = null, pinEnabled = null, cashBackEnabled = null, storeAndForwardEnabled = null, partialAuthEnabled = null, splitBankAccountsEnabled = null, storeAndForwardFloorLimit = null, publicKey = null, status = null, cashDiscountEnabled = null, surveyTimeout = null, cooldownTimeout = null, tipEnabled = null, promptForTip = null, tipDefaults = null, cashbackPresets = null, ebtEnabled = null, freeRangeRefundsEnabled = null, pinBypassEnabled = null, giftCardsDisabled = null, tcDisabled = null, digitalSignaturesEnabled = null, digitalSignatureReversal = null, billingAddress = null, shippingAddress = null, visa = null, masterCard = null, amex = null, discover = null, jcb = null, unionPay = null, contactlessEmv = null, manualEntryEnabled = null, manualEntryPromptZip = null, manualEntryPromptStreetNumber = null, gatewayOnly = null, bankAccounts = null, passthroughSurchargeEnabled = null) {
|
|
64329
|
+
constructor(timeout = null, test = null, merchantId = null, bankMid = null, companyName = null, dbaName = null, invoiceName = null, contactName = null, contactNumber = null, locationName = null, storeNumber = null, partnerRef = null, timeZone = null, batchCloseTime = null, terminalUpdateTime = null, autoBatchClose = null, disableBatchEmails = null, pinEnabled = null, cashBackEnabled = null, storeAndForwardEnabled = null, partialAuthEnabled = null, splitBankAccountsEnabled = null, storeAndForwardFloorLimit = null, publicKey = null, status = null, cashDiscountEnabled = null, surveyTimeout = null, cooldownTimeout = null, tipEnabled = null, promptForTip = null, tipDefaults = null, cashbackPresets = null, ebtEnabled = null, freeRangeRefundsEnabled = null, pinBypassEnabled = null, giftCardsDisabled = null, tcDisabled = null, digitalSignaturesEnabled = null, digitalSignatureReversal = null, billingAddress = null, shippingAddress = null, visa = null, masterCard = null, amex = null, discover = null, jcb = null, unionPay = null, contactlessEmv = null, manualEntryEnabled = null, manualEntryPromptZip = null, manualEntryPromptStreetNumber = null, gatewayOnly = null, bankAccounts = null, passthroughSurchargeEnabled = null, cvvVerificationEnabled = null, cvvVerificationNEnabled = null, cvvVerificationPEnabled = null, cvvVerificationSEnabled = null, cvvVerificationUEnabled = null) {
|
|
64311
64330
|
/**
|
|
64312
64331
|
* The request timeout in seconds.
|
|
64313
64332
|
*/
|
|
@@ -64528,6 +64547,27 @@ class MerchantProfile {
|
|
|
64528
64547
|
* That a merchant is allowed to send a surcharge amount directly to the gateway.
|
|
64529
64548
|
*/
|
|
64530
64549
|
this.passthroughSurchargeEnabled = null;
|
|
64550
|
+
/**
|
|
64551
|
+
* That CVV verification is enabled for manually entered transactions.
|
|
64552
|
+
*/
|
|
64553
|
+
this.cvvVerificationEnabled = null;
|
|
64554
|
+
/**
|
|
64555
|
+
* That CVV mismatch (N) responses should be declined.
|
|
64556
|
+
*/
|
|
64557
|
+
this.cvvVerificationNEnabled = null;
|
|
64558
|
+
/**
|
|
64559
|
+
* That CVV not processed (P) responses should be declined.
|
|
64560
|
+
*/
|
|
64561
|
+
this.cvvVerificationPEnabled = null;
|
|
64562
|
+
/**
|
|
64563
|
+
* That CVV should be on card but is not indicated (S) responses should be declined.
|
|
64564
|
+
*/
|
|
64565
|
+
this.cvvVerificationSEnabled = null;
|
|
64566
|
+
/**
|
|
64567
|
+
* That issuer not certified or has not provided encryption key (U) responses should be
|
|
64568
|
+
* declined.
|
|
64569
|
+
*/
|
|
64570
|
+
this.cvvVerificationUEnabled = null;
|
|
64531
64571
|
this.timeout = timeout;
|
|
64532
64572
|
this.test = test;
|
|
64533
64573
|
this.merchantId = merchantId;
|
|
@@ -64582,6 +64622,11 @@ class MerchantProfile {
|
|
|
64582
64622
|
this.gatewayOnly = gatewayOnly;
|
|
64583
64623
|
this.bankAccounts = bankAccounts;
|
|
64584
64624
|
this.passthroughSurchargeEnabled = passthroughSurchargeEnabled;
|
|
64625
|
+
this.cvvVerificationEnabled = cvvVerificationEnabled;
|
|
64626
|
+
this.cvvVerificationNEnabled = cvvVerificationNEnabled;
|
|
64627
|
+
this.cvvVerificationPEnabled = cvvVerificationPEnabled;
|
|
64628
|
+
this.cvvVerificationSEnabled = cvvVerificationSEnabled;
|
|
64629
|
+
this.cvvVerificationUEnabled = cvvVerificationUEnabled;
|
|
64585
64630
|
}
|
|
64586
64631
|
}
|
|
64587
64632
|
exports.MerchantProfile = MerchantProfile;
|
|
@@ -64590,7 +64635,7 @@ exports.MerchantProfile = MerchantProfile;
|
|
|
64590
64635
|
*/
|
|
64591
64636
|
class MerchantProfileResponse {
|
|
64592
64637
|
// Constructor with default values for optional fields
|
|
64593
|
-
constructor(success = null, error = null, responseDescription = null, test = null, merchantId = null, bankMid = null, companyName = null, dbaName = null, invoiceName = null, contactName = null, contactNumber = null, locationName = null, storeNumber = null, partnerRef = null, timeZone = null, batchCloseTime = null, terminalUpdateTime = null, autoBatchClose = null, disableBatchEmails = null, pinEnabled = null, cashBackEnabled = null, storeAndForwardEnabled = null, partialAuthEnabled = null, splitBankAccountsEnabled = null, storeAndForwardFloorLimit = null, publicKey = null, status = null, cashDiscountEnabled = null, surveyTimeout = null, cooldownTimeout = null, tipEnabled = null, promptForTip = null, tipDefaults = null, cashbackPresets = null, ebtEnabled = null, freeRangeRefundsEnabled = null, pinBypassEnabled = null, giftCardsDisabled = null, tcDisabled = null, digitalSignaturesEnabled = null, digitalSignatureReversal = null, billingAddress = null, shippingAddress = null, visa = null, masterCard = null, amex = null, discover = null, jcb = null, unionPay = null, contactlessEmv = null, manualEntryEnabled = null, manualEntryPromptZip = null, manualEntryPromptStreetNumber = null, gatewayOnly = null, bankAccounts = null, passthroughSurchargeEnabled = null) {
|
|
64638
|
+
constructor(success = null, error = null, responseDescription = null, test = null, merchantId = null, bankMid = null, companyName = null, dbaName = null, invoiceName = null, contactName = null, contactNumber = null, locationName = null, storeNumber = null, partnerRef = null, timeZone = null, batchCloseTime = null, terminalUpdateTime = null, autoBatchClose = null, disableBatchEmails = null, pinEnabled = null, cashBackEnabled = null, storeAndForwardEnabled = null, partialAuthEnabled = null, splitBankAccountsEnabled = null, storeAndForwardFloorLimit = null, publicKey = null, status = null, cashDiscountEnabled = null, surveyTimeout = null, cooldownTimeout = null, tipEnabled = null, promptForTip = null, tipDefaults = null, cashbackPresets = null, ebtEnabled = null, freeRangeRefundsEnabled = null, pinBypassEnabled = null, giftCardsDisabled = null, tcDisabled = null, digitalSignaturesEnabled = null, digitalSignatureReversal = null, billingAddress = null, shippingAddress = null, visa = null, masterCard = null, amex = null, discover = null, jcb = null, unionPay = null, contactlessEmv = null, manualEntryEnabled = null, manualEntryPromptZip = null, manualEntryPromptStreetNumber = null, gatewayOnly = null, bankAccounts = null, passthroughSurchargeEnabled = null, cvvVerificationEnabled = null, cvvVerificationNEnabled = null, cvvVerificationPEnabled = null, cvvVerificationSEnabled = null, cvvVerificationUEnabled = null) {
|
|
64594
64639
|
/**
|
|
64595
64640
|
* Whether or not the request succeeded.
|
|
64596
64641
|
*/
|
|
@@ -64819,6 +64864,27 @@ class MerchantProfileResponse {
|
|
|
64819
64864
|
* That a merchant is allowed to send a surcharge amount directly to the gateway.
|
|
64820
64865
|
*/
|
|
64821
64866
|
this.passthroughSurchargeEnabled = null;
|
|
64867
|
+
/**
|
|
64868
|
+
* That CVV verification is enabled for manually entered transactions.
|
|
64869
|
+
*/
|
|
64870
|
+
this.cvvVerificationEnabled = null;
|
|
64871
|
+
/**
|
|
64872
|
+
* That CVV mismatch (N) responses should be declined.
|
|
64873
|
+
*/
|
|
64874
|
+
this.cvvVerificationNEnabled = null;
|
|
64875
|
+
/**
|
|
64876
|
+
* That CVV not processed (P) responses should be declined.
|
|
64877
|
+
*/
|
|
64878
|
+
this.cvvVerificationPEnabled = null;
|
|
64879
|
+
/**
|
|
64880
|
+
* That CVV should be on card but is not indicated (S) responses should be declined.
|
|
64881
|
+
*/
|
|
64882
|
+
this.cvvVerificationSEnabled = null;
|
|
64883
|
+
/**
|
|
64884
|
+
* That issuer not certified or has not provided encryption key (U) responses should be
|
|
64885
|
+
* declined.
|
|
64886
|
+
*/
|
|
64887
|
+
this.cvvVerificationUEnabled = null;
|
|
64822
64888
|
this.success = success;
|
|
64823
64889
|
this.error = error;
|
|
64824
64890
|
this.responseDescription = responseDescription;
|
|
@@ -64875,6 +64941,11 @@ class MerchantProfileResponse {
|
|
|
64875
64941
|
this.gatewayOnly = gatewayOnly;
|
|
64876
64942
|
this.bankAccounts = bankAccounts;
|
|
64877
64943
|
this.passthroughSurchargeEnabled = passthroughSurchargeEnabled;
|
|
64944
|
+
this.cvvVerificationEnabled = cvvVerificationEnabled;
|
|
64945
|
+
this.cvvVerificationNEnabled = cvvVerificationNEnabled;
|
|
64946
|
+
this.cvvVerificationPEnabled = cvvVerificationPEnabled;
|
|
64947
|
+
this.cvvVerificationSEnabled = cvvVerificationSEnabled;
|
|
64948
|
+
this.cvvVerificationUEnabled = cvvVerificationUEnabled;
|
|
64878
64949
|
}
|
|
64879
64950
|
}
|
|
64880
64951
|
exports.MerchantProfileResponse = MerchantProfileResponse;
|
|
@@ -69757,7 +69828,7 @@ exports.CoreRequest = CoreRequest;
|
|
|
69757
69828
|
*/
|
|
69758
69829
|
class PaymentMethodResponse {
|
|
69759
69830
|
// Constructor with default values for optional fields
|
|
69760
|
-
constructor(token = undefined, entryMethod = undefined, paymentType = undefined, network = undefined, logo = undefined, maskedPan = undefined, publicKey = undefined, ScopeAlert = false, cardHolder = undefined, expMonth = undefined, expYear = undefined, avsResponse = null, receiptSuggestions = null, customer = undefined, customers = null) {
|
|
69831
|
+
constructor(token = undefined, entryMethod = undefined, paymentType = undefined, network = undefined, logo = undefined, maskedPan = undefined, publicKey = undefined, ScopeAlert = false, cardHolder = undefined, expMonth = undefined, expYear = undefined, avsResponse = null, cvvResponse = undefined, receiptSuggestions = null, customer = undefined, customers = null) {
|
|
69761
69832
|
/**
|
|
69762
69833
|
* Address verification results if address information was submitted.
|
|
69763
69834
|
*/
|
|
@@ -69782,6 +69853,7 @@ class PaymentMethodResponse {
|
|
|
69782
69853
|
this.expMonth = expMonth;
|
|
69783
69854
|
this.expYear = expYear;
|
|
69784
69855
|
this.avsResponse = avsResponse;
|
|
69856
|
+
this.cvvResponse = cvvResponse;
|
|
69785
69857
|
this.receiptSuggestions = receiptSuggestions;
|
|
69786
69858
|
this.customer = customer;
|
|
69787
69859
|
this.customers = customers;
|