@blockchyp/blockchyp-ts 2.24.1 → 2.24.3
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 +50 -2
- 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 +42 -2
- package/lib/src/models.js +50 -2
- package/lib/src/models.js.map +1 -1
- package/package.json +1 -1
- package/src/models.ts +64 -0
package/_bundles/blockchyp.js
CHANGED
|
@@ -64326,7 +64326,7 @@ exports.Address = Address;
|
|
|
64326
64326
|
*/
|
|
64327
64327
|
class MerchantProfile {
|
|
64328
64328
|
// Constructor with default values for optional fields
|
|
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) {
|
|
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, followPartnerCvvSettings = null, avsRule = null, followPartnerAvsSettings = null, accountUpdaterEnrolled = null) {
|
|
64330
64330
|
/**
|
|
64331
64331
|
* The request timeout in seconds.
|
|
64332
64332
|
*/
|
|
@@ -64568,6 +64568,26 @@ class MerchantProfile {
|
|
|
64568
64568
|
* declined.
|
|
64569
64569
|
*/
|
|
64570
64570
|
this.cvvVerificationUEnabled = null;
|
|
64571
|
+
/**
|
|
64572
|
+
* That the merchant follows the partner's CVV settings.
|
|
64573
|
+
*/
|
|
64574
|
+
this.followPartnerCvvSettings = null;
|
|
64575
|
+
/**
|
|
64576
|
+
* The AVS (Address Verification Service) rule to apply. Allowed values are
|
|
64577
|
+
* 'allow_all', 'require_full_match', 'require_zip_match',
|
|
64578
|
+
* 'require_address_match'. If avsRule is empty, then merchant follows partner
|
|
64579
|
+
* setting
|
|
64580
|
+
*/
|
|
64581
|
+
this.avsRule = null;
|
|
64582
|
+
/**
|
|
64583
|
+
* That the merchant follows the partner's AVS settings.
|
|
64584
|
+
*/
|
|
64585
|
+
this.followPartnerAvsSettings = null;
|
|
64586
|
+
/**
|
|
64587
|
+
* Flag indicating whether or not account updater is enrolled. Note that only
|
|
64588
|
+
* merchant's whose partner is enrolled will be processed by the account updater.
|
|
64589
|
+
*/
|
|
64590
|
+
this.accountUpdaterEnrolled = null;
|
|
64571
64591
|
this.timeout = timeout;
|
|
64572
64592
|
this.test = test;
|
|
64573
64593
|
this.merchantId = merchantId;
|
|
@@ -64627,6 +64647,10 @@ class MerchantProfile {
|
|
|
64627
64647
|
this.cvvVerificationPEnabled = cvvVerificationPEnabled;
|
|
64628
64648
|
this.cvvVerificationSEnabled = cvvVerificationSEnabled;
|
|
64629
64649
|
this.cvvVerificationUEnabled = cvvVerificationUEnabled;
|
|
64650
|
+
this.followPartnerCvvSettings = followPartnerCvvSettings;
|
|
64651
|
+
this.avsRule = avsRule;
|
|
64652
|
+
this.followPartnerAvsSettings = followPartnerAvsSettings;
|
|
64653
|
+
this.accountUpdaterEnrolled = accountUpdaterEnrolled;
|
|
64630
64654
|
}
|
|
64631
64655
|
}
|
|
64632
64656
|
exports.MerchantProfile = MerchantProfile;
|
|
@@ -64635,7 +64659,7 @@ exports.MerchantProfile = MerchantProfile;
|
|
|
64635
64659
|
*/
|
|
64636
64660
|
class MerchantProfileResponse {
|
|
64637
64661
|
// Constructor with default values for optional fields
|
|
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) {
|
|
64662
|
+
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, followPartnerCvvSettings = null, avsRule = null, followPartnerAvsSettings = null, accountUpdaterEnrolled = null) {
|
|
64639
64663
|
/**
|
|
64640
64664
|
* Whether or not the request succeeded.
|
|
64641
64665
|
*/
|
|
@@ -64885,6 +64909,26 @@ class MerchantProfileResponse {
|
|
|
64885
64909
|
* declined.
|
|
64886
64910
|
*/
|
|
64887
64911
|
this.cvvVerificationUEnabled = null;
|
|
64912
|
+
/**
|
|
64913
|
+
* That the merchant follows the partner's CVV settings.
|
|
64914
|
+
*/
|
|
64915
|
+
this.followPartnerCvvSettings = null;
|
|
64916
|
+
/**
|
|
64917
|
+
* The AVS (Address Verification Service) rule to apply. Allowed values are
|
|
64918
|
+
* 'allow_all', 'require_full_match', 'require_zip_match',
|
|
64919
|
+
* 'require_address_match'. If avsRule is empty, then merchant follows partner
|
|
64920
|
+
* setting
|
|
64921
|
+
*/
|
|
64922
|
+
this.avsRule = null;
|
|
64923
|
+
/**
|
|
64924
|
+
* That the merchant follows the partner's AVS settings.
|
|
64925
|
+
*/
|
|
64926
|
+
this.followPartnerAvsSettings = null;
|
|
64927
|
+
/**
|
|
64928
|
+
* Flag indicating whether or not account updater is enrolled. Note that only
|
|
64929
|
+
* merchant's whose partner is enrolled will be processed by the account updater.
|
|
64930
|
+
*/
|
|
64931
|
+
this.accountUpdaterEnrolled = null;
|
|
64888
64932
|
this.success = success;
|
|
64889
64933
|
this.error = error;
|
|
64890
64934
|
this.responseDescription = responseDescription;
|
|
@@ -64946,6 +64990,10 @@ class MerchantProfileResponse {
|
|
|
64946
64990
|
this.cvvVerificationPEnabled = cvvVerificationPEnabled;
|
|
64947
64991
|
this.cvvVerificationSEnabled = cvvVerificationSEnabled;
|
|
64948
64992
|
this.cvvVerificationUEnabled = cvvVerificationUEnabled;
|
|
64993
|
+
this.followPartnerCvvSettings = followPartnerCvvSettings;
|
|
64994
|
+
this.avsRule = avsRule;
|
|
64995
|
+
this.followPartnerAvsSettings = followPartnerAvsSettings;
|
|
64996
|
+
this.accountUpdaterEnrolled = accountUpdaterEnrolled;
|
|
64949
64997
|
}
|
|
64950
64998
|
}
|
|
64951
64999
|
exports.MerchantProfileResponse = MerchantProfileResponse;
|