Package Exports
- @emdgroup/tapir
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@emdgroup/tapir) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
tapir
Generate TypeScript assertions and type guards from OpenAPI specs
Synopsis
yarn add --dev @emdgroup/tapir
yarn tapir openapi.yml dir/to/lib/
# or use - to read from stdin
cat openapi.yml | yarn tapir - dist/This will create the following files:
dist/
types.d.ts
types.js
types.mjsThe generated files are self-contained and tree-shakable.
There are no runtime dependencies on tapir or any other package.
The following properties should be set in the package.json file to make the package work across node and browser environments:
{
"types": "dist/types.d.ts",
"main": "dist/types.js",
"module": "dist/types.mjs"
}Supported OpenAPI schemas
- Responses
- Request bodys (application/json only)
- Path parameters
Missing:
- Query parameters
- Headers
Supported Input Validation
Tested:
- Core Types:
boolean,string,number,integerenum
- Objects:
requiredallOfandoneOfadditionalPropertieswith a boolean
- Arrays:
items
Untested:
- Any Type
- Core Types:
boolean,string,number,integerminLengthmaxLengthminimummaximumexclusiveMinimumexclusiveMaximummultipleOfformatnotnullablepatternreadOnlywriteOnly
- Objects:
additionalPropertieswith a schemaminPropertiesmaxPropertiesanyOfxml
- Arrays:
minItemsmaxItemsuniqueItems