forked from mirrors/homebox
9361997a42
* new reporting service * API route * code gen * get tsv export from tools page * fix naming
54 lines
1.5 KiB
TypeScript
54 lines
1.5 KiB
TypeScript
import { BaseAPI } from "./base";
|
|
import { ItemsApi } from "./classes/items";
|
|
import { LabelsApi } from "./classes/labels";
|
|
import { LocationsApi } from "./classes/locations";
|
|
import { GroupApi } from "./classes/group";
|
|
import { UserApi } from "./classes/users";
|
|
import { ActionsAPI } from "./classes/actions";
|
|
import { StatsAPI } from "./classes/stats";
|
|
import { AssetsApi } from "./classes/assets";
|
|
import { ReportsAPI } from "./classes/reports";
|
|
import { Requests } from "~~/lib/requests";
|
|
|
|
export class UserClient extends BaseAPI {
|
|
locations: LocationsApi;
|
|
labels: LabelsApi;
|
|
items: ItemsApi;
|
|
group: GroupApi;
|
|
user: UserApi;
|
|
actions: ActionsAPI;
|
|
stats: StatsAPI;
|
|
assets: AssetsApi;
|
|
reports: ReportsAPI;
|
|
|
|
constructor(requests: Requests, attachmentToken: string) {
|
|
super(requests, attachmentToken);
|
|
|
|
this.locations = new LocationsApi(requests);
|
|
this.labels = new LabelsApi(requests);
|
|
this.items = new ItemsApi(requests, attachmentToken);
|
|
this.group = new GroupApi(requests);
|
|
this.user = new UserApi(requests);
|
|
this.actions = new ActionsAPI(requests);
|
|
this.stats = new StatsAPI(requests);
|
|
this.assets = new AssetsApi(requests);
|
|
this.reports = new ReportsAPI(requests);
|
|
|
|
Object.freeze(this);
|
|
}
|
|
|
|
/** @deprecated use this.user.self() */
|
|
public self() {
|
|
return this.user.self();
|
|
}
|
|
|
|
/** @deprecated use this.user.logout() */
|
|
public logout() {
|
|
return this.user.logout();
|
|
}
|
|
|
|
/** @deprecated use this.user.delete() */
|
|
public deleteAccount() {
|
|
return this.user.delete();
|
|
}
|
|
}
|