forked from mirrors/homebox
de419dc37d
* schema changes * db generate * db migration * add role based middleware * implement attachment token access * generate docs * implement role based auth * replace attachment specific tokens with gen token * run linter * cleanup temporary token implementation
45 lines
1.2 KiB
TypeScript
45 lines
1.2 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 { Requests } from "~~/lib/requests";
|
|
|
|
export class UserClient extends BaseAPI {
|
|
locations: LocationsApi;
|
|
labels: LabelsApi;
|
|
items: ItemsApi;
|
|
group: GroupApi;
|
|
user: UserApi;
|
|
actions: ActionsAPI;
|
|
|
|
constructor(requests: Requests, attachmentToken: string) {
|
|
super(requests, attachmentToken);
|
|
|
|
this.locations = new LocationsApi(requests);
|
|
this.labels = new LabelsApi(requests);
|
|
this.items = new ItemsApi(requests);
|
|
this.group = new GroupApi(requests);
|
|
this.user = new UserApi(requests);
|
|
this.actions = new ActionsAPI(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();
|
|
}
|
|
}
|