mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
26 lines
552 B
JavaScript
26 lines
552 B
JavaScript
/**
|
|
* Name of the module-store in the main Redux store.
|
|
*
|
|
* Helps to isolate data, used by reducer and selectors.
|
|
*
|
|
* @type {string}
|
|
*/
|
|
export const STORE_NAME = 'wc/paypal/common';
|
|
|
|
/**
|
|
* REST path to hydrate data of this module by loading data from the WP DB..
|
|
*
|
|
* Used by resolvers.
|
|
*
|
|
* @type {string}
|
|
*/
|
|
export const REST_HYDRATE_PATH = '/wc/v3/wc_paypal/common';
|
|
|
|
/**
|
|
* REST path to persist data of this module to the WP DB.
|
|
*
|
|
* Used by controls.
|
|
*
|
|
* @type {string}
|
|
*/
|
|
export const REST_PERSIST_PATH = '/wc/v3/wc_paypal/common';
|