mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-29 03:13:45 +08:00
- Add class PayPalConnectionPopup - Refactor connectToSandbox - Add new USA paypal user account
27 lines
564 B
TypeScript
27 lines
564 B
TypeScript
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { PayPalAccount } from './types';
|
|
|
|
const germany: PayPalAccount = {
|
|
email: 'sb-pshsb27001797@personal.example.com',
|
|
password: '#D0:c!DO',
|
|
};
|
|
|
|
const usa: PayPalAccount = {
|
|
email: 'sb-0ijyy37927254@personal.example.com', // old: 'sb-tb1aj26722276@personal.example.com',
|
|
password: 'hckTG7F^', // old: 'Z9+6Az-G',
|
|
};
|
|
|
|
const mexico: PayPalAccount = {
|
|
email: 'sb-z2t6h26996394@personal.example.com',
|
|
password: 'C-cg>?33',
|
|
};
|
|
|
|
export const payPalAccounts: {
|
|
[ key: string ]: PayPalAccount;
|
|
} = {
|
|
germany,
|
|
usa,
|
|
mexico,
|
|
};
|