@blockchyp/blockchyp-ts 2.30.5 → 2.30.6

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.30.5",
3
+ "version": "2.30.6",
4
4
  "description": "BlockChyp Typescript Client",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
package/src/models.ts CHANGED
@@ -10666,6 +10666,16 @@ export class MerchantProfile {
10666
10666
  */
10667
10667
  bypassEnrollAuthEnabled: boolean | null = null;
10668
10668
 
10669
+ /**
10670
+ * That the merchant follows the partner's service fee settings.
10671
+ */
10672
+ followPartnerServiceFeeEnabled: boolean | null = null;
10673
+
10674
+ /**
10675
+ * That the merchant is configured to apply a service fee.
10676
+ */
10677
+ serviceFeeEnabled: boolean | null = null;
10678
+
10669
10679
  // Constructor with default values for optional fields
10670
10680
  constructor(
10671
10681
  timeout: number | null = null,
@@ -10732,6 +10742,8 @@ export class MerchantProfile {
10732
10742
  followPartnerAvsSettings: boolean | null = null,
10733
10743
  accountUpdaterEnrolled: boolean | null = null,
10734
10744
  bypassEnrollAuthEnabled: boolean | null = null,
10745
+ followPartnerServiceFeeEnabled: boolean | null = null,
10746
+ serviceFeeEnabled: boolean | null = null,
10735
10747
  ) {
10736
10748
  this.timeout = timeout;
10737
10749
  this.test = test;
@@ -10797,6 +10809,8 @@ export class MerchantProfile {
10797
10809
  this.followPartnerAvsSettings = followPartnerAvsSettings;
10798
10810
  this.accountUpdaterEnrolled = accountUpdaterEnrolled;
10799
10811
  this.bypassEnrollAuthEnabled = bypassEnrollAuthEnabled;
10812
+ this.followPartnerServiceFeeEnabled = followPartnerServiceFeeEnabled;
10813
+ this.serviceFeeEnabled = serviceFeeEnabled;
10800
10814
  }
10801
10815
  }
10802
10816
 
@@ -11144,6 +11158,16 @@ export class MerchantProfileResponse {
11144
11158
  */
11145
11159
  bypassEnrollAuthEnabled: boolean | null = null;
11146
11160
 
11161
+ /**
11162
+ * That the merchant follows the partner's service fee settings.
11163
+ */
11164
+ followPartnerServiceFeeEnabled: boolean | null = null;
11165
+
11166
+ /**
11167
+ * That the merchant is configured to apply a service fee.
11168
+ */
11169
+ serviceFeeEnabled: boolean | null = null;
11170
+
11147
11171
  // Constructor with default values for optional fields
11148
11172
  constructor(
11149
11173
  success: boolean | null = null,
@@ -11212,6 +11236,8 @@ export class MerchantProfileResponse {
11212
11236
  followPartnerAvsSettings: boolean | null = null,
11213
11237
  accountUpdaterEnrolled: boolean | null = null,
11214
11238
  bypassEnrollAuthEnabled: boolean | null = null,
11239
+ followPartnerServiceFeeEnabled: boolean | null = null,
11240
+ serviceFeeEnabled: boolean | null = null,
11215
11241
  ) {
11216
11242
  this.success = success;
11217
11243
  this.error = error;
@@ -11279,6 +11305,8 @@ export class MerchantProfileResponse {
11279
11305
  this.followPartnerAvsSettings = followPartnerAvsSettings;
11280
11306
  this.accountUpdaterEnrolled = accountUpdaterEnrolled;
11281
11307
  this.bypassEnrollAuthEnabled = bypassEnrollAuthEnabled;
11308
+ this.followPartnerServiceFeeEnabled = followPartnerServiceFeeEnabled;
11309
+ this.serviceFeeEnabled = serviceFeeEnabled;
11282
11310
  }
11283
11311
  }
11284
11312