@blockchyp/blockchyp-ts 2.23.0 → 2.24.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/_bundles/blockchyp.js +70 -10
- 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 +84 -10
- package/lib/src/models.js +70 -10
- package/lib/src/models.js.map +1 -1
- package/package.json +1 -1
- package/src/models.ts +128 -0
package/_bundles/blockchyp.js
CHANGED
|
@@ -61018,7 +61018,7 @@ exports.CardMetadataRequest = CardMetadataRequest;
|
|
|
61018
61018
|
*/
|
|
61019
61019
|
class CardMetadataResponse {
|
|
61020
61020
|
// Constructor with default values for optional fields
|
|
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, 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) {
|
|
61022
61022
|
/**
|
|
61023
61023
|
* Whether or not the request succeeded.
|
|
61024
61024
|
*/
|
|
@@ -61058,6 +61058,7 @@ class CardMetadataResponse {
|
|
|
61058
61058
|
this.expMonth = expMonth;
|
|
61059
61059
|
this.expYear = expYear;
|
|
61060
61060
|
this.avsResponse = avsResponse;
|
|
61061
|
+
this.cvvResponse = cvvResponse;
|
|
61061
61062
|
this.receiptSuggestions = receiptSuggestions;
|
|
61062
61063
|
this.customer = customer;
|
|
61063
61064
|
this.customers = customers;
|
|
@@ -61136,7 +61137,7 @@ exports.BalanceRequest = BalanceRequest;
|
|
|
61136
61137
|
*/
|
|
61137
61138
|
class BalanceResponse {
|
|
61138
61139
|
// Constructor with default values for optional fields
|
|
61139
|
-
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) {
|
|
61140
61141
|
/**
|
|
61141
61142
|
* Whether or not the request succeeded.
|
|
61142
61143
|
*/
|
|
@@ -61205,6 +61206,7 @@ class BalanceResponse {
|
|
|
61205
61206
|
this.expMonth = expMonth;
|
|
61206
61207
|
this.expYear = expYear;
|
|
61207
61208
|
this.avsResponse = avsResponse;
|
|
61209
|
+
this.cvvResponse = cvvResponse;
|
|
61208
61210
|
this.receiptSuggestions = receiptSuggestions;
|
|
61209
61211
|
this.customer = customer;
|
|
61210
61212
|
this.customers = customers;
|
|
@@ -61413,7 +61415,7 @@ exports.CaptureRequest = CaptureRequest;
|
|
|
61413
61415
|
*/
|
|
61414
61416
|
class CaptureResponse {
|
|
61415
61417
|
// Constructor with default values for optional fields
|
|
61416
|
-
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) {
|
|
61417
61419
|
/**
|
|
61418
61420
|
* Whether or not the request succeeded.
|
|
61419
61421
|
*/
|
|
@@ -61546,6 +61548,7 @@ class CaptureResponse {
|
|
|
61546
61548
|
this.expMonth = expMonth;
|
|
61547
61549
|
this.expYear = expYear;
|
|
61548
61550
|
this.avsResponse = avsResponse;
|
|
61551
|
+
this.cvvResponse = cvvResponse;
|
|
61549
61552
|
this.receiptSuggestions = receiptSuggestions;
|
|
61550
61553
|
this.customer = customer;
|
|
61551
61554
|
this.customers = customers;
|
|
@@ -61605,7 +61608,7 @@ exports.VoidRequest = VoidRequest;
|
|
|
61605
61608
|
*/
|
|
61606
61609
|
class VoidResponse {
|
|
61607
61610
|
// Constructor with default values for optional fields
|
|
61608
|
-
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) {
|
|
61609
61612
|
/**
|
|
61610
61613
|
* Whether or not the request succeeded.
|
|
61611
61614
|
*/
|
|
@@ -61681,6 +61684,7 @@ class VoidResponse {
|
|
|
61681
61684
|
this.expMonth = expMonth;
|
|
61682
61685
|
this.expYear = expYear;
|
|
61683
61686
|
this.avsResponse = avsResponse;
|
|
61687
|
+
this.cvvResponse = cvvResponse;
|
|
61684
61688
|
this.receiptSuggestions = receiptSuggestions;
|
|
61685
61689
|
this.customer = customer;
|
|
61686
61690
|
this.customers = customers;
|
|
@@ -61767,7 +61771,7 @@ exports.EnrollRequest = EnrollRequest;
|
|
|
61767
61771
|
*/
|
|
61768
61772
|
class EnrollResponse {
|
|
61769
61773
|
// Constructor with default values for optional fields
|
|
61770
|
-
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, tokenHash = undefined, bin = 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) {
|
|
61771
61775
|
/**
|
|
61772
61776
|
* Whether or not the request succeeded.
|
|
61773
61777
|
*/
|
|
@@ -61843,6 +61847,7 @@ class EnrollResponse {
|
|
|
61843
61847
|
this.expMonth = expMonth;
|
|
61844
61848
|
this.expYear = expYear;
|
|
61845
61849
|
this.avsResponse = avsResponse;
|
|
61850
|
+
this.cvvResponse = cvvResponse;
|
|
61846
61851
|
this.receiptSuggestions = receiptSuggestions;
|
|
61847
61852
|
this.customer = customer;
|
|
61848
61853
|
this.customers = customers;
|
|
@@ -62310,7 +62315,7 @@ exports.TermsAndConditionsResponse = TermsAndConditionsResponse;
|
|
|
62310
62315
|
*/
|
|
62311
62316
|
class AuthorizationResponse {
|
|
62312
62317
|
// Constructor with default values for optional fields
|
|
62313
|
-
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) {
|
|
62314
62319
|
/**
|
|
62315
62320
|
* Whether or not the request succeeded.
|
|
62316
62321
|
*/
|
|
@@ -62505,6 +62510,7 @@ class AuthorizationResponse {
|
|
|
62505
62510
|
this.expMonth = expMonth;
|
|
62506
62511
|
this.expYear = expYear;
|
|
62507
62512
|
this.avsResponse = avsResponse;
|
|
62513
|
+
this.cvvResponse = cvvResponse;
|
|
62508
62514
|
this.receiptSuggestions = receiptSuggestions;
|
|
62509
62515
|
this.customer = customer;
|
|
62510
62516
|
this.customers = customers;
|
|
@@ -62644,7 +62650,7 @@ exports.PaymentLinkStatusResponse = PaymentLinkStatusResponse;
|
|
|
62644
62650
|
*/
|
|
62645
62651
|
class TransactionStatus {
|
|
62646
62652
|
// Constructor with default values for optional fields
|
|
62647
|
-
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) {
|
|
62648
62654
|
/**
|
|
62649
62655
|
* Whether or not the request succeeded.
|
|
62650
62656
|
*/
|
|
@@ -62781,6 +62787,7 @@ class TransactionStatus {
|
|
|
62781
62787
|
this.expMonth = expMonth;
|
|
62782
62788
|
this.expYear = expYear;
|
|
62783
62789
|
this.avsResponse = avsResponse;
|
|
62790
|
+
this.cvvResponse = cvvResponse;
|
|
62784
62791
|
this.receiptSuggestions = receiptSuggestions;
|
|
62785
62792
|
this.customer = customer;
|
|
62786
62793
|
this.customers = customers;
|
|
@@ -64319,7 +64326,7 @@ exports.Address = Address;
|
|
|
64319
64326
|
*/
|
|
64320
64327
|
class MerchantProfile {
|
|
64321
64328
|
// Constructor with default values for optional fields
|
|
64322
|
-
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) {
|
|
64323
64330
|
/**
|
|
64324
64331
|
* The request timeout in seconds.
|
|
64325
64332
|
*/
|
|
@@ -64540,6 +64547,27 @@ class MerchantProfile {
|
|
|
64540
64547
|
* That a merchant is allowed to send a surcharge amount directly to the gateway.
|
|
64541
64548
|
*/
|
|
64542
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;
|
|
64543
64571
|
this.timeout = timeout;
|
|
64544
64572
|
this.test = test;
|
|
64545
64573
|
this.merchantId = merchantId;
|
|
@@ -64594,6 +64622,11 @@ class MerchantProfile {
|
|
|
64594
64622
|
this.gatewayOnly = gatewayOnly;
|
|
64595
64623
|
this.bankAccounts = bankAccounts;
|
|
64596
64624
|
this.passthroughSurchargeEnabled = passthroughSurchargeEnabled;
|
|
64625
|
+
this.cvvVerificationEnabled = cvvVerificationEnabled;
|
|
64626
|
+
this.cvvVerificationNEnabled = cvvVerificationNEnabled;
|
|
64627
|
+
this.cvvVerificationPEnabled = cvvVerificationPEnabled;
|
|
64628
|
+
this.cvvVerificationSEnabled = cvvVerificationSEnabled;
|
|
64629
|
+
this.cvvVerificationUEnabled = cvvVerificationUEnabled;
|
|
64597
64630
|
}
|
|
64598
64631
|
}
|
|
64599
64632
|
exports.MerchantProfile = MerchantProfile;
|
|
@@ -64602,7 +64635,7 @@ exports.MerchantProfile = MerchantProfile;
|
|
|
64602
64635
|
*/
|
|
64603
64636
|
class MerchantProfileResponse {
|
|
64604
64637
|
// Constructor with default values for optional fields
|
|
64605
|
-
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) {
|
|
64606
64639
|
/**
|
|
64607
64640
|
* Whether or not the request succeeded.
|
|
64608
64641
|
*/
|
|
@@ -64831,6 +64864,27 @@ class MerchantProfileResponse {
|
|
|
64831
64864
|
* That a merchant is allowed to send a surcharge amount directly to the gateway.
|
|
64832
64865
|
*/
|
|
64833
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;
|
|
64834
64888
|
this.success = success;
|
|
64835
64889
|
this.error = error;
|
|
64836
64890
|
this.responseDescription = responseDescription;
|
|
@@ -64887,6 +64941,11 @@ class MerchantProfileResponse {
|
|
|
64887
64941
|
this.gatewayOnly = gatewayOnly;
|
|
64888
64942
|
this.bankAccounts = bankAccounts;
|
|
64889
64943
|
this.passthroughSurchargeEnabled = passthroughSurchargeEnabled;
|
|
64944
|
+
this.cvvVerificationEnabled = cvvVerificationEnabled;
|
|
64945
|
+
this.cvvVerificationNEnabled = cvvVerificationNEnabled;
|
|
64946
|
+
this.cvvVerificationPEnabled = cvvVerificationPEnabled;
|
|
64947
|
+
this.cvvVerificationSEnabled = cvvVerificationSEnabled;
|
|
64948
|
+
this.cvvVerificationUEnabled = cvvVerificationUEnabled;
|
|
64890
64949
|
}
|
|
64891
64950
|
}
|
|
64892
64951
|
exports.MerchantProfileResponse = MerchantProfileResponse;
|
|
@@ -69769,7 +69828,7 @@ exports.CoreRequest = CoreRequest;
|
|
|
69769
69828
|
*/
|
|
69770
69829
|
class PaymentMethodResponse {
|
|
69771
69830
|
// Constructor with default values for optional fields
|
|
69772
|
-
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) {
|
|
69773
69832
|
/**
|
|
69774
69833
|
* Address verification results if address information was submitted.
|
|
69775
69834
|
*/
|
|
@@ -69794,6 +69853,7 @@ class PaymentMethodResponse {
|
|
|
69794
69853
|
this.expMonth = expMonth;
|
|
69795
69854
|
this.expYear = expYear;
|
|
69796
69855
|
this.avsResponse = avsResponse;
|
|
69856
|
+
this.cvvResponse = cvvResponse;
|
|
69797
69857
|
this.receiptSuggestions = receiptSuggestions;
|
|
69798
69858
|
this.customer = customer;
|
|
69799
69859
|
this.customers = customers;
|