aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/types/anime.ts10
-rw-r--r--test/animeEpisodeSrcs.test.ts2
2 files changed, 6 insertions, 6 deletions
diff --git a/src/types/anime.ts b/src/types/anime.ts
index c23acaa..52bf13a 100644
--- a/src/types/anime.ts
+++ b/src/types/anime.ts
@@ -114,18 +114,18 @@ export type AnimeCategories =
| "completed";
export type AnimeServers =
- | "vidstreaming"
+ | "hd-1"
+ | "hd-2"
| "megacloud"
| "streamsb"
- | "streamtape"
- | "vidcloud";
+ | "streamtape";
export enum Servers {
- VidStreaming = "vidstreaming",
+ VidStreaming = "hd-1",
MegaCloud = "megacloud",
StreamSB = "streamsb",
StreamTape = "streamtape",
- VidCloud = "vidcloud",
+ VidCloud = "hd-2",
AsianLoad = "asianload",
GogoCDN = "gogocdn",
MixDrop = "mixdrop",
diff --git a/test/animeEpisodeSrcs.test.ts b/test/animeEpisodeSrcs.test.ts
index 3aed842..1c6f160 100644
--- a/test/animeEpisodeSrcs.test.ts
+++ b/test/animeEpisodeSrcs.test.ts
@@ -4,7 +4,7 @@ import { scrapeAnimeEpisodeSources } from "../src/parsers/index.js";
test("returns anime episode streaming link(s)", async () => {
const data = await scrapeAnimeEpisodeSources(
"steinsgate-3?ep=230",
- "vidstreaming",
+ "hd-1",
"sub"
);