refactor(web): split queries.ts into api/queries/ domain modules behind a barrel (#65)

This commit is contained in:
2026-06-08 21:35:02 +02:00
parent 704b159d48
commit d8d8035850
8 changed files with 591 additions and 556 deletions
+8
View File
@@ -0,0 +1,8 @@
export * from "./auth";
export * from "./objects";
export * from "./field-defs";
export * from "./vocab";
export * from "./authorities";
export * from "./search";
export * from "../errors";
export type { ObjectListParams } from "../query-keys";