2022-10-07 02:54:09 +00:00
|
|
|
import { BaseAPI } from "./base";
|
2022-09-09 22:46:53 +00:00
|
|
|
import { ItemsApi } from "./classes/items";
|
|
|
|
import { LabelsApi } from "./classes/labels";
|
|
|
|
import { LocationsApi } from "./classes/locations";
|
2022-10-07 02:54:09 +00:00
|
|
|
import { GroupApi } from "./classes/group";
|
|
|
|
import { UserApi } from "./classes/users";
|
2022-09-09 22:46:53 +00:00
|
|
|
import { Requests } from "~~/lib/requests";
|
2022-08-31 00:06:57 +00:00
|
|
|
|
2022-10-07 02:54:09 +00:00
|
|
|
export class UserClient extends BaseAPI {
|
2022-08-31 05:22:10 +00:00
|
|
|
locations: LocationsApi;
|
2022-09-02 01:52:40 +00:00
|
|
|
labels: LabelsApi;
|
2022-09-03 09:17:57 +00:00
|
|
|
items: ItemsApi;
|
2022-10-07 02:54:09 +00:00
|
|
|
group: GroupApi;
|
|
|
|
user: UserApi;
|
|
|
|
|
2022-08-31 05:22:10 +00:00
|
|
|
constructor(requests: Requests) {
|
|
|
|
super(requests);
|
|
|
|
|
|
|
|
this.locations = new LocationsApi(requests);
|
2022-09-02 01:52:40 +00:00
|
|
|
this.labels = new LabelsApi(requests);
|
2022-09-03 09:17:57 +00:00
|
|
|
this.items = new ItemsApi(requests);
|
2022-10-07 02:54:09 +00:00
|
|
|
this.group = new GroupApi(requests);
|
|
|
|
this.user = new UserApi(requests);
|
2022-08-31 05:22:10 +00:00
|
|
|
|
|
|
|
Object.freeze(this);
|
|
|
|
}
|
|
|
|
|
2022-10-07 02:54:09 +00:00
|
|
|
/** @deprecated use this.user.self() */
|
2022-08-31 02:11:36 +00:00
|
|
|
public self() {
|
2022-10-07 02:54:09 +00:00
|
|
|
return this.user.self();
|
2022-08-31 02:11:36 +00:00
|
|
|
}
|
|
|
|
|
2022-10-07 02:54:09 +00:00
|
|
|
/** @deprecated use this.user.logout() */
|
2022-08-31 02:11:36 +00:00
|
|
|
public logout() {
|
2022-10-07 02:54:09 +00:00
|
|
|
return this.user.logout();
|
2022-08-31 02:11:36 +00:00
|
|
|
}
|
2022-09-04 02:42:03 +00:00
|
|
|
|
2022-10-07 02:54:09 +00:00
|
|
|
/** @deprecated use this.user.delete() */
|
2022-09-04 02:42:03 +00:00
|
|
|
public deleteAccount() {
|
2022-10-07 02:54:09 +00:00
|
|
|
return this.user.delete();
|
2022-09-04 02:42:03 +00:00
|
|
|
}
|
2022-08-31 00:06:57 +00:00
|
|
|
}
|