@bigcommerce/checkout-sdk 1.755.2 → 1.756.0

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.
@@ -2243,6 +2243,28 @@ declare interface BraintreePaymentInitializeOptions {
2243
2243
  * A callback for displaying error popup. This callback requires error object as parameter.
2244
2244
  */
2245
2245
  onError?(error: unknown): void;
2246
+ /**
2247
+ * A list of card brands that are not supported by the merchant.
2248
+ *
2249
+ * List of supported brands by braintree can be found here: https://braintree.github.io/braintree-web/current/module-braintree-web_hosted-fields.html#~field
2250
+ * search for `supportedCardBrands` property.
2251
+ *
2252
+ * List of credit cards brands:
2253
+ * 'visa',
2254
+ * 'mastercard',
2255
+ * 'american-express',
2256
+ * 'diners-club',
2257
+ * 'discover',
2258
+ * 'jcb',
2259
+ * 'union-pay',
2260
+ * 'maestro',
2261
+ * 'elo',
2262
+ * 'mir',
2263
+ * 'hiper',
2264
+ * 'hipercard'
2265
+ *
2266
+ * */
2267
+ unsupportedCardBrands?: string[];
2246
2268
  }
2247
2269
 
2248
2270
  declare interface BraintreePaypalButtonInitializeOptions {