fcc5d99d40
* add vitest * initialize lib w/ tests * move to dev dep * run tests in CI * update file names * move api folder to lib * move api and api types to same folder * update generator outpath * rm husky * i guess i _did_ need those types * reorg types * extract validators into testable components * (WIP) start composable testing * fix import type * fix linter complaint * simplify icon type def * fix linter errors (maybe?) * rename client file for sorting
99 lines
3.7 KiB
TypeScript
99 lines
3.7 KiB
TypeScript
import { RecipeAPI } from "./user/recipes";
|
|
import { UserApi } from "./user/users";
|
|
import { GroupAPI } from "./user/groups";
|
|
import { BackupAPI } from "./user/backups";
|
|
import { UploadFile } from "./user/upload";
|
|
import { CategoriesAPI } from "./user/organizer-categories";
|
|
import { TagsAPI } from "./user/organizer-tags";
|
|
import { UtilsAPI } from "./user/utils";
|
|
import { FoodAPI } from "./user/recipe-foods";
|
|
import { UnitAPI } from "./user/recipe-units";
|
|
import { CookbookAPI } from "./user/group-cookbooks";
|
|
import { WebhooksAPI } from "./user/group-webhooks";
|
|
import { RegisterAPI } from "./user/user-registration";
|
|
import { MealPlanAPI } from "./user/group-mealplan";
|
|
import { EmailAPI } from "./user/email";
|
|
import { BulkActionsAPI } from "./user/recipe-bulk-actions";
|
|
import { GroupServerTaskAPI } from "./user/group-tasks";
|
|
import { ToolsApi } from "./user/organizer-tools";
|
|
import { GroupMigrationApi } from "./user/group-migrations";
|
|
import { GroupReportsApi } from "./user/group-reports";
|
|
import { ShoppingApi } from "./user/group-shopping-lists";
|
|
import { MultiPurposeLabelsApi } from "./user/group-multiple-purpose-labels";
|
|
import { GroupEventNotifierApi } from "./user/group-event-notifier";
|
|
import { MealPlanRulesApi } from "./user/group-mealplan-rules";
|
|
import { GroupDataSeederApi } from "./user/group-seeder";
|
|
import { OcrAPI } from "./user/ocr";
|
|
import { ApiRequestInstance } from "~/lib/api/types/non-generated";
|
|
|
|
export class UserApiClient {
|
|
public recipes: RecipeAPI;
|
|
public users: UserApi;
|
|
public groups: GroupAPI;
|
|
public backups: BackupAPI;
|
|
public categories: CategoriesAPI;
|
|
public tags: TagsAPI;
|
|
public utils: UtilsAPI;
|
|
public foods: FoodAPI;
|
|
public units: UnitAPI;
|
|
public cookbooks: CookbookAPI;
|
|
public groupWebhooks: WebhooksAPI;
|
|
public register: RegisterAPI;
|
|
public mealplans: MealPlanAPI;
|
|
public mealplanRules: MealPlanRulesApi;
|
|
public email: EmailAPI;
|
|
public bulk: BulkActionsAPI;
|
|
public groupMigration: GroupMigrationApi;
|
|
public groupReports: GroupReportsApi;
|
|
public grouperServerTasks: GroupServerTaskAPI;
|
|
public tools: ToolsApi;
|
|
public shopping: ShoppingApi;
|
|
public multiPurposeLabels: MultiPurposeLabelsApi;
|
|
public groupEventNotifier: GroupEventNotifierApi;
|
|
public upload: UploadFile;
|
|
public seeders: GroupDataSeederApi;
|
|
public ocr: OcrAPI;
|
|
|
|
constructor(requests: ApiRequestInstance) {
|
|
// Recipes
|
|
this.recipes = new RecipeAPI(requests);
|
|
this.categories = new CategoriesAPI(requests);
|
|
this.tags = new TagsAPI(requests);
|
|
this.units = new UnitAPI(requests);
|
|
this.foods = new FoodAPI(requests);
|
|
this.tools = new ToolsApi(requests);
|
|
|
|
// Users
|
|
this.users = new UserApi(requests);
|
|
this.groups = new GroupAPI(requests);
|
|
this.cookbooks = new CookbookAPI(requests);
|
|
this.groupWebhooks = new WebhooksAPI(requests);
|
|
this.register = new RegisterAPI(requests);
|
|
this.mealplans = new MealPlanAPI(requests);
|
|
this.mealplanRules = new MealPlanRulesApi(requests);
|
|
this.grouperServerTasks = new GroupServerTaskAPI(requests);
|
|
|
|
// Group
|
|
this.groupMigration = new GroupMigrationApi(requests);
|
|
this.groupReports = new GroupReportsApi(requests);
|
|
this.shopping = new ShoppingApi(requests);
|
|
this.multiPurposeLabels = new MultiPurposeLabelsApi(requests);
|
|
this.seeders = new GroupDataSeederApi(requests);
|
|
|
|
// Admin
|
|
this.backups = new BackupAPI(requests);
|
|
|
|
// Utils
|
|
this.upload = new UploadFile(requests);
|
|
this.utils = new UtilsAPI(requests);
|
|
|
|
this.email = new EmailAPI(requests);
|
|
this.bulk = new BulkActionsAPI(requests);
|
|
this.groupEventNotifier = new GroupEventNotifierApi(requests);
|
|
|
|
// ocr
|
|
this.ocr = new OcrAPI(requests);
|
|
|
|
Object.freeze(this);
|
|
}
|
|
}
|