paypal-checkout
Version:
PayPal Checkout components, for integrating checkout products.
23 lines (19 loc) • 780 B
JavaScript
/* @flow */
/* eslint unicorn/filename-case: 0, import/unambiguous: 0, import/no-commonjs: 0 */
const globals = require('./globals');
module.exports = {
'buttons': {
entry: './src/index',
staticNamespace: '__paypal_checkout__',
configQuery: `
clientConfiguration {
paypalMerchantConfiguration(merchantId: $clientID, locale: $country) {
creditCard {
isPayPalBranded
supportedCardBrands
}
}
}`,
globals
}
};