@blockchyp/blockchyp-ts 2.24.4 → 2.24.5

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.24.4",
3
+ "version": "2.24.5",
4
4
  "description": "BlockChyp Typescript Client",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
package/src/models.ts CHANGED
@@ -10143,6 +10143,11 @@ export class MerchantProfile {
10143
10143
  */
10144
10144
  accountUpdaterEnrolled: boolean | null = null;
10145
10145
 
10146
+ /**
10147
+ * Whether the merchant should bypass an auth with TSYS on Enrollment.
10148
+ */
10149
+ bypassEnrollAuthEnabled: boolean | null = null;
10150
+
10146
10151
  // Constructor with default values for optional fields
10147
10152
  constructor(
10148
10153
  timeout: number | null = null,
@@ -10208,6 +10213,7 @@ export class MerchantProfile {
10208
10213
  avsRule: string | null = null,
10209
10214
  followPartnerAvsSettings: boolean | null = null,
10210
10215
  accountUpdaterEnrolled: boolean | null = null,
10216
+ bypassEnrollAuthEnabled: boolean | null = null,
10211
10217
  ) {
10212
10218
  this.timeout = timeout;
10213
10219
  this.test = test;
@@ -10272,6 +10278,7 @@ export class MerchantProfile {
10272
10278
  this.avsRule = avsRule;
10273
10279
  this.followPartnerAvsSettings = followPartnerAvsSettings;
10274
10280
  this.accountUpdaterEnrolled = accountUpdaterEnrolled;
10281
+ this.bypassEnrollAuthEnabled = bypassEnrollAuthEnabled;
10275
10282
  }
10276
10283
  }
10277
10284
 
@@ -10614,6 +10621,11 @@ export class MerchantProfileResponse {
10614
10621
  */
10615
10622
  accountUpdaterEnrolled: boolean | null = null;
10616
10623
 
10624
+ /**
10625
+ * Whether the merchant should bypass an auth with TSYS on Enrollment.
10626
+ */
10627
+ bypassEnrollAuthEnabled: boolean | null = null;
10628
+
10617
10629
  // Constructor with default values for optional fields
10618
10630
  constructor(
10619
10631
  success: boolean | null = null,
@@ -10681,6 +10693,7 @@ export class MerchantProfileResponse {
10681
10693
  avsRule: string | null = null,
10682
10694
  followPartnerAvsSettings: boolean | null = null,
10683
10695
  accountUpdaterEnrolled: boolean | null = null,
10696
+ bypassEnrollAuthEnabled: boolean | null = null,
10684
10697
  ) {
10685
10698
  this.success = success;
10686
10699
  this.error = error;
@@ -10747,6 +10760,7 @@ export class MerchantProfileResponse {
10747
10760
  this.avsRule = avsRule;
10748
10761
  this.followPartnerAvsSettings = followPartnerAvsSettings;
10749
10762
  this.accountUpdaterEnrolled = accountUpdaterEnrolled;
10763
+ this.bypassEnrollAuthEnabled = bypassEnrollAuthEnabled;
10750
10764
  }
10751
10765
  }
10752
10766