7c0d422228
Ground-up TypeScript rewrite of the Vector hardware parts inventory
system. Ships the full roadmap (Phases 0-8) in one initial commit:
- pnpm + Turbo monorepo: apps/{api,web,e2e}, packages/{db,shared,ui,config}
- Express 5 + Prisma 5 + zod validation + JWT w/ refresh-token rotation
- React 19 + Vite + shadcn/ui + TanStack Query/Table + nuqs URL state
- Repair/RMA, tags, bulk ops, saved views, CSV audit export
- Analytics dashboard on Recharts + EOL tracking
- Signed webhook subscriptions (HMAC-SHA256) with in-process emitter
- Vitest unit tests (shared schemas, api services/helpers) + Playwright skeleton
- Gitea Actions CI (lint, typecheck, test+coverage, build) + Renovate
Deferred follow-ups: Postgres cutover (data-migration script ready),
BullMQ worker for webhook delivery, @react-pdf PDF export, CSV import wizard.
34 lines
940 B
TypeScript
34 lines
940 B
TypeScript
import type { CreateHostRequest, UpdateHostRequest } from '@vector/shared';
|
|
import { api } from './client.js';
|
|
import { getList } from './paginated.js';
|
|
import type { Host } from './types.js';
|
|
|
|
export type HostListFilters = {
|
|
page?: number;
|
|
pageSize?: number;
|
|
q?: string;
|
|
};
|
|
|
|
export function listHosts(filters: HostListFilters = {}) {
|
|
return getList<Host>('/hosts', filters);
|
|
}
|
|
|
|
export async function getHost(id: string): Promise<Host> {
|
|
const res = await api.get<Host>(`/hosts/${id}`);
|
|
return res.data;
|
|
}
|
|
|
|
export async function createHost(input: CreateHostRequest): Promise<Host> {
|
|
const res = await api.post<Host>('/hosts', input);
|
|
return res.data;
|
|
}
|
|
|
|
export async function updateHost(id: string, input: UpdateHostRequest): Promise<Host> {
|
|
const res = await api.patch<Host>(`/hosts/${id}`, input);
|
|
return res.data;
|
|
}
|
|
|
|
export async function deleteHost(id: string): Promise<void> {
|
|
await api.delete(`/hosts/${id}`);
|
|
}
|