22 lines
432 B
JavaScript
22 lines
432 B
JavaScript
/** @format */
|
|
/**
|
|
* External dependencies
|
|
*/
|
|
import { MINUTE } from '@fresh-data/framework';
|
|
|
|
export const NAMESPACE = '/wc/v4';
|
|
|
|
export const DEFAULT_REQUIREMENT = {
|
|
timeout: 1 * MINUTE,
|
|
freshness: 5 * MINUTE,
|
|
};
|
|
|
|
// WordPress & WooCommerce both set a hard limit of 100 for the per_page parameter
|
|
export const MAX_PER_PAGE = 100;
|
|
|
|
export const QUERY_DEFAULTS = {
|
|
pageSize: 25,
|
|
period: 'month',
|
|
compare: 'previous_year',
|
|
};
|