mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
Reason: The constants are also used by the store and are synced to the server. Their use is not isolated to the specific component
13 lines
288 B
JavaScript
13 lines
288 B
JavaScript
export const NAMESPACE = '/wc/v3/wc_paypal';
|
|
export const STORE_NAME = 'wc/paypal';
|
|
|
|
export const BUSINESS_TYPES = {
|
|
CASUAL_SELLER: 'casual_seller',
|
|
BUSINESS: 'business',
|
|
};
|
|
|
|
export const PRODUCT_TYPES = {
|
|
VIRTUAL: 'virtual',
|
|
PHYSICAL: 'physical',
|
|
SUBSCRIPTIONS: 'subscriptions',
|
|
};
|