input option specifies where to load your OpenAPI specification from. It supports local files, URLs, and API registry shorthands.
Basic Usage
Input Options
For advanced scenarios, use an object to configure additional input options:Path to the OpenAPI specification. Can be:
- Local file path (e.g.,
'./openapi.yaml') - URL (e.g.,
'https://api.example.com/openapi.json') - API registry shorthand (e.g.,
'org/project') - Parsed JSON object
Pass any valid Fetch API options to the request for fetching your specification. Useful for adding authentication headers.
Regenerate the client when the input file changes. Pass
true to enable with default settings, or a number for custom interval in milliseconds.API Registry Options
When using Hey API Platform, additional options are available:Organization created in Hey API Platform.Requires
path to start with https://get.heyapi.dev or be undefined.Project created in Hey API Platform.Requires
path to start with https://get.heyapi.dev or be undefined.API key for authenticating with Hey API Platform. Projects are private by default.You can also provide an environment variable
HEY_API_TOKEN instead.Requires path to start with https://get.heyapi.dev or be undefined.Fetch the last build from a specific branch.Requires
path to start with https://get.heyapi.dev or be undefined.Fetch an exact specification by commit SHA. This always returns the same file.Requires
path to start with https://get.heyapi.dev or be undefined.Fetch the last uploaded specification matching the OpenAPI version field value.Requires
path to start with https://get.heyapi.dev or be undefined.Filter specifications by custom tags. When multiple tags are provided, only the first match is returned.Requires
path to start with https://get.heyapi.dev or be undefined.API Registry Example
openapi-ts.config.ts
Multiple Inputs
You can provide an array of inputs to combine multiple OpenAPI specifications into a single output:openapi-ts.config.ts
When using multiple inputs with multiple outputs, the arrays must have the same length. Each input will be paired with the corresponding output.
Watch Mode
Watch mode is useful during development to automatically regenerate the client when your OpenAPI specification changes:openapi-ts.config.ts
Supported Formats
OpenAPI TypeScript supports:- OpenAPI 3.0.x (JSON and YAML)
- OpenAPI 3.1.x (JSON and YAML)
- Swagger 2.0 (JSON and YAML)
.json and .yaml/.yml file extensions are automatically detected and parsed.