import { Id, NullableId, Params } from "@feathersjs/feathers"; import { WebService } from "./http_adapter"; export class FeathersWrapper { constructor(private ws: WebService) {} get(id: Id) { return this.ws.getOne(id); } find(params: Params) { return this.ws.getMany(params.query); } create(data: any, params: Params) { return this.ws.store(data); } remove(id: NullableId, params: Params) { return this.ws.delete(id); } update(id: NullableId, data: any, params: Params) { return this.ws.replace(id, data); } patch(id: NullableId, data: any, params: Params) { return this.ws.modify(id, data); } }