mirror of
https://github.com/mealie-recipes/mealie.git
synced 2024-12-26 05:51:21 -08:00
20 lines
677 B
TypeScript
20 lines
677 B
TypeScript
import { BaseCRUDAPI } from "../base/base-clients";
|
|
import { CreatePlanEntry, CreateRandomEntry, ReadPlanEntry, UpdatePlanEntry } from "~/lib/api/types/meal-plan";
|
|
|
|
const prefix = "/api";
|
|
|
|
const routes = {
|
|
mealplan: `${prefix}/households/mealplans`,
|
|
random: `${prefix}/households/mealplans/random`,
|
|
mealplanId: (id: string | number) => `${prefix}/households/mealplans/${id}`,
|
|
};
|
|
|
|
export class MealPlanAPI extends BaseCRUDAPI<CreatePlanEntry, ReadPlanEntry, UpdatePlanEntry> {
|
|
baseRoute = routes.mealplan;
|
|
itemRoute = routes.mealplanId;
|
|
|
|
async setRandom(payload: CreateRandomEntry) {
|
|
return await this.requests.post<ReadPlanEntry>(routes.random, payload);
|
|
}
|
|
}
|