import { CrudClient } from "../infra/crud-client" import type { ApiClientOptions } from "../infra/client" import type { ApiPath, ApiRequestBody } from "../infra/types" export const PARTS_ROUTES = { INDEX: "/api/parts", BY_ID: "/api/parts/{id}", IMPORT: "/api/import-parts", EXPORT: "/api/export-parts", TOGGLE_STATUS: "/api/toggle-part-status", } as const satisfies Record export class PartsClient extends CrudClient< typeof PARTS_ROUTES.INDEX, typeof PARTS_ROUTES.BY_ID > { constructor(baseUrl?: string, defaultOptions?: ApiClientOptions) { super(baseUrl, defaultOptions, PARTS_ROUTES.INDEX, PARTS_ROUTES.BY_ID) } async import(payload: ApiRequestBody) { return this.post(PARTS_ROUTES.IMPORT, payload) } async export(payload: ApiRequestBody) { return this.post(PARTS_ROUTES.EXPORT, payload) } async toggleStatus(payload: ApiRequestBody) { return this.post(PARTS_ROUTES.TOGGLE_STATUS, payload) } }