mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-26 01:14:19 +08:00
WP Debugging plugin has been replaced with setting WP_DEBUG and SCRIPT_DEBUG constantr to true. This config allows to overcome localization issues for some payment methods.
27 lines
1 KiB
TypeScript
27 lines
1 KiB
TypeScript
export {
|
|
shopSettings,
|
|
shippingZones,
|
|
flatRate,
|
|
freeShipping,
|
|
guests,
|
|
customers,
|
|
taxSettings,
|
|
coupons,
|
|
products,
|
|
} from '@inpsyde/playwright-utils/build/e2e/plugins/woocommerce';
|
|
export * from './cards';
|
|
export * from './gateways';
|
|
export * from './merchants';
|
|
export * from './orders';
|
|
export * from './woocommerce-config';
|
|
export * from './pcp-config';
|
|
export * from './types';
|
|
|
|
export { default as pcpPlugin } from './pcp-plugin.json';
|
|
export { default as disableNoncePlugin } from './disable-nonce-plugin.json';
|
|
export { default as enableVaultV2Plugin } from './enable-vault-v2-plugin.json';
|
|
export { default as paypalButtonColors } from './paypal-button-colors.json';
|
|
export { default as subscriptionsPlugin } from './woocommerce-subscriptions-plugin.json';
|
|
export { default as disableWcSetupWizard } from './disable-wc-setup-wizard-plugin.json';
|
|
export { default as disableGutenbergWelcomeGuide } from './disable-gutenberg-welcome-guide-plugin.json';
|
|
export { default as disableNewUi } from './disable-new-ui.json';
|