mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-04 08:47:23 +08:00
28 lines
596 B
JavaScript
28 lines
596 B
JavaScript
/**
|
|
* Name of the Redux store module.
|
|
*
|
|
* Used by: Reducer, Selector, Index
|
|
*
|
|
* @type {string}
|
|
*/
|
|
export const STORE_NAME = 'wc/paypal/onboarding';
|
|
|
|
/**
|
|
* REST path to hydrate data of this module by loading data from the WP DB..
|
|
*
|
|
* Used by: Resolvers
|
|
* See: OnboardingRestEndpoint.php
|
|
*
|
|
* @type {string}
|
|
*/
|
|
export const REST_HYDRATE_PATH = '/wc/v3/wc_paypal/onboarding';
|
|
|
|
/**
|
|
* REST path to persist data of this module to the WP DB.
|
|
*
|
|
* Used by: Controls
|
|
* See: OnboardingRestEndpoint.php
|
|
*
|
|
* @type {string}
|
|
*/
|
|
export const REST_PERSIST_PATH = '/wc/v3/wc_paypal/onboarding';
|