@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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright 2019-2025 BlockChyp, Inc. All rights reserved. Use of this code is governed
2
+ * Copyright 2019-2026 BlockChyp, Inc. All rights reserved. Use of this code is governed
3
3
  * by a license that can be found in the LICENSE file.
4
4
  *
5
5
  * This file was generated automatically by the BlockChyp SDK Generator. Changes to this
package/lib/src/client.js CHANGED
@@ -37,7 +37,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
37
37
  Object.defineProperty(exports, "__esModule", { value: true });
38
38
  exports.newClient = exports.BlockChypCredentials = exports.BlockChypClient = exports.HealthcareType = exports.CVMType = exports.AVSResponse = exports.PromptType = exports.RoundingMode = exports.SignatureFormat = exports.CardType = void 0;
39
39
  /**
40
- * Copyright 2019-2025 BlockChyp, Inc. All rights reserved. Use of this code is governed
40
+ * Copyright 2019-2026 BlockChyp, Inc. All rights reserved. Use of this code is governed
41
41
  * by a license that can be found in the LICENSE file.
42
42
  *
43
43
  * This file was generated automatically by the BlockChyp SDK Generator. Changes to this
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright 2019-2025 BlockChyp, Inc. All rights reserved. Use of this code is governed
2
+ * Copyright 2019-2026 BlockChyp, Inc. All rights reserved. Use of this code is governed
3
3
  * by a license that can be found in the LICENSE file.
4
4
  *
5
5
  * This file was generated automatically by the BlockChyp SDK Generator. Changes to this
@@ -5641,7 +5641,15 @@ export declare class BatchDetailsResponse {
5641
5641
  * Merchant's batch history in descending order.
5642
5642
  */
5643
5643
  volumeByTerminal: TerminalVolume[] | null;
5644
- constructor(success?: boolean | null, error?: string | null, responseDescription?: string | null, test?: boolean | null, batchId?: string | null, entryMethod?: string | null, destinationAccountId?: string | null, capturedAmount?: string | null, openPreauths?: string | null, totalVolume?: string | null, transactionCount?: number | null, giftCardsSold?: string | null, giftCardVolume?: string | null, expectedDeposit?: string | null, open?: boolean | null, openDate?: Date | null, closeDate?: Date | null, volumeByTerminal?: TerminalVolume[] | null);
5644
+ /**
5645
+ * The net volume for this batch, usually expected volume less daily fees volume.
5646
+ */
5647
+ netDeposit: string | null;
5648
+ /**
5649
+ * The daily fees for this batch
5650
+ */
5651
+ dailyFees: string | null;
5652
+ constructor(success?: boolean | null, error?: string | null, responseDescription?: string | null, test?: boolean | null, batchId?: string | null, entryMethod?: string | null, destinationAccountId?: string | null, capturedAmount?: string | null, openPreauths?: string | null, totalVolume?: string | null, transactionCount?: number | null, giftCardsSold?: string | null, giftCardVolume?: string | null, expectedDeposit?: string | null, open?: boolean | null, openDate?: Date | null, closeDate?: Date | null, volumeByTerminal?: TerminalVolume[] | null, netDeposit?: string | null, dailyFees?: string | null);
5645
5653
  }
5646
5654
  /**
5647
5655
  * Models transaction volume for a single terminal.
package/lib/src/models.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /**
3
- * Copyright 2019-2025 BlockChyp, Inc. All rights reserved. Use of this code is governed
3
+ * Copyright 2019-2026 BlockChyp, Inc. All rights reserved. Use of this code is governed
4
4
  * by a license that can be found in the LICENSE file.
5
5
  *
6
6
  * This file was generated automatically by the BlockChyp SDK Generator. Changes to this
@@ -4365,7 +4365,7 @@ exports.BatchDetailsRequest = BatchDetailsRequest;
4365
4365
  */
4366
4366
  class BatchDetailsResponse {
4367
4367
  // Constructor with default values for optional fields
4368
- 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) {
4368
+ 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) {
4369
4369
  /**
4370
4370
  * Whether or not the request succeeded.
4371
4371
  */
@@ -4438,6 +4438,14 @@ class BatchDetailsResponse {
4438
4438
  * Merchant's batch history in descending order.
4439
4439
  */
4440
4440
  this.volumeByTerminal = null;
4441
+ /**
4442
+ * The net volume for this batch, usually expected volume less daily fees volume.
4443
+ */
4444
+ this.netDeposit = null;
4445
+ /**
4446
+ * The daily fees for this batch
4447
+ */
4448
+ this.dailyFees = null;
4441
4449
  this.success = success;
4442
4450
  this.error = error;
4443
4451
  this.responseDescription = responseDescription;
@@ -4456,6 +4464,8 @@ class BatchDetailsResponse {
4456
4464
  this.openDate = openDate;
4457
4465
  this.closeDate = closeDate;
4458
4466
  this.volumeByTerminal = volumeByTerminal;
4467
+ this.netDeposit = netDeposit;
4468
+ this.dailyFees = dailyFees;
4459
4469
  }
4460
4470
  }
4461
4471
  exports.BatchDetailsResponse = BatchDetailsResponse;