feat: create bulk insertion for characters

This commit is contained in:
Rafi Arrafif
2026-01-25 10:57:35 +07:00
parent fe10412f1a
commit 11834924e9
12 changed files with 198 additions and 6 deletions

View File

@ -0,0 +1 @@
export const SystemAccountId = "b734b9bc-b4ea-408f-a80e-0a837ce884da";

View File

@ -0,0 +1 @@
export const baseURL = "https://api.jikan.moe/v4";

View File

@ -1,6 +1,8 @@
import { baseURL } from "./baseUrl";
export const getContentReferenceAPI = (malId: number) => {
return {
baseURL: "https://api.jikan.moe/v4",
baseURL,
getMediaFullInfo: `/anime/${malId}/full`,
getMediaCharactersWithVA: `/anime/${malId}/characters`,
};

View File

@ -0,0 +1,8 @@
import { baseURL } from "./baseUrl";
export const getPeopleAPI = (malId: number) => {
return {
baseURL,
getPeopleInfo: `/people/${malId}`,
};
};