mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 09:08:09 +08:00
39 lines
829 B
JavaScript
39 lines
829 B
JavaScript
/**
|
|
* Name of the module-store in the main Redux store.
|
|
* Helps to isolate data.
|
|
*
|
|
* Used by: Reducer, Selector, Index
|
|
*
|
|
* @type {string}
|
|
*/
|
|
export const STORE_KEY = '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 = '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 = 'onboarding';
|
|
|
|
/**
|
|
* REST path to perform the manual connection check, using client ID and secret,
|
|
*
|
|
* Used by: Controls
|
|
* See: ConnectManualRestEndpoint.php
|
|
*
|
|
* @type {string}
|
|
*/
|
|
export const REST_MANUAL_CONNECTION_PATH = 'connect_manual';
|