@blockchyp/blockchyp-ts 2.24.2 → 2.24.4

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.
@@ -5982,14 +5982,27 @@ export declare class MerchantProfile {
5982
5982
  * declined.
5983
5983
  */
5984
5984
  cvvVerificationUEnabled: boolean | null;
5985
+ /**
5986
+ * That the merchant follows the partner's CVV settings.
5987
+ */
5988
+ followPartnerCvvSettings: boolean | null;
5985
5989
  /**
5986
5990
  * The AVS (Address Verification Service) rule to apply. Allowed values are
5987
5991
  * 'allow_all', 'require_full_match', 'require_zip_match',
5988
5992
  * 'require_address_match'. If avsRule is empty, then merchant follows partner
5989
- * setting
5993
+ * setting.
5990
5994
  */
5991
5995
  avsRule: string | null;
5992
- constructor(timeout?: number | null, test?: boolean | null, merchantId?: string | null, bankMid?: string | null, companyName?: string | null, dbaName?: string | null, invoiceName?: string | null, contactName?: string | null, contactNumber?: string | null, locationName?: string | null, storeNumber?: string | null, partnerRef?: string | null, timeZone?: string | null, batchCloseTime?: string | null, terminalUpdateTime?: string | null, autoBatchClose?: boolean | null, disableBatchEmails?: boolean | null, pinEnabled?: boolean | null, cashBackEnabled?: boolean | null, storeAndForwardEnabled?: boolean | null, partialAuthEnabled?: boolean | null, splitBankAccountsEnabled?: boolean | null, storeAndForwardFloorLimit?: string | null, publicKey?: string | null, status?: string | null, cashDiscountEnabled?: boolean | null, surveyTimeout?: number | null, cooldownTimeout?: number | null, tipEnabled?: boolean | null, promptForTip?: boolean | null, tipDefaults?: string[] | null, cashbackPresets?: string[] | null, ebtEnabled?: boolean | null, freeRangeRefundsEnabled?: boolean | null, pinBypassEnabled?: boolean | null, giftCardsDisabled?: boolean | null, tcDisabled?: boolean | null, digitalSignaturesEnabled?: boolean | null, digitalSignatureReversal?: boolean | null, billingAddress?: Address | null, shippingAddress?: Address | null, visa?: boolean | null, masterCard?: boolean | null, amex?: boolean | null, discover?: boolean | null, jcb?: boolean | null, unionPay?: boolean | null, contactlessEmv?: boolean | null, manualEntryEnabled?: boolean | null, manualEntryPromptZip?: boolean | null, manualEntryPromptStreetNumber?: boolean | null, gatewayOnly?: boolean | null, bankAccounts?: BankAccount[] | null, passthroughSurchargeEnabled?: boolean | null, cvvVerificationEnabled?: boolean | null, cvvVerificationNEnabled?: boolean | null, cvvVerificationPEnabled?: boolean | null, cvvVerificationSEnabled?: boolean | null, cvvVerificationUEnabled?: boolean | null, avsRule?: string | null);
5996
+ /**
5997
+ * That the merchant follows the partner's AVS settings.
5998
+ */
5999
+ followPartnerAvsSettings: boolean | null;
6000
+ /**
6001
+ * Flag indicating whether or not account updater is enrolled. Note that only
6002
+ * merchant's whose partner is enrolled will be processed by the account updater.
6003
+ */
6004
+ accountUpdaterEnrolled: boolean | null;
6005
+ constructor(timeout?: number | null, test?: boolean | null, merchantId?: string | null, bankMid?: string | null, companyName?: string | null, dbaName?: string | null, invoiceName?: string | null, contactName?: string | null, contactNumber?: string | null, locationName?: string | null, storeNumber?: string | null, partnerRef?: string | null, timeZone?: string | null, batchCloseTime?: string | null, terminalUpdateTime?: string | null, autoBatchClose?: boolean | null, disableBatchEmails?: boolean | null, pinEnabled?: boolean | null, cashBackEnabled?: boolean | null, storeAndForwardEnabled?: boolean | null, partialAuthEnabled?: boolean | null, splitBankAccountsEnabled?: boolean | null, storeAndForwardFloorLimit?: string | null, publicKey?: string | null, status?: string | null, cashDiscountEnabled?: boolean | null, surveyTimeout?: number | null, cooldownTimeout?: number | null, tipEnabled?: boolean | null, promptForTip?: boolean | null, tipDefaults?: string[] | null, cashbackPresets?: string[] | null, ebtEnabled?: boolean | null, freeRangeRefundsEnabled?: boolean | null, pinBypassEnabled?: boolean | null, giftCardsDisabled?: boolean | null, tcDisabled?: boolean | null, digitalSignaturesEnabled?: boolean | null, digitalSignatureReversal?: boolean | null, billingAddress?: Address | null, shippingAddress?: Address | null, visa?: boolean | null, masterCard?: boolean | null, amex?: boolean | null, discover?: boolean | null, jcb?: boolean | null, unionPay?: boolean | null, contactlessEmv?: boolean | null, manualEntryEnabled?: boolean | null, manualEntryPromptZip?: boolean | null, manualEntryPromptStreetNumber?: boolean | null, gatewayOnly?: boolean | null, bankAccounts?: BankAccount[] | null, passthroughSurchargeEnabled?: boolean | null, cvvVerificationEnabled?: boolean | null, cvvVerificationNEnabled?: boolean | null, cvvVerificationPEnabled?: boolean | null, cvvVerificationSEnabled?: boolean | null, cvvVerificationUEnabled?: boolean | null, followPartnerCvvSettings?: boolean | null, avsRule?: string | null, followPartnerAvsSettings?: boolean | null, accountUpdaterEnrolled?: boolean | null);
5993
6006
  }
