API Client Development This skill covers creating typed API clients using OpenAPI specifications, with proper authentication and OAuth scope handling. It builds on the patterns in SDK Module Development. Overview API clients in this project use: - openapi-fetch : Type-safe HTTP client generated from OpenAPI specs - openapi-typescript : Generates TypeScript types from OpenAPI specs - Middleware pattern : Auth and logging injected via openapi-fetch middleware Creating a New API Client 1. Add the OpenAPI Spec Place the spec in : 2. Update Type Generation Script In , add to the generate script: R…