@blockchyp/blockchyp-ts 2.24.1 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockchyp/blockchyp-ts",
3
- "version": "2.24.1",
3
+ "version": "2.24.3",
4
4
  "description": "BlockChyp Typescript Client",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
package/src/models.ts CHANGED
@@ -10119,6 +10119,30 @@ 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
+
10127
+ /**
10128
+ * The AVS (Address Verification Service) rule to apply. Allowed values are
10129
+ * 'allow_all', 'require_full_match', 'require_zip_match',
10130
+ * 'require_address_match'. If avsRule is empty, then merchant follows partner
10131
+ * setting
10132
+ */
10133
+ avsRule: string | null = null;
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
+
10122
10146
  // Constructor with default values for optional fields
10123
10147
  constructor(
10124
10148
  timeout: number | null = null,
@@ -10180,6 +10204,10 @@ export class MerchantProfile {
10180
10204
  cvvVerificationPEnabled: boolean | null = null,
10181
10205
  cvvVerificationSEnabled: boolean | null = null,
10182
10206
  cvvVerificationUEnabled: boolean | null = null,
10207
+ followPartnerCvvSettings: boolean | null = null,
10208
+ avsRule: string | null = null,
10209
+ followPartnerAvsSettings: boolean | null = null,
10210
+ accountUpdaterEnrolled: boolean | null = null,
10183
10211
  ) {
10184
10212
  this.timeout = timeout;
10185
10213
  this.test = test;
@@ -10240,6 +10268,10 @@ export class MerchantProfile {
10240
10268
  this.cvvVerificationPEnabled = cvvVerificationPEnabled;
10241
10269
  this.cvvVerificationSEnabled = cvvVerificationSEnabled;
10242
10270
  this.cvvVerificationUEnabled = cvvVerificationUEnabled;
10271
+ this.followPartnerCvvSettings = followPartnerCvvSettings;
10272
+ this.avsRule = avsRule;
10273
+ this.followPartnerAvsSettings = followPartnerAvsSettings;
10274
+ this.accountUpdaterEnrolled = accountUpdaterEnrolled;
10243
10275
  }
10244
10276
  }
10245
10277
 
@@ -10558,6 +10590,30 @@ export class MerchantProfileResponse {
10558
10590
  */
10559
10591
  cvvVerificationUEnabled: boolean | null = null;
10560
10592
 
10593
+ /**
10594
+ * That the merchant follows the partner's CVV settings.
10595
+ */
10596
+ followPartnerCvvSettings: boolean | null = null;
10597
+
10598
+ /**
10599
+ * The AVS (Address Verification Service) rule to apply. Allowed values are
10600
+ * 'allow_all', 'require_full_match', 'require_zip_match',
10601
+ * 'require_address_match'. If avsRule is empty, then merchant follows partner
10602
+ * setting
10603
+ */
10604
+ avsRule: string | null = null;
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
+
10561
10617
  // Constructor with default values for optional fields
10562
10618
  constructor(
10563
10619
  success: boolean | null = null,
@@ -10621,6 +10677,10 @@ export class MerchantProfileResponse {
10621
10677
  cvvVerificationPEnabled: boolean | null = null,
10622
10678
  cvvVerificationSEnabled: boolean | null = null,
10623
10679
  cvvVerificationUEnabled: boolean | null = null,
10680
+ followPartnerCvvSettings: boolean | null = null,
10681
+ avsRule: string | null = null,
10682
+ followPartnerAvsSettings: boolean | null = null,
10683
+ accountUpdaterEnrolled: boolean | null = null,
10624
10684
  ) {
10625
10685
  this.success = success;
10626
10686
  this.error = error;
@@ -10683,6 +10743,10 @@ export class MerchantProfileResponse {
10683
10743
  this.cvvVerificationPEnabled = cvvVerificationPEnabled;
10684
10744
  this.cvvVerificationSEnabled = cvvVerificationSEnabled;
10685
10745
  this.cvvVerificationUEnabled = cvvVerificationUEnabled;
10746
+ this.followPartnerCvvSettings = followPartnerCvvSettings;
10747
+ this.avsRule = avsRule;
10748
+ this.followPartnerAvsSettings = followPartnerAvsSettings;
10749
+ this.accountUpdaterEnrolled = accountUpdaterEnrolled;
10686
10750
  }
10687
10751
  }
10688
10752