forked from mirrors/homebox
343290a55a
* cleanup unnecessary mocks * refactor document storage location * remove unused function * move ownership to document types to repo package * move types and mappers to repo package * refactor sets to own package
27 lines
835 B
TypeScript
27 lines
835 B
TypeScript
import { BaseAPI, route } from "../base";
|
|
import { LocationOutCount, LocationCreate, LocationOut } from "../types/data-contracts";
|
|
import { Results } from "./types";
|
|
|
|
export type LocationUpdate = LocationCreate;
|
|
|
|
export class LocationsApi extends BaseAPI {
|
|
getAll() {
|
|
return this.http.get<Results<LocationOutCount>>({ url: route("/locations") });
|
|
}
|
|
|
|
create(body: LocationCreate) {
|
|
return this.http.post<LocationCreate, LocationOut>({ url: route("/locations"), body });
|
|
}
|
|
|
|
get(id: string) {
|
|
return this.http.get<LocationOut>({ url: route(`/locations/${id}`) });
|
|
}
|
|
|
|
delete(id: string) {
|
|
return this.http.delete<void>({ url: route(`/locations/${id}`) });
|
|
}
|
|
|
|
update(id: string, body: LocationUpdate) {
|
|
return this.http.put<LocationUpdate, LocationOut>({ url: route(`/locations/${id}`), body });
|
|
}
|
|
}
|