mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
32 lines
507 B
JavaScript
32 lines
507 B
JavaScript
/**
|
|
* Configuration for UI components.
|
|
*
|
|
* @file
|
|
*/
|
|
|
|
/**
|
|
* Onboarding options for StepBusiness
|
|
*
|
|
* @type {Object}
|
|
*/
|
|
export const BUSINESS_TYPES = {
|
|
CASUAL_SELLER: 'casual_seller',
|
|
BUSINESS: 'business',
|
|
};
|
|
|
|
/**
|
|
* Onboarding options for StepProducts
|
|
*
|
|
* @type {Object}
|
|
*/
|
|
export const PRODUCT_TYPES = {
|
|
VIRTUAL: 'virtual',
|
|
PHYSICAL: 'physical',
|
|
SUBSCRIPTIONS: 'subscriptions',
|
|
};
|
|
|
|
export const PAYPAL_PRODUCTS = {
|
|
ACDC: 'PPCP',
|
|
BCDC: 'EXPRESS_CHECKOUT',
|
|
VAULTING: 'ADVANCED_VAULTING',
|
|
};
|