@blockchyp/blockchyp-ts 2.24.2 → 2.24.3
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 +34 -2
- 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 +28 -2
- package/lib/src/models.js +34 -2
- package/lib/src/models.js.map +1 -1
- package/package.json +1 -1
- package/src/models.ts +44 -0
package/package.json
CHANGED
package/src/models.ts
CHANGED
|
@@ -10119,6 +10119,11 @@ export class MerchantProfile {
|
|
|
10119
10119
|
*/
|
|
10120
10120
|
cvvVerificationUEnabled: boolean | null = null;
|
|
10121
10121
|
|
|
10122
|
+
/**
|
|
10123
|
+
* That the merchant follows the partner's CVV settings.
|
|
10124
|
+
*/
|
|
10125
|
+
followPartnerCvvSettings: boolean | null = null;
|
|
10126
|
+
|
|
10122
10127
|
/**
|
|
10123
10128
|
* The AVS (Address Verification Service) rule to apply. Allowed values are
|
|
10124
10129
|
* 'allow_all', 'require_full_match', 'require_zip_match',
|
|
@@ -10127,6 +10132,17 @@ export class MerchantProfile {
|
|
|
10127
10132
|
*/
|
|
10128
10133
|
avsRule: string | null = null;
|
|
10129
10134
|
|
|
10135
|
+
/**
|
|
10136
|
+
* That the merchant follows the partner's AVS settings.
|
|
10137
|
+
*/
|
|
10138
|
+
followPartnerAvsSettings: boolean | null = null;
|
|
10139
|
+
|
|
10140
|
+
/**
|
|
10141
|
+
* Flag indicating whether or not account updater is enrolled. Note that only
|
|
10142
|
+
* merchant's whose partner is enrolled will be processed by the account updater.
|
|
10143
|
+
*/
|
|
10144
|
+
accountUpdaterEnrolled: boolean | null = null;
|
|
10145
|
+
|
|
10130
10146
|
// Constructor with default values for optional fields
|
|
10131
10147
|
constructor(
|
|
10132
10148
|
timeout: number | null = null,
|
|
@@ -10188,7 +10204,10 @@ export class MerchantProfile {
|
|
|
10188
10204
|
cvvVerificationPEnabled: boolean | null = null,
|
|
10189
10205
|
cvvVerificationSEnabled: boolean | null = null,
|
|
10190
10206
|
cvvVerificationUEnabled: boolean | null = null,
|
|
10207
|
+
followPartnerCvvSettings: boolean | null = null,
|
|
10191
10208
|
avsRule: string | null = null,
|
|
10209
|
+
followPartnerAvsSettings: boolean | null = null,
|
|
10210
|
+
accountUpdaterEnrolled: boolean | null = null,
|
|
10192
10211
|
) {
|
|
10193
10212
|
this.timeout = timeout;
|
|
10194
10213
|
this.test = test;
|
|
@@ -10249,7 +10268,10 @@ export class MerchantProfile {
|
|
|
10249
10268
|
this.cvvVerificationPEnabled = cvvVerificationPEnabled;
|
|
10250
10269
|
this.cvvVerificationSEnabled = cvvVerificationSEnabled;
|
|
10251
10270
|
this.cvvVerificationUEnabled = cvvVerificationUEnabled;
|
|
10271
|
+
this.followPartnerCvvSettings = followPartnerCvvSettings;
|
|
10252
10272
|
this.avsRule = avsRule;
|
|
10273
|
+
this.followPartnerAvsSettings = followPartnerAvsSettings;
|
|
10274
|
+
this.accountUpdaterEnrolled = accountUpdaterEnrolled;
|
|
10253
10275
|
}
|
|
10254
10276
|
}
|
|
10255
10277
|
|
|
@@ -10568,6 +10590,11 @@ export class MerchantProfileResponse {
|
|
|
10568
10590
|
*/
|
|
10569
10591
|
cvvVerificationUEnabled: boolean | null = null;
|
|
10570
10592
|
|
|
10593
|
+
/**
|
|
10594
|
+
* That the merchant follows the partner's CVV settings.
|
|
10595
|
+
*/
|
|
10596
|
+
followPartnerCvvSettings: boolean | null = null;
|
|
10597
|
+
|
|
10571
10598
|
/**
|
|
10572
10599
|
* The AVS (Address Verification Service) rule to apply. Allowed values are
|
|
10573
10600
|
* 'allow_all', 'require_full_match', 'require_zip_match',
|
|
@@ -10576,6 +10603,17 @@ export class MerchantProfileResponse {
|
|
|
10576
10603
|
*/
|
|
10577
10604
|
avsRule: string | null = null;
|
|
10578
10605
|
|
|
10606
|
+
/**
|
|
10607
|
+
* That the merchant follows the partner's AVS settings.
|
|
10608
|
+
*/
|
|
10609
|
+
followPartnerAvsSettings: boolean | null = null;
|
|
10610
|
+
|
|
10611
|
+
/**
|
|
10612
|
+
* Flag indicating whether or not account updater is enrolled. Note that only
|
|
10613
|
+
* merchant's whose partner is enrolled will be processed by the account updater.
|
|
10614
|
+
*/
|
|
10615
|
+
accountUpdaterEnrolled: boolean | null = null;
|
|
10616
|
+
|
|
10579
10617
|
// Constructor with default values for optional fields
|
|
10580
10618
|
constructor(
|
|
10581
10619
|
success: boolean | null = null,
|
|
@@ -10639,7 +10677,10 @@ export class MerchantProfileResponse {
|
|
|
10639
10677
|
cvvVerificationPEnabled: boolean | null = null,
|
|
10640
10678
|
cvvVerificationSEnabled: boolean | null = null,
|
|
10641
10679
|
cvvVerificationUEnabled: boolean | null = null,
|
|
10680
|
+
followPartnerCvvSettings: boolean | null = null,
|
|
10642
10681
|
avsRule: string | null = null,
|
|
10682
|
+
followPartnerAvsSettings: boolean | null = null,
|
|
10683
|
+
accountUpdaterEnrolled: boolean | null = null,
|
|
10643
10684
|
) {
|
|
10644
10685
|
this.success = success;
|
|
10645
10686
|
this.error = error;
|
|
@@ -10702,7 +10743,10 @@ export class MerchantProfileResponse {
|
|
|
10702
10743
|
this.cvvVerificationPEnabled = cvvVerificationPEnabled;
|
|
10703
10744
|
this.cvvVerificationSEnabled = cvvVerificationSEnabled;
|
|
10704
10745
|
this.cvvVerificationUEnabled = cvvVerificationUEnabled;
|
|
10746
|
+
this.followPartnerCvvSettings = followPartnerCvvSettings;
|
|
10705
10747
|
this.avsRule = avsRule;
|
|
10748
|
+
this.followPartnerAvsSettings = followPartnerAvsSettings;
|
|
10749
|
+
this.accountUpdaterEnrolled = accountUpdaterEnrolled;
|
|
10706
10750
|
}
|
|
10707
10751
|
}
|
|
10708
10752
|
|