# {{PACKAGE_NAME}} ## What this repo is Provider adapter package. Calls one external API, normalises the response, and returns it. No DB, no cache, no logging. ## Build & publish ```bash npm run build # tsc -> dist/ npm test # vitest npm version patch # or minor/major npm publish --access public ``` ## Folder structure ``` src/ index.ts <- exports client + config {{NAME_PASCAL}}Client.ts <- extends BaseHttpClient {{NAME_PASCAL}}Types.ts <- raw API types, local only tests/ {{NAME_PASCAL}}Client.test.ts ``` ## What this package does NOT do - No database access - No caching (orchestrator handles this) - No logging (orchestrator handles this) - Raw types never exported to @thalorlabs/types