@blockchyp/blockchyp-ts 2.30.6 → 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/_bundles/blockchyp.js +92 -30
- package/_bundles/blockchyp.js.map +1 -1
- package/_bundles/blockchyp.min.js +1 -1
- package/_bundles/blockchyp.min.js.LICENSE.txt +1 -1
- package/_bundles/blockchyp.min.js.map +1 -1
- package/lib/src/models.d.ts +18 -2
- package/lib/src/models.js +22 -2
- package/lib/src/models.js.map +1 -1
- package/package.json +1 -1
- package/src/models.ts +28 -0
package/package.json
CHANGED
package/src/models.ts
CHANGED
|
@@ -10676,6 +10676,16 @@ export class MerchantProfile {
|
|
|
10676
10676
|
*/
|
|
10677
10677
|
serviceFeeEnabled: boolean | null = null;
|
|
10678
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
|
+
|
|
10679
10689
|
// Constructor with default values for optional fields
|
|
10680
10690
|
constructor(
|
|
10681
10691
|
timeout: number | null = null,
|
|
@@ -10744,6 +10754,8 @@ export class MerchantProfile {
|
|
|
10744
10754
|
bypassEnrollAuthEnabled: boolean | null = null,
|
|
10745
10755
|
followPartnerServiceFeeEnabled: boolean | null = null,
|
|
10746
10756
|
serviceFeeEnabled: boolean | null = null,
|
|
10757
|
+
followPartnerCvvCacheEnabled: boolean | null = null,
|
|
10758
|
+
cvvCacheEnabled: boolean | null = null,
|
|
10747
10759
|
) {
|
|
10748
10760
|
this.timeout = timeout;
|
|
10749
10761
|
this.test = test;
|
|
@@ -10811,6 +10823,8 @@ export class MerchantProfile {
|
|
|
10811
10823
|
this.bypassEnrollAuthEnabled = bypassEnrollAuthEnabled;
|
|
10812
10824
|
this.followPartnerServiceFeeEnabled = followPartnerServiceFeeEnabled;
|
|
10813
10825
|
this.serviceFeeEnabled = serviceFeeEnabled;
|
|
10826
|
+
this.followPartnerCvvCacheEnabled = followPartnerCvvCacheEnabled;
|
|
10827
|
+
this.cvvCacheEnabled = cvvCacheEnabled;
|
|
10814
10828
|
}
|
|
10815
10829
|
}
|
|
10816
10830
|
|
|
@@ -11168,6 +11182,16 @@ export class MerchantProfileResponse {
|
|
|
11168
11182
|
*/
|
|
11169
11183
|
serviceFeeEnabled: boolean | null = null;
|
|
11170
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
|
+
|
|
11171
11195
|
// Constructor with default values for optional fields
|
|
11172
11196
|
constructor(
|
|
11173
11197
|
success: boolean | null = null,
|
|
@@ -11238,6 +11262,8 @@ export class MerchantProfileResponse {
|
|
|
11238
11262
|
bypassEnrollAuthEnabled: boolean | null = null,
|
|
11239
11263
|
followPartnerServiceFeeEnabled: boolean | null = null,
|
|
11240
11264
|
serviceFeeEnabled: boolean | null = null,
|
|
11265
|
+
followPartnerCvvCacheEnabled: boolean | null = null,
|
|
11266
|
+
cvvCacheEnabled: boolean | null = null,
|
|
11241
11267
|
) {
|
|
11242
11268
|
this.success = success;
|
|
11243
11269
|
this.error = error;
|
|
@@ -11307,6 +11333,8 @@ export class MerchantProfileResponse {
|
|
|
11307
11333
|
this.bypassEnrollAuthEnabled = bypassEnrollAuthEnabled;
|
|
11308
11334
|
this.followPartnerServiceFeeEnabled = followPartnerServiceFeeEnabled;
|
|
11309
11335
|
this.serviceFeeEnabled = serviceFeeEnabled;
|
|
11336
|
+
this.followPartnerCvvCacheEnabled = followPartnerCvvCacheEnabled;
|
|
11337
|
+
this.cvvCacheEnabled = cvvCacheEnabled;
|
|
11310
11338
|
}
|
|
11311
11339
|
}
|
|
11312
11340
|
|