Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /**
* Admin Endpoints Index
* Re-exports all admin endpoint modules
*/
export { adminOperationsEndpoints } from './operations';
export { adminContentEndpoints } from './content';
export { adminCustomersEndpoints } from './customers';
export { adminSupportEndpoints } from './support';
export { adminPromotionsEndpoints } from './promotions';
export { adminAffiliatesEndpoints } from './affiliates';
export { adminPricingEndpoints } from './pricing';
export { adminSegmentsEndpoints } from './segments';
export { adminWorkflowsEndpoints } from './workflows';
export { adminAnalyticsEndpoints } from './analytics';
// New admin endpoints
export { adminMonitoringEndpoints } from './monitoring';
export { adminDevToolsEndpoints } from './dev-tools';
export { adminSecurityEndpoints } from './security';
export { adminApiDocsEndpoints } from './api-docs-admin';
export { adminCacheEndpoints } from './cache';
export { adminInventoryEndpoints } from './inventory';
export { adminCronEndpoints } from './cron';
|