When you use your axios instance to make api call, assign an id to your cache:
client.get("/your-api/", { id: "your-cache-id" }).then((res) => res.data)
Then if you want to invalidate that cache use:
client.storage.remove("your-cache-id");