@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/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Copyright 2019-
|
|
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-
|
|
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
|
|