forked from paypal/paypal-checkout-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__sdk__.js
22 lines (19 loc) · 778 Bytes
/
__sdk__.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* @flow */
/* eslint unicorn/filename-case: 0, import/unambiguous: 0, import/no-commonjs: 0 */
let globals = require('./globals');
module.exports = {
'buttons': {
entry: './src/index',
staticNamespace: '__paypal_checkout__',
configQuery: `
clientConfiguration {
paypalMerchantConfiguration(merchantId: $clientID, locale: $country) {
creditCard {
isPayPalBranded
supportedCardBrands
}
}
}`,
globals
}
};