@blockchyp/blockchyp-ts 2.20.1 → 2.21.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 +14 -4
- 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/client.d.ts +1 -1
- package/lib/src/client.js +1 -1
- package/lib/src/models.d.ts +11 -3
- package/lib/src/models.js +13 -3
- package/lib/src/models.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1 -1
- package/src/models.ts +15 -1
package/_bundles/blockchyp.js
CHANGED
|
@@ -58611,7 +58611,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
58611
58611
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
58612
58612
|
exports.newClient = exports.BlockChypCredentials = exports.BlockChypClient = exports.HealthcareType = exports.CVMType = exports.AVSResponse = exports.PromptType = exports.RoundingMode = exports.SignatureFormat = exports.CardType = void 0;
|
|
58613
58613
|
/**
|
|
58614
|
-
* Copyright 2019-
|
|
58614
|
+
* Copyright 2019-2025 BlockChyp, Inc. All rights reserved. Use of this code is governed
|
|
58615
58615
|
* by a license that can be found in the LICENSE file.
|
|
58616
58616
|
*
|
|
58617
58617
|
* This file was generated automatically by the BlockChyp SDK Generator. Changes to this
|
|
@@ -59645,7 +59645,7 @@ exports["default"] = CryptoUtils;
|
|
|
59645
59645
|
"use strict";
|
|
59646
59646
|
|
|
59647
59647
|
/**
|
|
59648
|
-
* Copyright 2019-
|
|
59648
|
+
* Copyright 2019-2025 BlockChyp, Inc. All rights reserved. Use of this code is governed
|
|
59649
59649
|
* by a license that can be found in the LICENSE file.
|
|
59650
59650
|
*
|
|
59651
59651
|
* This file was generated automatically by the BlockChyp SDK Generator. Changes to this
|
|
@@ -64239,7 +64239,7 @@ exports.Address = Address;
|
|
|
64239
64239
|
*/
|
|
64240
64240
|
class MerchantProfile {
|
|
64241
64241
|
// Constructor with default values for optional fields
|
|
64242
|
-
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) {
|
|
64242
|
+
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) {
|
|
64243
64243
|
/**
|
|
64244
64244
|
* The request timeout in seconds.
|
|
64245
64245
|
*/
|
|
@@ -64456,6 +64456,10 @@ class MerchantProfile {
|
|
|
64456
64456
|
* Bank accounts for split bank account merchants.
|
|
64457
64457
|
*/
|
|
64458
64458
|
this.bankAccounts = null;
|
|
64459
|
+
/**
|
|
64460
|
+
* That a merchant is allowed to send a surcharge amount directly to the gateway.
|
|
64461
|
+
*/
|
|
64462
|
+
this.passthroughSurchargeEnabled = null;
|
|
64459
64463
|
this.timeout = timeout;
|
|
64460
64464
|
this.test = test;
|
|
64461
64465
|
this.merchantId = merchantId;
|
|
@@ -64509,6 +64513,7 @@ class MerchantProfile {
|
|
|
64509
64513
|
this.manualEntryPromptStreetNumber = manualEntryPromptStreetNumber;
|
|
64510
64514
|
this.gatewayOnly = gatewayOnly;
|
|
64511
64515
|
this.bankAccounts = bankAccounts;
|
|
64516
|
+
this.passthroughSurchargeEnabled = passthroughSurchargeEnabled;
|
|
64512
64517
|
}
|
|
64513
64518
|
}
|
|
64514
64519
|
exports.MerchantProfile = MerchantProfile;
|
|
@@ -64517,7 +64522,7 @@ exports.MerchantProfile = MerchantProfile;
|
|
|
64517
64522
|
*/
|
|
64518
64523
|
class MerchantProfileResponse {
|
|
64519
64524
|
// Constructor with default values for optional fields
|
|
64520
|
-
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) {
|
|
64525
|
+
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) {
|
|
64521
64526
|
/**
|
|
64522
64527
|
* Whether or not the request succeeded.
|
|
64523
64528
|
*/
|
|
@@ -64742,6 +64747,10 @@ class MerchantProfileResponse {
|
|
|
64742
64747
|
* Bank accounts for split bank account merchants.
|
|
64743
64748
|
*/
|
|
64744
64749
|
this.bankAccounts = null;
|
|
64750
|
+
/**
|
|
64751
|
+
* That a merchant is allowed to send a surcharge amount directly to the gateway.
|
|
64752
|
+
*/
|
|
64753
|
+
this.passthroughSurchargeEnabled = null;
|
|
64745
64754
|
this.success = success;
|
|
64746
64755
|
this.error = error;
|
|
64747
64756
|
this.responseDescription = responseDescription;
|
|
@@ -64797,6 +64806,7 @@ class MerchantProfileResponse {
|
|
|
64797
64806
|
this.manualEntryPromptStreetNumber = manualEntryPromptStreetNumber;
|
|
64798
64807
|
this.gatewayOnly = gatewayOnly;
|
|
64799
64808
|
this.bankAccounts = bankAccounts;
|
|
64809
|
+
this.passthroughSurchargeEnabled = passthroughSurchargeEnabled;
|
|
64800
64810
|
}
|
|
64801
64811
|
}
|
|
64802
64812
|
exports.MerchantProfileResponse = MerchantProfileResponse;
|