5994
6007
  /**
5995
6008
  * Models a response for a single merchant profile.
@@ -6244,14 +6257,27 @@ export declare class MerchantProfileResponse {
6244
6257
  * declined.
6245
6258
  */
6246
6259
  cvvVerificationUEnabled: boolean | null;
6260
+ /**
6261
+ * That the merchant follows the partner's CVV settings.
6262
+ */
6263
+ followPartnerCvvSettings: boolean | null;
6247
6264
  /**
6248
6265
  * The AVS (Address Verification Service) rule to apply. Allowed values are
6249
6266
  * 'allow_all', 'require_full_match', 'require_zip_match',
6250
6267
  * 'require_address_match'. If avsRule is empty, then merchant follows partner
6251
- * setting
6268
+ * setting.
6252
6269
  */
6253
6270
  avsRule: string | null;
6254
- constructor(success?: boolean | null, error?: string | null, responseDescription?: string | null, test?: boolean | null, merchantId?: string | null, bankMid?: string | null, companyName?: string | null, dbaName?: string | null, invoiceName?: string | null, contactName?: string | null, contactNumber?: string | null, locationName?: string | null, storeNumber?: string | null, partnerRef?: string | null, timeZone?: string | null, batchCloseTime?: string | null, terminalUpdateTime?: string | null, autoBatchClose?: boolean | null, disableBatchEmails?: boolean | null, pinEnabled?: boolean | null, cashBackEnabled?: boolean | null, storeAndForwardEnabled?: boolean | null, partialAuthEnabled?: boolean | null, splitBankAccountsEnabled?: boolean | null, storeAndForwardFloorLimit?: string | null, publicKey?: string | null, status?: string | null, cashDiscountEnabled?: boolean | null, surveyTimeout?: number | null, cooldownTimeout?: number | null, tipEnabled?: boolean | null, promptForTip?: boolean | null, tipDefaults?: string[] | null, cashbackPresets?: string[] | null, ebtEnabled?: boolean | null, freeRangeRefundsEnabled?: boolean | null, pinBypassEnabled?: boolean | null, giftCardsDisabled?: boolean | null, tcDisabled?: boolean | null, digitalSignaturesEnabled?: boolean | null, digitalSignatureReversal?: boolean | null, billingAddress?: Address | null, shippingAddress?: Address | null, visa?: boolean | null, masterCard?: boolean | null, amex?: boolean | null, discover?: boolean | null, jcb?: boolean | null, unionPay?: boolean | null, contactlessEmv?: boolean | null, manualEntryEnabled?: boolean | null, manualEntryPromptZip?: boolean | null, manualEntryPromptStreetNumber?: boolean | null, gatewayOnly?: boolean | null, bankAccounts?: BankAccount[] | null, passthroughSurchargeEnabled?: boolean | null, cvvVerificationEnabled?: boolean | null, cvvVerificationNEnabled?: boolean | null, cvvVerificationPEnabled?: boolean | null, cvvVerificationSEnabled?: boolean | null, cvvVerificationUEnabled?: boolean | null, avsRule?: string | null);
6271
+ /**
6272
+ * That the merchant follows the partner's AVS settings.
6273
+ */
6274
+ followPartnerAvsSettings: boolean | null;
6275
+ /**
6276
+ * Flag indicating whether or not account updater is enrolled. Note that only
6277
+ * merchant's whose partner is enrolled will be processed by the account updater.
6278
+ */
6279
+ accountUpdaterEnrolled: boolean | null;
6280
+ constructor(success?: boolean | null, error?: string | null, responseDescription?: string | null, test?: boolean | null, merchantId?: string | null, bankMid?: string | null, companyName?: string | null, dbaName?: string | null, invoiceName?: string | null, contactName?: string | null, contactNumber?: string | null, locationName?: string | null, storeNumber?: string | null, partnerRef?: string | null, timeZone?: string | null, batchCloseTime?: string | null, terminalUpdateTime?: string | null, autoBatchClose?: boolean | null, disableBatchEmails?: boolean | null, pinEnabled?: boolean | null, cashBackEnabled?: boolean | null, storeAndForwardEnabled?: boolean | null, partialAuthEnabled?: boolean | null, splitBankAccountsEnabled?: boolean | null, storeAndForwardFloorLimit?: string | null, publicKey?: string | null, status?: string | null, cashDiscountEnabled?: boolean | null, surveyTimeout?: number | null, cooldownTimeout?: number | null, tipEnabled?: boolean | null, promptForTip?: boolean | null, tipDefaults?: string[] | null, cashbackPresets?: string[] | null, ebtEnabled?: boolean | null, freeRangeRefundsEnabled?: boolean | null, pinBypassEnabled?: boolean | null, giftCardsDisabled?: boolean | null, tcDisabled?: boolean | null, digitalSignaturesEnabled?: boolean | null, digitalSignatureReversal?: boolean | null, billingAddress?: Address | null, shippingAddress?: Address | null, visa?: boolean | null, masterCard?: boolean | null, amex?: boolean | null, discover?: boolean | null, jcb?: boolean | null, unionPay?: boolean | null, contactlessEmv?: boolean | null, manualEntryEnabled?: boolean | null, manualEntryPromptZip?: boolean | null, manualEntryPromptStreetNumber?: boolean | null, gatewayOnly?: boolean | null, bankAccounts?: BankAccount[] | null, passthroughSurchargeEnabled?: boolean | null, cvvVerificationEnabled?: boolean | null, cvvVerificationNEnabled?: boolean | null, cvvVerificationPEnabled?: boolean | null, cvvVerificationSEnabled?: boolean | null, cvvVerificationUEnabled?: boolean | null, followPartnerCvvSettings?: boolean | null, avsRule?: string | null, followPartnerAvsSettings?: boolean | null, accountUpdaterEnrolled?: boolean | null);
6255
6281
  }
