@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockchyp/blockchyp-ts",
3
- "version": "2.26.1",
3
+ "version": "2.27.2",
4
4
  "description": "BlockChyp Typescript Client",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
package/src/client.ts CHANGED
@@ -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/src/models.ts CHANGED
@@ -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
@@ -9617,6 +9617,16 @@ export class BatchDetailsResponse {
9617
9617
  */
9618
9618
  volumeByTerminal: TerminalVolume[] | null = null;
9619
9619
 
9620
+ /**
9621
+ * The net volume for this batch, usually expected volume less daily fees volume.
9622
+ */
9623
+ netDeposit: string | null = null;
9624
+
9625
+ /**
9626
+ * The daily fees for this batch
9627
+ */
9628
+ dailyFees: string | null = null;
9629
+
9620
9630
  // Constructor with default values for optional fields
9621
9631
  constructor(
9622
9632
  success: boolean | null = null,
@@ -9637,6 +9647,8 @@ export class BatchDetailsResponse {
9637
9647
  openDate: Date | null = null,
9638
9648
  closeDate: Date | null = null,
9639
9649
  volumeByTerminal: TerminalVolume[] | null = null,
9650
+ netDeposit: string | null = null,
9651
+ dailyFees: string | null = null,
9640
9652
  ) {
9641
9653
  this.success = success;
9642
9654
  this.error = error;
@@ -9656,6 +9668,8 @@ export class BatchDetailsResponse {
9656
9668
  this.openDate = openDate;
9657
9669
  this.closeDate = closeDate;
9658
9670
  this.volumeByTerminal = volumeByTerminal;
9671
+ this.netDeposit = netDeposit;
9672
+ this.dailyFees = dailyFees;
9659
9673
  }
9660
9674
  }
9661
9675