@blockchyp/blockchyp-ts 2.26.1 → 2.27.2
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 +13 -3
- 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 +10 -2
- package/lib/src/models.js +12 -2
- 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
|
@@ -57720,7 +57720,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
57720
57720
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
57721
57721
|
exports.newClient = exports.BlockChypCredentials = exports.BlockChypClient = exports.HealthcareType = exports.CVMType = exports.AVSResponse = exports.PromptType = exports.RoundingMode = exports.SignatureFormat = exports.CardType = void 0;
|
|
57722
57722
|
/**
|
|
57723
|
-
* Copyright 2019-
|
|
57723
|
+
* Copyright 2019-2026 BlockChyp, Inc. All rights reserved. Use of this code is governed
|
|
57724
57724
|
* by a license that can be found in the LICENSE file.
|
|
57725
57725
|
*
|
|
57726
57726
|
* This file was generated automatically by the BlockChyp SDK Generator. Changes to this
|
|
@@ -58760,7 +58760,7 @@ exports["default"] = CryptoUtils;
|
|
|
58760
58760
|
"use strict";
|
|
58761
58761
|
|
|
58762
58762
|
/**
|
|
58763
|
-
* Copyright 2019-
|
|
58763
|
+
* Copyright 2019-2026 BlockChyp, Inc. All rights reserved. Use of this code is governed
|
|
58764
58764
|
* by a license that can be found in the LICENSE file.
|
|
58765
58765
|
*
|
|
58766
58766
|
* This file was generated automatically by the BlockChyp SDK Generator. Changes to this
|
|
@@ -63125,7 +63125,7 @@ exports.BatchDetailsRequest = BatchDetailsRequest;
|
|
|
63125
63125
|
*/
|
|
63126
63126
|
class BatchDetailsResponse {
|
|
63127
63127
|
// Constructor with default values for optional fields
|
|
63128
|
-
constructor(success = null, error = null, responseDescription = null, test = null, batchId = null, entryMethod = null, destinationAccountId = null, capturedAmount = null, openPreauths = null, totalVolume = null, transactionCount = null, giftCardsSold = null, giftCardVolume = null, expectedDeposit = null, open = null, openDate = null, closeDate = null, volumeByTerminal = null) {
|
|
63128
|
+
constructor(success = null, error = null, responseDescription = null, test = null, batchId = null, entryMethod = null, destinationAccountId = null, capturedAmount = null, openPreauths = null, totalVolume = null, transactionCount = null, giftCardsSold = null, giftCardVolume = null, expectedDeposit = null, open = null, openDate = null, closeDate = null, volumeByTerminal = null, netDeposit = null, dailyFees = null) {
|
|
63129
63129
|
/**
|
|
63130
63130
|
* Whether or not the request succeeded.
|
|
63131
63131
|
*/
|
|
@@ -63198,6 +63198,14 @@ class BatchDetailsResponse {
|
|
|
63198
63198
|
* Merchant's batch history in descending order.
|
|
63199
63199
|
*/
|
|
63200
63200
|
this.volumeByTerminal = null;
|
|
63201
|
+
/**
|
|
63202
|
+
* The net volume for this batch, usually expected volume less daily fees volume.
|
|
63203
|
+
*/
|
|
63204
|
+
this.netDeposit = null;
|
|
63205
|
+
/**
|
|
63206
|
+
* The daily fees for this batch
|
|
63207
|
+
*/
|
|
63208
|
+
this.dailyFees = null;
|
|
63201
63209
|
this.success = success;
|
|
63202
63210
|
this.error = error;
|
|
63203
63211
|
this.responseDescription = responseDescription;
|
|
@@ -63216,6 +63224,8 @@ class BatchDetailsResponse {
|
|
|
63216
63224
|
this.openDate = openDate;
|
|
63217
63225
|
this.closeDate = closeDate;
|
|
63218
63226
|
this.volumeByTerminal = volumeByTerminal;
|
|
63227
|
+
this.netDeposit = netDeposit;
|
|
63228
|
+
this.dailyFees = dailyFees;
|
|
63219
63229
|
}
|
|
63220
63230
|
}
|
|
63221
63231
|
exports.BatchDetailsResponse = BatchDetailsResponse;
|