| 1 |
import apiFetch from '@wordpress/api-fetch'; |
| 2 |
|
| 3 |
export const prefetchAssistData = async () => |
| 4 |
await apiFetch({ path: 'extendify/v1/auto-launch/prefetch-assist-data' }); |
| 5 |
|
| 6 |
export const postLaunchFunctions = () => |
| 7 |
apiFetch({ |
| 8 |
path: '/extendify/v1/launch/post-launch-functions', |
| 9 |
method: 'POST', |
| 10 |
}); |
| 11 |
|
| 12 |
export const preLaunchFunctions = () => |
| 13 |
apiFetch({ |
| 14 |
path: '/extendify/v1/auto-launch/pre-launch-functions', |
| 15 |
method: 'POST', |
| 16 |
}); |
| 17 |
|