@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/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Copyright 2019-
|
|
2
|
+
* Copyright 2019-2025 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-2025 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
|
|
@@ -9940,6 +9940,11 @@ export class MerchantProfile {
|
|
|
9940
9940
|
*/
|
|
9941
9941
|
bankAccounts: BankAccount[] | null = null;
|
|
9942
9942
|
|
|
9943
|
+
/**
|
|
9944
|
+
* That a merchant is allowed to send a surcharge amount directly to the gateway.
|
|
9945
|
+
*/
|
|
9946
|
+
passthroughSurchargeEnabled: boolean | null = null;
|
|
9947
|
+
|
|
9943
9948
|
// Constructor with default values for optional fields
|
|
9944
9949
|
constructor(
|
|
9945
9950
|
timeout: number | null = null,
|
|
@@ -9995,6 +10000,7 @@ export class MerchantProfile {
|
|
|
9995
10000
|
manualEntryPromptStreetNumber: boolean | null = null,
|
|
9996
10001
|
gatewayOnly: boolean | null = null,
|
|
9997
10002
|
bankAccounts: BankAccount[] | null = null,
|
|
10003
|
+
passthroughSurchargeEnabled: boolean | null = null,
|
|
9998
10004
|
) {
|
|
9999
10005
|
this.timeout = timeout;
|
|
10000
10006
|
this.test = test;
|
|
@@ -10049,6 +10055,7 @@ export class MerchantProfile {
|
|
|
10049
10055
|
this.manualEntryPromptStreetNumber = manualEntryPromptStreetNumber;
|
|
10050
10056
|
this.gatewayOnly = gatewayOnly;
|
|
10051
10057
|
this.bankAccounts = bankAccounts;
|
|
10058
|
+
this.passthroughSurchargeEnabled = passthroughSurchargeEnabled;
|
|
10052
10059
|
}
|
|
10053
10060
|
}
|
|
10054
10061
|
|
|
@@ -10336,6 +10343,11 @@ export class MerchantProfileResponse {
|
|
|
10336
10343
|
*/
|
|
10337
10344
|
bankAccounts: BankAccount[] | null = null;
|
|
10338
10345
|
|
|
10346
|
+
/**
|
|
10347
|
+
* That a merchant is allowed to send a surcharge amount directly to the gateway.
|
|
10348
|
+
*/
|
|
10349
|
+
passthroughSurchargeEnabled: boolean | null = null;
|
|
10350
|
+
|
|
10339
10351
|
// Constructor with default values for optional fields
|
|
10340
10352
|
constructor(
|
|
10341
10353
|
success: boolean | null = null,
|
|
@@ -10393,6 +10405,7 @@ export class MerchantProfileResponse {
|
|
|
10393
10405
|
manualEntryPromptStreetNumber: boolean | null = null,
|
|
10394
10406
|
gatewayOnly: boolean | null = null,
|
|
10395
10407
|
bankAccounts: BankAccount[] | null = null,
|
|
10408
|
+
passthroughSurchargeEnabled: boolean | null = null,
|
|
10396
10409
|
) {
|
|
10397
10410
|
this.success = success;
|
|
10398
10411
|
this.error = error;
|
|
@@ -10449,6 +10462,7 @@ export class MerchantProfileResponse {
|
|
|
10449
10462
|
this.manualEntryPromptStreetNumber = manualEntryPromptStreetNumber;
|
|
10450
10463
|
this.gatewayOnly = gatewayOnly;
|
|
10451
10464
|
this.bankAccounts = bankAccounts;
|
|
10465
|
+
this.passthroughSurchargeEnabled = passthroughSurchargeEnabled;
|
|
10452
10466
|
}
|
|
10453
10467
|
}
|
|
10454
10468
|
|