@blockchyp/blockchyp-ts 2.30.6 → 2.30.7
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 +92 -30
- package/_bundles/blockchyp.js.map +1 -1
- package/_bundles/blockchyp.min.js +1 -1
- package/_bundles/blockchyp.min.js.LICENSE.txt +1 -1
- package/_bundles/blockchyp.min.js.map +1 -1
- package/lib/src/models.d.ts +18 -2
- package/lib/src/models.js +22 -2
- package/lib/src/models.js.map +1 -1
- package/package.json +1 -1
- package/src/models.ts +28 -0
package/lib/src/models.d.ts
CHANGED
|
@@ -6312,7 +6312,15 @@ export declare class MerchantProfile {
|
|
|
6312
6312
|
* That the merchant is configured to apply a service fee.
|
|
6313
6313
|
*/
|
|
6314
6314
|
serviceFeeEnabled: boolean | null;
|
|
6315
|
-
|
|
6315
|
+
/**
|
|
6316
|
+
* That the merchant follows the partner's CVV cache settings.
|
|
6317
|
+
*/
|
|
6318
|
+
followPartnerCvvCacheEnabled: boolean | null;
|
|
6319
|
+
/**
|
|
6320
|
+
* That the merchant is configured to apply a CVV cache.
|
|
6321
|
+
*/
|
|
6322
|
+
cvvCacheEnabled: boolean | null;
|
|
6323
|
+
constructor(timeout?: number | null, test?: boolean | null, merchantId?: string | null, bankMid?: string | null, companyName?: string | null, dbaName?: string | null, invoiceName?: string | null, contactName?: string | null, contactNumber?: string | null, locationName?: string | null, storeNumber?: string | null, partnerRef?: string | null, timeZone?: string | null, batchCloseTime?: string | null, terminalUpdateTime?: string | null, autoBatchClose?: boolean | null, disableBatchEmails?: boolean | null, pinEnabled?: boolean | null, cashBackEnabled?: boolean | null, storeAndForwardEnabled?: boolean | null, partialAuthEnabled?: boolean | null, splitBankAccountsEnabled?: boolean | null, storeAndForwardFloorLimit?: string | null, publicKey?: string | null, status?: string | null, cashDiscountEnabled?: boolean | null, surveyTimeout?: number | null, cooldownTimeout?: number | null, tipEnabled?: boolean | null, promptForTip?: boolean | null, tipDefaults?: string[] | null, cashbackPresets?: string[] | null, ebtEnabled?: boolean | null, freeRangeRefundsEnabled?: boolean | null, pinBypassEnabled?: boolean | null, giftCardsDisabled?: boolean | null, tcDisabled?: boolean | null, digitalSignaturesEnabled?: boolean | null, digitalSignatureReversal?: boolean | null, billingAddress?: Address | null, shippingAddress?: Address | null, visa?: boolean | null, masterCard?: boolean | null, amex?: boolean | null, discover?: boolean | null, jcb?: boolean | null, unionPay?: boolean | null, contactlessEmv?: boolean | null, manualEntryEnabled?: boolean | null, manualEntryPromptZip?: boolean | null, manualEntryPromptStreetNumber?: boolean | null, gatewayOnly?: boolean | null, bankAccounts?: BankAccount[] | null, passthroughSurchargeEnabled?: boolean | null, cvvVerificationEnabled?: boolean | null, cvvVerificationNEnabled?: boolean | null, cvvVerificationPEnabled?: boolean | null, cvvVerificationSEnabled?: boolean | null, cvvVerificationUEnabled?: boolean | null, followPartnerCvvSettings?: boolean | null, avsRule?: string | null, followPartnerAvsSettings?: boolean | null, accountUpdaterEnrolled?: boolean | null, bypassEnrollAuthEnabled?: boolean | null, followPartnerServiceFeeEnabled?: boolean | null, serviceFeeEnabled?: boolean | null, followPartnerCvvCacheEnabled?: boolean | null, cvvCacheEnabled?: boolean | null);
|
|
6316
6324
|
}
|
|
6317
6325
|
/**
|
|
6318
6326
|
* Models a response for a single merchant profile.
|
|
@@ -6599,7 +6607,15 @@ export declare class MerchantProfileResponse {
|
|
|
6599
6607
|
* That the merchant is configured to apply a service fee.
|
|
6600
6608
|
*/
|
|
6601
6609
|
serviceFeeEnabled: boolean | null;
|
|
6602
|
-
|
|
6610
|
+
/**
|
|
6611
|
+
* That the merchant follows the partner's CVV cache settings.
|
|
6612
|
+
*/
|
|
6613
|
+
followPartnerCvvCacheEnabled: boolean | null;
|
|
6614
|
+
/**
|
|
6615
|
+
* That the merchant is configured to apply a CVV cache.
|
|
6616
|
+
*/
|
|
6617
|
+
cvvCacheEnabled: boolean | null;
|
|
6618
|
+
constructor(success?: boolean | null, error?: string | null, responseDescription?: string | null, test?: boolean | null, merchantId?: string | null, bankMid?: string | null, companyName?: string | null, dbaName?: string | null, invoiceName?: string | null, contactName?: string | null, contactNumber?: string | null, locationName?: string | null, storeNumber?: string | null, partnerRef?: string | null, timeZone?: string | null, batchCloseTime?: string | null, terminalUpdateTime?: string | null, autoBatchClose?: boolean | null, disableBatchEmails?: boolean | null, pinEnabled?: boolean | null, cashBackEnabled?: boolean | null, storeAndForwardEnabled?: boolean | null, partialAuthEnabled?: boolean | null, splitBankAccountsEnabled?: boolean | null, storeAndForwardFloorLimit?: string | null, publicKey?: string | null, status?: string | null, cashDiscountEnabled?: boolean | null, surveyTimeout?: number | null, cooldownTimeout?: number | null, tipEnabled?: boolean | null, promptForTip?: boolean | null, tipDefaults?: string[] | null, cashbackPresets?: string[] | null, ebtEnabled?: boolean | null, freeRangeRefundsEnabled?: boolean | null, pinBypassEnabled?: boolean | null, giftCardsDisabled?: boolean | null, tcDisabled?: boolean | null, digitalSignaturesEnabled?: boolean | null, digitalSignatureReversal?: boolean | null, billingAddress?: Address | null, shippingAddress?: Address | null, visa?: boolean | null, masterCard?: boolean | null, amex?: boolean | null, discover?: boolean | null, jcb?: boolean | null, unionPay?: boolean | null, contactlessEmv?: boolean | null, manualEntryEnabled?: boolean | null, manualEntryPromptZip?: boolean | null, manualEntryPromptStreetNumber?: boolean | null, gatewayOnly?: boolean | null, bankAccounts?: BankAccount[] | null, passthroughSurchargeEnabled?: boolean | null, cvvVerificationEnabled?: boolean | null, cvvVerificationNEnabled?: boolean | null, cvvVerificationPEnabled?: boolean | null, cvvVerificationSEnabled?: boolean | null, cvvVerificationUEnabled?: boolean | null, followPartnerCvvSettings?: boolean | null, avsRule?: string | null, followPartnerAvsSettings?: boolean | null, accountUpdaterEnrolled?: boolean | null, bypassEnrollAuthEnabled?: boolean | null, followPartnerServiceFeeEnabled?: boolean | null, serviceFeeEnabled?: boolean | null, followPartnerCvvCacheEnabled?: boolean | null, cvvCacheEnabled?: boolean | null);
|
|
6603
6619
|
}
|
|
6604
6620
|
/**
|
|
6605
6621
|
* Models meta data about a merchant bank account.
|
package/lib/src/models.js
CHANGED
|
@@ -4812,7 +4812,7 @@ exports.Address = Address;
|
|
|
4812
4812
|
*/
|
|
4813
4813
|
class MerchantProfile {
|
|
4814
4814
|
// Constructor with default values for optional fields
|
|
4815
|
-
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, bypassEnrollAuthEnabled = null, followPartnerServiceFeeEnabled = null, serviceFeeEnabled = null) {
|
|
4815
|
+
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, bypassEnrollAuthEnabled = null, followPartnerServiceFeeEnabled = null, serviceFeeEnabled = null, followPartnerCvvCacheEnabled = null, cvvCacheEnabled = null) {
|
|
4816
4816
|
/**
|
|
4817
4817
|
* The request timeout in seconds.
|
|
4818
4818
|
*/
|
|
@@ -5086,6 +5086,14 @@ class MerchantProfile {
|
|
|
5086
5086
|
* That the merchant is configured to apply a service fee.
|
|
5087
5087
|
*/
|
|
5088
5088
|
this.serviceFeeEnabled = null;
|
|
5089
|
+
/**
|
|
5090
|
+
* That the merchant follows the partner's CVV cache settings.
|
|
5091
|
+
*/
|
|
5092
|
+
this.followPartnerCvvCacheEnabled = null;
|
|
5093
|
+
/**
|
|
5094
|
+
* That the merchant is configured to apply a CVV cache.
|
|
5095
|
+
*/
|
|
5096
|
+
this.cvvCacheEnabled = null;
|
|
5089
5097
|
this.timeout = timeout;
|
|
5090
5098
|
this.test = test;
|
|
5091
5099
|
this.merchantId = merchantId;
|
|
@@ -5152,6 +5160,8 @@ class MerchantProfile {
|
|
|
5152
5160
|
this.bypassEnrollAuthEnabled = bypassEnrollAuthEnabled;
|
|
5153
5161
|
this.followPartnerServiceFeeEnabled = followPartnerServiceFeeEnabled;
|
|
5154
5162
|
this.serviceFeeEnabled = serviceFeeEnabled;
|
|
5163
|
+
this.followPartnerCvvCacheEnabled = followPartnerCvvCacheEnabled;
|
|
5164
|
+
this.cvvCacheEnabled = cvvCacheEnabled;
|
|
5155
5165
|
}
|
|
5156
5166
|
}
|
|
5157
5167
|
exports.MerchantProfile = MerchantProfile;
|
|
@@ -5160,7 +5170,7 @@ exports.MerchantProfile = MerchantProfile;
|
|
|
5160
5170
|
*/
|
|
5161
5171
|
class MerchantProfileResponse {
|
|
5162
5172
|
// Constructor with default values for optional fields
|
|
5163
|
-
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, bypassEnrollAuthEnabled = null, followPartnerServiceFeeEnabled = null, serviceFeeEnabled = null) {
|
|
5173
|
+
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, bypassEnrollAuthEnabled = null, followPartnerServiceFeeEnabled = null, serviceFeeEnabled = null, followPartnerCvvCacheEnabled = null, cvvCacheEnabled = null) {
|
|
5164
5174
|
/**
|
|
5165
5175
|
* Whether or not the request succeeded.
|
|
5166
5176
|
*/
|
|
@@ -5442,6 +5452,14 @@ class MerchantProfileResponse {
|
|
|
5442
5452
|
* That the merchant is configured to apply a service fee.
|
|
5443
5453
|
*/
|
|
5444
5454
|
this.serviceFeeEnabled = null;
|
|
5455
|
+
/**
|
|
5456
|
+
* That the merchant follows the partner's CVV cache settings.
|
|
5457
|
+
*/
|
|
5458
|
+
this.followPartnerCvvCacheEnabled = null;
|
|
5459
|
+
/**
|
|
5460
|
+
* That the merchant is configured to apply a CVV cache.
|
|
5461
|
+
*/
|
|
5462
|
+
this.cvvCacheEnabled = null;
|
|
5445
5463
|
this.success = success;
|
|
5446
5464
|
this.error = error;
|
|
5447
5465
|
this.responseDescription = responseDescription;
|
|
@@ -5510,6 +5528,8 @@ class MerchantProfileResponse {
|
|
|
5510
5528
|
this.bypassEnrollAuthEnabled = bypassEnrollAuthEnabled;
|
|
5511
5529
|
this.followPartnerServiceFeeEnabled = followPartnerServiceFeeEnabled;
|
|
5512
5530
|
this.serviceFeeEnabled = serviceFeeEnabled;
|
|
5531
|
+
this.followPartnerCvvCacheEnabled = followPartnerCvvCacheEnabled;
|
|
5532
|
+
this.cvvCacheEnabled = cvvCacheEnabled;
|
|
5513
5533
|
}
|
|
5514
5534
|
}
|
|
5515
5535
|
exports.MerchantProfileResponse = MerchantProfileResponse;
|