export const clearManagerCache = async (cacheKey: string, options: Options) => {
  if (options.cache && options.cache.fileExists(cacheKey)) {
    await options.cache.remove(cacheKey);
    return true;
  }