@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.
@@ -5982,7 +5982,27 @@ export declare class MerchantProfile {
5982
5982
  * declined.
5983
5983
  */
5984
5984
  cvvVerificationUEnabled: boolean | null;
5985
- 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);
5985
+ /**
5986
+ * That the merchant follows the partner's CVV settings.
5987
+ */
5988
+ followPartnerCvvSettings: boolean | null;
5989
+ /**
5990
+ * The AVS (Address Verification Service) rule to apply. Allowed values are
5991
+ * 'allow_all', 'require_full_match', 'require_zip_match',
5992
+ * 'require_address_match'. If avsRule is empty, then merchant follows partner
5993
+ * setting
5994
+ */
5995
+ 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);
5986
6006
  }
5987
6007
  /**
5988
6008
  * Models a response for a single merchant profile.
@@ -6237,7 +6257,27 @@ export declare class MerchantProfileResponse {
6237
6257
  * declined.
6238
6258
  */
6239
6259
  cvvVerificationUEnabled: boolean | null;
6240
- 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);
6260
+ /**
6261
+ * That the merchant follows the partner's CVV settings.
6262
+ */
6263
+ followPartnerCvvSettings: boolean | null;
6264
+ /**
6265
+ * The AVS (Address Verification Service) rule to apply. Allowed values are
6266
+ * 'allow_all', 'require_full_match', 'require_zip_match',
6267
+ * 'require_address_match'. If avsRule is empty, then merchant follows partner
6268
+ * setting
6269
+ */
6270
+ 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);
6241
6281
  }
6242
6282
  /**
6243
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) {
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,6 +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;
4888
+ /**
4889
+ * The AVS (Address Verification Service) rule to apply. Allowed values are
4890
+ * 'allow_all', 'require_full_match', 'require_zip_match',
4891
+ * 'require_address_match'. If avsRule is empty, then merchant follows partner
4892
+ * setting
4893
+ */
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;
4884
4904
  this.timeout = timeout;
4885
4905
  this.test = test;
4886
4906
  this.merchantId = merchantId;
@@ -4940,6 +4960,10 @@ class MerchantProfile {
4940
4960
  this.cvvVerificationPEnabled = cvvVerificationPEnabled;
4941
4961
  this.cvvVerificationSEnabled = cvvVerificationSEnabled;
4942
4962
  this.cvvVerificationUEnabled = cvvVerificationUEnabled;
4963
+ this.followPartnerCvvSettings = followPartnerCvvSettings;
4964
+ this.avsRule = avsRule;
4965
+ this.followPartnerAvsSettings = followPartnerAvsSettings;
4966
+ this.accountUpdaterEnrolled = accountUpdaterEnrolled;
4943
4967
  }
4944
4968
  }
4945
4969
  exports.MerchantProfile = MerchantProfile;
@@ -4948,7 +4972,7 @@ exports.MerchantProfile = MerchantProfile;
4948
4972
  */
4949
4973
  class MerchantProfileResponse {
4950
4974
  // Constructor with default values for optional fields
4951
- 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) {
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) {
4952
4976
  /**
4953
4977
  * Whether or not the request succeeded.
4954
4978
  */
@@ -5198,6 +5222,26 @@ class MerchantProfileResponse {
5198
5222
  * declined.
5199
5223
  */
5200
5224
  this.cvvVerificationUEnabled = null;
5225
+ /**
5226
+ * That the merchant follows the partner's CVV settings.
5227
+ */
5228
+ this.followPartnerCvvSettings = null;
5229
+ /**
5230
+ * The AVS (Address Verification Service) rule to apply. Allowed values are
5231
+ * 'allow_all', 'require_full_match', 'require_zip_match',
5232
+ * 'require_address_match'. If avsRule is empty, then merchant follows partner
5233
+ * setting
5234
+ */
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;
5201
5245
  this.success = success;
5202
5246
  this.error = error;
5203
5247
  this.responseDescription = responseDescription;
@@ -5259,6 +5303,10 @@ class MerchantProfileResponse {
5259
5303
  this.cvvVerificationPEnabled = cvvVerificationPEnabled;
5260
5304
  this.cvvVerificationSEnabled = cvvVerificationSEnabled;
5261
5305
  this.cvvVerificationUEnabled = cvvVerificationUEnabled;
5306
+ this.followPartnerCvvSettings = followPartnerCvvSettings;
5307
+ this.avsRule = avsRule;
5308
+ this.followPartnerAvsSettings = followPartnerAvsSettings;
5309
+ this.accountUpdaterEnrolled = accountUpdaterEnrolled;
5262
5310
  }
5263
5311
  }
5264
5312
  exports.MerchantProfileResponse = MerchantProfileResponse;