@blockchyp/blockchyp-ts 2.24.0 → 2.24.2
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 +18 -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 +16 -2
- package/lib/src/models.js +18 -2
- package/lib/src/models.js.map +1 -1
- package/package.json +1 -1
- package/src/models.ts +20 -0
package/package.json
CHANGED
package/src/models.ts
CHANGED
|
@@ -10119,6 +10119,14 @@ export class MerchantProfile {
|
|
|
10119
10119
|
*/
|
|
10120
10120
|
cvvVerificationUEnabled: boolean | null = null;
|
|
10121
10121
|
|
|
10122
|
+
/**
|
|
10123
|
+
* The AVS (Address Verification Service) rule to apply. Allowed values are
|
|
10124
|
+
* 'allow_all', 'require_full_match', 'require_zip_match',
|
|
10125
|
+
* 'require_address_match'. If avsRule is empty, then merchant follows partner
|
|
10126
|
+
* setting
|
|
10127
|
+
*/
|
|
10128
|
+
avsRule: string | null = null;
|
|
10129
|
+
|
|
10122
10130
|
// Constructor with default values for optional fields
|
|
10123
10131
|
constructor(
|
|
10124
10132
|
timeout: number | null = null,
|
|
@@ -10180,6 +10188,7 @@ export class MerchantProfile {
|
|
|
10180
10188
|
cvvVerificationPEnabled: boolean | null = null,
|
|
10181
10189
|
cvvVerificationSEnabled: boolean | null = null,
|
|
10182
10190
|
cvvVerificationUEnabled: boolean | null = null,
|
|
10191
|
+
avsRule: string | null = null,
|
|
10183
10192
|
) {
|
|
10184
10193
|
this.timeout = timeout;
|
|
10185
10194
|
this.test = test;
|
|
@@ -10240,6 +10249,7 @@ export class MerchantProfile {
|
|
|
10240
10249
|
this.cvvVerificationPEnabled = cvvVerificationPEnabled;
|
|
10241
10250
|
this.cvvVerificationSEnabled = cvvVerificationSEnabled;
|
|
10242
10251
|
this.cvvVerificationUEnabled = cvvVerificationUEnabled;
|
|
10252
|
+
this.avsRule = avsRule;
|
|
10243
10253
|
}
|
|
10244
10254
|
}
|
|
10245
10255
|
|
|
@@ -10558,6 +10568,14 @@ export class MerchantProfileResponse {
|
|
|
10558
10568
|
*/
|
|
10559
10569
|
cvvVerificationUEnabled: boolean | null = null;
|
|
10560
10570
|
|
|
10571
|
+
/**
|
|
10572
|
+
* The AVS (Address Verification Service) rule to apply. Allowed values are
|
|
10573
|
+
* 'allow_all', 'require_full_match', 'require_zip_match',
|
|
10574
|
+
* 'require_address_match'. If avsRule is empty, then merchant follows partner
|
|
10575
|
+
* setting
|
|
10576
|
+
*/
|
|
10577
|
+
avsRule: string | null = null;
|
|
10578
|
+
|
|
10561
10579
|
// Constructor with default values for optional fields
|
|
10562
10580
|
constructor(
|
|
10563
10581
|
success: boolean | null = null,
|
|
@@ -10621,6 +10639,7 @@ export class MerchantProfileResponse {
|
|
|
10621
10639
|
cvvVerificationPEnabled: boolean | null = null,
|
|
10622
10640
|
cvvVerificationSEnabled: boolean | null = null,
|
|
10623
10641
|
cvvVerificationUEnabled: boolean | null = null,
|
|
10642
|
+
avsRule: string | null = null,
|
|
10624
10643
|
) {
|
|
10625
10644
|
this.success = success;
|
|
10626
10645
|
this.error = error;
|
|
@@ -10683,6 +10702,7 @@ export class MerchantProfileResponse {
|
|
|
10683
10702
|
this.cvvVerificationPEnabled = cvvVerificationPEnabled;
|
|
10684
10703
|
this.cvvVerificationSEnabled = cvvVerificationSEnabled;
|
|
10685
10704
|
this.cvvVerificationUEnabled = cvvVerificationUEnabled;
|
|
10705
|
+
this.avsRule = avsRule;
|
|
10686
10706
|
}
|
|
10687
10707
|
}
|
|
10688
10708
|
|