@blockchyp/blockchyp-ts 2.30.5 → 2.30.7

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.7",
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,26 @@ 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
+
10679
+ /**
10680
+ * That the merchant follows the partner's CVV cache settings.
10681
+ */
10682
+ followPartnerCvvCacheEnabled: boolean | null = null;
10683
+
10684
+ /**
10685
+ * That the merchant is configured to apply a CVV cache.
10686
+ */
10687
+ cvvCacheEnabled: boolean | null = null;
10688
+
10669
10689
  // Constructor with default values for optional fields
10670
10690
  constructor(
10671
10691
  timeout: number | null = null,
@@ -10732,6 +10752,10 @@ export class MerchantProfile {
10732
10752
  followPartnerAvsSettings: boolean | null = null,
10733
10753
  accountUpdaterEnrolled: boolean | null = null,
10734
10754
  bypassEnrollAuthEnabled: boolean | null = null,
10755
+ followPartnerServiceFeeEnabled: boolean | null = null,
10756
+ serviceFeeEnabled: boolean | null = null,
10757
+ followPartnerCvvCacheEnabled: boolean | null = null,
10758
+ cvvCacheEnabled: boolean | null = null,
10735
10759
  ) {
10736
10760
  this.timeout = timeout;
10737
10761
  this.test = test;
@@ -10797,6 +10821,10 @@ export class MerchantProfile {
10797
10821
  this.followPartnerAvsSettings = followPartnerAvsSettings;
10798
10822
  this.accountUpdaterEnrolled = accountUpdaterEnrolled;
10799
10823
  this.bypassEnrollAuthEnabled = bypassEnrollAuthEnabled;
10824
+ this.followPartnerServiceFeeEnabled = followPartnerServiceFeeEnabled;
10825
+ this.serviceFeeEnabled = serviceFeeEnabled;
10826
+ this.followPartnerCvvCacheEnabled = followPartnerCvvCacheEnabled;
10827
+ this.cvvCacheEnabled = cvvCacheEnabled;
10800
10828
  }
10801
10829
  }
10802
10830
 
@@ -11144,6 +11172,26 @@ export class MerchantProfileResponse {
11144
11172
  */
11145
11173
  bypassEnrollAuthEnabled: boolean | null = null;
11146
11174
 
11175
+ /**
11176
+ * That the merchant follows the partner's service fee settings.
11177
+ */
11178
+ followPartnerServiceFeeEnabled: boolean | null = null;
11179
+
11180
+ /**
11181
+ * That the merchant is configured to apply a service fee.
11182
+ */
11183
+ serviceFeeEnabled: boolean | null = null;
11184
+
11185
+ /**
11186
+ * That the merchant follows the partner's CVV cache settings.
11187
+ */
11188
+ followPartnerCvvCacheEnabled: boolean | null = null;
11189
+
11190
+ /**
11191
+ * That the merchant is configured to apply a CVV cache.
11192
+ */
11193
+ cvvCacheEnabled: boolean | null = null;
11194
+
11147
11195
  // Constructor with default values for optional fields
11148
11196
  constructor(
11149
11197
  success: boolean | null = null,
@@ -11212,6 +11260,10 @@ export class MerchantProfileResponse {
11212
11260
  followPartnerAvsSettings: boolean | null = null,
11213
11261
  accountUpdaterEnrolled: boolean | null = null,
11214
11262
  bypassEnrollAuthEnabled: boolean | null = null,
11263
+ followPartnerServiceFeeEnabled: boolean | null = null,
11264
+ serviceFeeEnabled: boolean | null = null,
11265
+ followPartnerCvvCacheEnabled: boolean | null = null,
11266
+ cvvCacheEnabled: boolean | null = null,
11215
11267
  ) {
11216
11268
  this.success = success;
11217
11269
  this.error = error;
@@ -11279,6 +11331,10 @@ export class MerchantProfileResponse {
11279
11331
  this.followPartnerAvsSettings = followPartnerAvsSettings;
11280
11332
  this.accountUpdaterEnrolled = accountUpdaterEnrolled;
11281
11333
  this.bypassEnrollAuthEnabled = bypassEnrollAuthEnabled;
11334
+ this.followPartnerServiceFeeEnabled = followPartnerServiceFeeEnabled;
11335
+ this.serviceFeeEnabled = serviceFeeEnabled;
11336
+ this.followPartnerCvvCacheEnabled = followPartnerCvvCacheEnabled;
11337
+ this.cvvCacheEnabled = cvvCacheEnabled;
11282
11338
  }
11283
11339
  }
11284
11340