forked from mirrors/homebox
75c633dcb5
* dummy commit * cleanup workflows * setup and run eslint * add linter to CI * use eslint for formatting * reorder rules * drop editor config
43 lines
985 B
TypeScript
43 lines
985 B
TypeScript
import { BaseAPI, route } from "./base";
|
|
import { ItemsApi } from "./classes/items";
|
|
import { LabelsApi } from "./classes/labels";
|
|
import { LocationsApi } from "./classes/locations";
|
|
import { Requests } from "~~/lib/requests";
|
|
|
|
export type Result<T> = {
|
|
item: T;
|
|
};
|
|
|
|
export type User = {
|
|
name: string;
|
|
email: string;
|
|
isSuperuser: boolean;
|
|
id: number;
|
|
};
|
|
|
|
export class UserApi extends BaseAPI {
|
|
locations: LocationsApi;
|
|
labels: LabelsApi;
|
|
items: ItemsApi;
|
|
constructor(requests: Requests) {
|
|
super(requests);
|
|
|
|
this.locations = new LocationsApi(requests);
|
|
this.labels = new LabelsApi(requests);
|
|
this.items = new ItemsApi(requests);
|
|
|
|
Object.freeze(this);
|
|
}
|
|
|
|
public self() {
|
|
return this.http.get<Result<User>>({ url: route("/users/self") });
|
|
}
|
|
|
|
public logout() {
|
|
return this.http.post<object, void>({ url: route("/users/logout") });
|
|
}
|
|
|
|
public deleteAccount() {
|
|
return this.http.delete<void>({ url: route("/users/self") });
|
|
}
|
|
}
|