@blockchyp/blockchyp-ts 2.24.3 → 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/_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/models.d.ts +12 -4
- package/lib/src/models.js +14 -4
- package/lib/src/models.js.map +1 -1
- package/package.json +1 -1
- package/src/models.ts +16 -2
package/package.json
CHANGED
package/src/models.ts
CHANGED
|
@@ -10128,7 +10128,7 @@ export class MerchantProfile {
|
|
|
10128
10128
|
* The AVS (Address Verification Service) rule to apply. Allowed values are
|
|
10129
10129
|
* 'allow_all', 'require_full_match', 'require_zip_match',
|
|
10130
10130
|
* 'require_address_match'. If avsRule is empty, then merchant follows partner
|
|
10131
|
-
* setting
|
|
10131
|
+
* setting.
|
|
10132
10132
|
*/
|
|
10133
10133
|
avsRule: string | null = null;
|
|
10134
10134
|
|
|
@@ -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
|
|
|
@@ -10599,7 +10606,7 @@ export class MerchantProfileResponse {
|
|
|
10599
10606
|
* The AVS (Address Verification Service) rule to apply. Allowed values are
|
|
10600
10607
|
* 'allow_all', 'require_full_match', 'require_zip_match',
|
|
10601
10608
|
* 'require_address_match'. If avsRule is empty, then merchant follows partner
|
|
10602
|
-
* setting
|
|
10609
|
+
* setting.
|
|
10603
10610
|
*/
|
|
10604
10611
|
avsRule: string | null = null;
|
|
10605
10612
|
|
|
@@ -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
|
|