6256
6282
  /**
6257
6283
  * Models meta data about a merchant bank account.
package/lib/src/models.js CHANGED
@@ -4639,7 +4639,7 @@ exports.Address = Address;
4639
4639
  */
4640
4640
  class MerchantProfile {
4641
4641
  // Constructor with default values for optional fields
4642
- constructor(timeout = null, test = null, merchantId = null, bankMid = null, companyName = null, dbaName = null, invoiceName = null, contactName = null, contactNumber = null, locationName = null, storeNumber = null, partnerRef = null, timeZone = null, batchCloseTime = null, terminalUpdateTime = null, autoBatchClose = null, disableBatchEmails = null, pinEnabled = null, cashBackEnabled = null, storeAndForwardEnabled = null, partialAuthEnabled = null, splitBankAccountsEnabled = null, storeAndForwardFloorLimit = null, publicKey = null, status = null, cashDiscountEnabled = null, surveyTimeout = null, cooldownTimeout = null, tipEnabled = null, promptForTip = null, tipDefaults = null, cashbackPresets = null, ebtEnabled = null, freeRangeRefundsEnabled = null, pinBypassEnabled = null, giftCardsDisabled = null, tcDisabled = null, digitalSignaturesEnabled = null, digitalSignatureReversal = null, billingAddress = null, shippingAddress = null, visa = null, masterCard = null, amex = null, discover = null, jcb = null, unionPay = null, contactlessEmv = null, manualEntryEnabled = null, manualEntryPromptZip = null, manualEntryPromptStreetNumber = null, gatewayOnly = null, bankAccounts = null, passthroughSurchargeEnabled = null, cvvVerificationEnabled = null, cvvVerificationNEnabled = null, cvvVerificationPEnabled = null, cvvVerificationSEnabled = null, cvvVerificationUEnabled = null, avsRule = null) {
4642
+ constructor(timeout = null, test = null, merchantId = null, bankMid = null, companyName = null, dbaName = null, invoiceName = null, contactName = null, contactNumber = null, locationName = null, storeNumber = null, partnerRef = null, timeZone = null, batchCloseTime = null, terminalUpdateTime = null, autoBatchClose = null, disableBatchEmails = null, pinEnabled = null, cashBackEnabled = null, storeAndForwardEnabled = null, partialAuthEnabled = null, splitBankAccountsEnabled = null, storeAndForwardFloorLimit = null, publicKey = null, status = null, cashDiscountEnabled = null, surveyTimeout = null, cooldownTimeout = null, tipEnabled = null, promptForTip = null, tipDefaults = null, cashbackPresets = null, ebtEnabled = null, freeRangeRefundsEnabled = null, pinBypassEnabled = null, giftCardsDisabled = null, tcDisabled = null, digitalSignaturesEnabled = null, digitalSignatureReversal = null, billingAddress = null, shippingAddress = null, visa = null, masterCard = null, amex = null, discover = null, jcb = null, unionPay = null, contactlessEmv = null, manualEntryEnabled = null, manualEntryPromptZip = null, manualEntryPromptStreetNumber = null, gatewayOnly = null, bankAccounts = null, passthroughSurchargeEnabled = null, cvvVerificationEnabled = null, cvvVerificationNEnabled = null, cvvVerificationPEnabled = null, cvvVerificationSEnabled = null, cvvVerificationUEnabled = null, followPartnerCvvSettings = null, avsRule = null, followPartnerAvsSettings = null, accountUpdaterEnrolled = null) {
4643
4643
  /**
4644
4644
  * The request timeout in seconds.
4645
4645
  */
@@ -4881,13 +4881,26 @@ class MerchantProfile {
4881
4881
  * declined.
4882
4882
  */
4883
4883
  this.cvvVerificationUEnabled = null;
4884
+ /**
4885
+ * That the merchant follows the partner's CVV settings.
4886
+ */
4887
+ this.followPartnerCvvSettings = null;
4884
4888
  /**
4885
4889
  * The AVS (Address Verification Service) rule to apply. Allowed values are
4886
4890
  * 'allow_all', 'require_full_match', 'require_zip_match',
4887
4891
  * 'require_address_match'. If avsRule is empty, then merchant follows partner
4888
- * setting
4892
+ * setting.
4889
4893
  */
4890
4894
  this.avsRule = null;
4895
+ /**
4896
+ * That the merchant follows the partner's AVS settings.
4897
+ */
4898
+ this.followPartnerAvsSettings = null;
4899
+ /**
4900
+ * Flag indicating whether or not account updater is enrolled. Note that only
4901
+ * merchant's whose partner is enrolled will be processed by the account updater.
4902
+ */
4903
+ this.accountUpdaterEnrolled = null;
4891
4904
  this.timeout = timeout;
4892
4905
  this.test = test;
4893
4906
  this.merchantId = merchantId;
@@ -4947,7 +4960,10 @@ class MerchantProfile {
4947
4960
  this.cvvVerificationPEnabled = cvvVerificationPEnabled;
4948
4961
  this.cvvVerificationSEnabled = cvvVerificationSEnabled;
4949
4962
  this.cvvVerificationUEnabled = cvvVerificationUEnabled;
4963
+ this.followPartnerCvvSettings = followPartnerCvvSettings;
4950
4964
  this.avsRule = avsRule;
4965
+ this.followPartnerAvsSettings = followPartnerAvsSettings;
4966
+ this.accountUpdaterEnrolled = accountUpdaterEnrolled;
4951
4967
  }
4952
4968
  }
4953
4969
  exports.MerchantProfile = MerchantProfile;
@@ -4956,7 +4972,7 @@ exports.MerchantProfile = MerchantProfile;
4956
4972
  */
4957
4973
  class MerchantProfileResponse {
4958
4974
  // Constructor with default values for optional fields
4959
- constructor(success = null, error = null, responseDescription = null, test = null, merchantId = null, bankMid = null, companyName = null, dbaName = null, invoiceName = null, contactName = null, contactNumber = null, locationName = null, storeNumber = null, partnerRef = null, timeZone = null, batchCloseTime = null, terminalUpdateTime = null, autoBatchClose = null, disableBatchEmails = null, pinEnabled = null, cashBackEnabled = null, storeAndForwardEnabled = null, partialAuthEnabled = null, splitBankAccountsEnabled = null, storeAndForwardFloorLimit = null, publicKey = null, status = null, cashDiscountEnabled = null, surveyTimeout = null, cooldownTimeout = null, tipEnabled = null, promptForTip = null, tipDefaults = null, cashbackPresets = null, ebtEnabled = null, freeRangeRefundsEnabled = null, pinBypassEnabled = null, giftCardsDisabled = null, tcDisabled = null, digitalSignaturesEnabled = null, digitalSignatureReversal = null, billingAddress = null, shippingAddress = null, visa = null, masterCard = null, amex = null, discover = null, jcb = null, unionPay = null, contactlessEmv = null, manualEntryEnabled = null, manualEntryPromptZip = null, manualEntryPromptStreetNumber = null, gatewayOnly = null, bankAccounts = null, passthroughSurchargeEnabled = null, cvvVerificationEnabled = null, cvvVerificationNEnabled = null, cvvVerificationPEnabled = null, cvvVerificationSEnabled = null, cvvVerificationUEnabled = null, avsRule = null) {
4975
+ constructor(success = null, error = null, responseDescription = null, test = null, merchantId = null, bankMid = null, companyName = null, dbaName = null, invoiceName = null, contactName = null, contactNumber = null, locationName = null, storeNumber = null, partnerRef = null, timeZone = null, batchCloseTime = null, terminalUpdateTime = null, autoBatchClose = null, disableBatchEmails = null, pinEnabled = null, cashBackEnabled = null, storeAndForwardEnabled = null, partialAuthEnabled = null, splitBankAccountsEnabled = null, storeAndForwardFloorLimit = null, publicKey = null, status = null, cashDiscountEnabled = null, surveyTimeout = null, cooldownTimeout = null, tipEnabled = null, promptForTip = null, tipDefaults = null, cashbackPresets = null, ebtEnabled = null, freeRangeRefundsEnabled = null, pinBypassEnabled = null, giftCardsDisabled = null, tcDisabled = null, digitalSignaturesEnabled = null, digitalSignatureReversal = null, billingAddress = null, shippingAddress = null, visa = null, masterCard = null, amex = null, discover = null, jcb = null, unionPay = null, contactlessEmv = null, manualEntryEnabled = null, manualEntryPromptZip = null, manualEntryPromptStreetNumber = null, gatewayOnly = null, bankAccounts = null, passthroughSurchargeEnabled = null, cvvVerificationEnabled = null, cvvVerificationNEnabled = null, cvvVerificationPEnabled = null, cvvVerificationSEnabled = null, cvvVerificationUEnabled = null, followPartnerCvvSettings = null, avsRule = null, followPartnerAvsSettings = null, accountUpdaterEnrolled = null) {
4960
4976
  /**
4961
4977
  * Whether or not the request succeeded.
4962
4978
  */
@@ -5206,13 +5222,26 @@ class MerchantProfileResponse {
5206
5222
  * declined.
5207
5223
  */
5208
5224
  this.cvvVerificationUEnabled = null;
5225
+ /**
5226
+ * That the merchant follows the partner's CVV settings.
5227
+ */
5228
+ this.followPartnerCvvSettings = null;
5209
5229
  /**
5210
5230
  * The AVS (Address Verification Service) rule to apply. Allowed values are
5211
5231
  * 'allow_all', 'require_full_match', 'require_zip_match',
5212
5232
  * 'require_address_match'. If avsRule is empty, then merchant follows partner
5213
- * setting
5233
+ * setting.
5214
5234
  */
5215
5235
  this.avsRule = null;
5236
+ /**
5237
+ * That the merchant follows the partner's AVS settings.
5238
+ */
5239
+ this.followPartnerAvsSettings = null;
5240
+ /**
5241
+ * Flag indicating whether or not account updater is enrolled. Note that only
5242
+ * merchant's whose partner is enrolled will be processed by the account updater.
5243
+ */
5244
+ this.accountUpdaterEnrolled = null;
5216
5245
  this.success = success;
5217
5246
  this.error = error;
5218
5247
  this.responseDescription = responseDescription;
@@ -5274,7 +5303,10 @@ class MerchantProfileResponse {
5274
5303
  this.cvvVerificationPEnabled = cvvVerificationPEnabled;
5275
5304
  this.cvvVerificationSEnabled = cvvVerificationSEnabled;
5276
5305
  this.cvvVerificationUEnabled = cvvVerificationUEnabled;
5306
+ this.followPartnerCvvSettings = followPartnerCvvSettings;
5277
5307
  this.avsRule = avsRule;
5308
+ this.followPartnerAvsSettings = followPartnerAvsSettings;
5309
+ this.accountUpdaterEnrolled = accountUpdaterEnrolled;
5278
5310
  }
5279
5311
  }
5280
5312
  exports.MerchantProfileResponse = MerchantProfileResponse;