@himenon/openapi-typescript-code-generator
日本語
This library provides TypeScript type definitions and extracted parameters from OpenAPI v3.0.x compliant specifications. TypeScript AST is used to generate the code, which is accurately converted to TypeScript code. Since the parameters extracted from OpenAPI can be used freely, it can be used for automatic generation of API Client and Server Side code, load balancer configuration files, etc.
Playground
Playground
Installation
- ``` shell
- npm i -D @himenon/openapi-typescript-code-generator
- # or
- pnpm i -D @himenon/openapi-typescript-code-generator
- # or
- yarn add -D @himenon/openapi-typescript-code-generator
- ```
DEMO
Short DEMO
DEMO: github/rest-api-client code generate
https://github.com/github/rest-api-description
Usage
The example shown here can be cloned from the DEMO repository to see how it works.
Generate typedef-only code
- ``` ts
- import * as fs from "fs";
- import { CodeGenerator } from "@himenon/openapi-typescript-code-generator";
- const main = () => {
- const codeGenerator = new CodeGenerator("your/openapi/spec.yml");
- const code = codeGenerator.generateTypeDefinition();
- fs.writeFileSync("client.ts", code, { encoding: "utf-8" });
- };
- main();
- ```
Generate code containing the API Client
- ``` ts
- import * as fs from "fs";
- import { CodeGenerator } from "@himenon/openapi-typescript-code-generator";
- import * as Templates from "@himenon/openapi-typescript-code-generator/templates";
- import type * as Types from "@himenon/openapi-typescript-code-generator/types";
- const main = () => {
- const codeGenerator = new CodeGenerator("your/openapi/spec.yml");
- const apiClientGeneratorTemplate: Types.CodeGenerator.CustomGenerator<Templates.FunctionalApiClient.Option> = {
- generator: Templates.FunctionalApiClient.generator,
- option: {},
- };
- const code = codeGenerator.generateTypeDefinition([
- codeGenerator.getAdditionalTypeDefinitionCustomCodeGenerator(),
- apiClientGeneratorTemplate,
- ]);
- fs.writeFileSync("client.ts", code, { encoding: "utf-8" });
- };
- main();
- ```
The variation of template code
This library provides three types of templates
- ``` ts
- import * as Templates from "@himenon/openapi-typescript-code-generator/templates";
- Templates.ClassApiClient.generator;
- Templates.FunctionalApiClient.generator;
- Templates.CurryingFunctionalApiClient.generator;
- ```
Templates.ClassApiClient.generator
We provide a class-based API client. Please inject the API client dependency and use it instead of constructor.
- ``` ts
- export interface RequestArgs {
- httpMethod: HttpMethod;
- url: string;
- headers: ObjectLike | any;
- requestBody?: ObjectLike | any;
- requestBodyEncoding?: Record<string, Encoding>;
- queryParameters?: QueryParameters | undefined;
- }
- export interface ApiClient<RequestOption> {
- request: <T = SuccessResponses>(requestArgs: RequestArgs, options?: RequestOption) => Promise<T>;
- }
- export class Client<RequestOption> {
- private baseUrl: string;
- constructor(private apiClient: ApiClient<RequestOption>, baseUrl: string) {
- this.baseUrl = baseUrl.replace(/\/$/, "");
- }
- public async createPublisherV2<RequestContentType extends RequestContentType$createPublisherV2>(
- params: Params$createPublisherV2<RequestContentType>,
- option?: RequestOption,
- ): Promise<Response$createPublisherV2$Status$200["application/json"]> {
- const url = this.baseUrl + `/create/v2/publisher/{id}`;
- const headers = {
- "Content-Type": params.headers["Content-Type"],
- Accept: "application/json",
- };
- const requestEncodings = {
- "application/x-www-form-urlencoded": {
- color: {
- style: "form",
- explode: false,
- },
- },
- "application/json": {
- color: {
- style: "form",
- explode: false,
- },
- },
- };
- return this.apiClient.request(
- {
- httpMethod: "POST",
- url,
- headers,
- requestBody: params.requestBody,
- requestBodyEncoding: requestEncodings[params.headers["Content-Type"]],
- },
- option,
- );
- }
- }
- ```
Templates.FunctionalApiClient.generator
We also provide a function-based API client that replaces the class-based API client with createClient. Please inject the API client dependency and use it.
- ``` ts
- export interface RequestArgs {
- httpMethod: HttpMethod;
- url: string;
- headers: ObjectLike | any;
- requestBody?: ObjectLike | any;
- requestBodyEncoding?: Record<string, Encoding>;
- queryParameters?: QueryParameters | undefined;
- }
- export interface ApiClient<RequestOption> {
- request: <T = SuccessResponses>(requestArgs: RequestArgs, options?: RequestOption) => Promise<T>;
- }
- export const createClient = <RequestOption>(apiClient: ApiClient<RequestOption>, baseUrl: string) => {
- const _baseUrl = baseUrl.replace(/\/$/, "");
- return {
- createPublisherV2: <RequestContentType extends RequestContentType$createPublisherV2>(
- params: Params$createPublisherV2<RequestContentType>,
- option?: RequestOption,
- ): Promise<Response$createPublisherV2$Status$200["application/json"]> => {
- const url = _baseUrl + `/create/v2/publisher/{id}`;
- const headers = {
- "Content-Type": params.headers["Content-Type"],
- Accept: "application/json",
- };
- const requestEncodings = {
- "application/x-www-form-urlencoded": {
- color: {
- style: "form",
- explode: false,
- },
- },
- "application/json": {
- color: {
- style: "form",
- explode: false,
- },
- },
- };
- return apiClient.request(
- {
- httpMethod: "POST",
- url,
- headers,
- requestBody: params.requestBody,
- requestBodyEncoding: requestEncodings[params.headers["Content-Type"]],
- },
- option,
- );
- },
- };
- };
- ```
Templates.CurryingFunctionalApiClient.generator
Tree shaking support
We also provide a curried function-based API client that requires injection of API client for each operationId. The first function argument demands ApiClient while the second function argument demands RequestArgs. The ApiClient interface is different from the others, as it requires uri as an argument.
This is designed for use cases that utilize tree shaking.
- ``` ts
- export interface RequestArgs {
- httpMethod: HttpMethod;
- uri: string; // <------------------ Note that the uri
- headers: ObjectLike | any;
- requestBody?: ObjectLike | any;
- requestBodyEncoding?: Record<string, Encoding>;
- queryParameters?: QueryParameters | undefined;
- }
- export interface ApiClient<RequestOption> {
- request: <T = SuccessResponses>(requestArgs: RequestArgs, options?: RequestOption) => Promise<T>;
- }
- export const createPublisherV2 =
- <RequestOption>(apiClient: ApiClient<RequestOption>) =>
- <RequestContentType extends RequestContentType$createPublisherV2>(
- params: Params$createPublisherV2<RequestContentType>,
- option?: RequestOption,
- ): Promise<Response$createPublisherV2$Status$200["application/json"]> => {
- const uri = `/create/v2/publisher/{id}`;
- const headers = {
- "Content-Type": params.headers["Content-Type"],
- Accept: "application/json",
- };
- const requestEncodings = {
- "application/x-www-form-urlencoded": {
- color: {
- style: "form",
- explode: false,
- },
- },
- "application/json": {
- color: {
- style: "form",
- explode: false,
- },
- },
- };
- return apiClient.request(
- {
- httpMethod: "POST",
- uri,
- headers,
- requestBody: params.requestBody,
- requestBodyEncoding: requestEncodings[params.headers["Content-Type"]],
- },
- option,
- );
- };
- ```
Split the type definition file and the API Client implementation
- ``` ts
- import * as fs from "fs";
- import { CodeGenerator } from "@himenon/openapi-typescript-code-generator";
- import * as Templates from "@himenon/openapi-typescript-code-generator/templates";
- import type * as Types from "@himenon/openapi-typescript-code-generator/types";
- const main = () => {
- const codeGenerator = new CodeGenerator("your/openapi/spec.yml");
- const apiClientGeneratorTemplate: Types.CodeGenerator.CustomGenerator<Templates.FunctionalApiClient.Option> = {
- generator: Templates.FunctionalApiClient.generator,
- option: {},
- };
- const typeDefCode = codeGenerator.generateTypeDefinition();
- const apiClientCode = codeGenerator.generateCode([
- {
- generator: () => {
- return [`import { Schemas, Responses } from "./types";`];
- },
- },
- codeGenerator.getAdditionalTypeDefinitionCustomCodeGenerator(),
- apiClientGeneratorTemplate,
- ]);
- fs.writeFileSync("types.ts", typeDefCode, { encoding: "utf-8" });
- fs.writeFileSync("apiClient.ts", apiClientCode, { encoding: "utf-8" });
- };
- main();
- ```
Create a Code Template
The examples in this section can be used in the following ways
- ``` ts
- import * as fs from "fs";
- import { CodeGenerator } from "@himenon/openapi-typescript-code-generator";
- import type * as Types from "@himenon/openapi-typescript-code-generator/types";
- /** Write the definition of the Code Template here. */
- const customGenerator: Types.CodeGenerator.CustomGenerator<{}> = {
- /** .... */
- };
- const codeGenerator = new CodeGenerator("your/openapi/spec.yml");
- const code = codeGenerator.generateCode([customGenerator]);
- fs.writeFileSync("output/file/name", code, { encoding: "utf-8" });
- ```
Define a text-based code template
A self-defined code generator can return an array of string.
- ``` ts
- import * as Types from "@himenon/openapi-typescript-code-generator/types";
- interface Option {
- showLog?: boolean;
- }
- const generator: Types.CodeGenerator.GenerateFunction<Option> = (payload: Types.CodeGenerator.Params[], option): string[] => {
- if (option && option.showLog) {
- console.log("show log message");
- }
- return ["Hello world"];
- };
- const customGenerator: Types.CodeGenerator.CustomGenerator<Option> = {
- generator: generator,
- option: {},
- };
- ```
Define using the information extracted from OpenAPI Schema
The self-defined code generator can accept parameters extracted from OpenAPI Schema. See Type definitions for available parameters.
- ``` ts
- import * as Types from "@himenon/openapi-typescript-code-generator/types";
- interface Option {}
- const generator: Types.CodeGenerator.GenerateFunction<Option> = (payload: Types.CodeGenerator.Params[], option): string[] => {
- return payload.map(params => {
- return `function ${params.operationId}() { console.log("${params.comment}") }`;
- });
- };
- const customGenerator: Types.CodeGenerator.CustomGenerator<Option> = {
- generator: generator,
- option: {},
- };
- ```
Define any Data Types Format
Convert a Data Type with the following format to any type definition.
- ``` yaml
- components:
- schemas:
- Binary:
- type: string
- format: binary
- IntOrString:
- type: string
- format: int-or-string
- AandB:
- type: string
- format: A-and-B
- ```
The option to convert the Data Type Format to an arbitrary type definition is defined as follows.
- ``` ts
- import { CodeGenerator, Option } from "@himenon/openapi-typescript-code-generator";
- const option: Option = {
- convertOption: {
- formatConversions: [
- {
- selector: {
- format: "binary",
- },
- output: {
- type: ["Blob"],
- },
- },
- {
- selector: {
- format: "int-or-string",
- },
- output: {
- type: ["number", "string"],
- },
- },
- {
- selector: {
- format: "A-and-B",
- },
- output: {
- type: ["A", "B"],
- multiType: "allOf",
- },
- },
- ],
- },
- };
- const codeGenerator = new CodeGenerator(inputFilename, option);
- ```
The typedef generated by this will look like this
- ``` ts
- export namespace Schemas {
- export type Binary = Blob;
- export type IntOrString = number | string;
- export type AandB = A & B;
- }
- ```
Define a code template with TypeScript AST
You can extend your code using the API of TypeScript AST. You can directly use the API of TypeScript AST or use the wrapper API of TypeScript AST provided by this library.
- ``` ts
- import * as Types from "@himenon/openapi-typescript-code-generator/types";
- import { TsGenerator } from "@himenon/openapi-typescript-code-generator/api";
- interface Option {}
- const factory = TsGenerator.Factory.create();
- const generator: Types.CodeGenerator.GenerateFunction<Option> = (
- payload: Types.CodeGenerator.Params[],
- option,
- ): Types.CodeGenerator.IntermediateCode[] => {
- return payload.map(params => {
- return factory.InterfaceDeclaration.create({
- export: true,
- name: params.functionName,
- members: [],
- });
- });
- };
- const customGenerator: Types.CodeGenerator.CustomGenerator<Option> = {
- generator: generator,
- option: {},
- };
- ```
API
CodeGenerator
- ``` ts
- import { CodeGenerator } from "@himenon/openapi-typescript-code-generator";
- ```
validateOpenApiSchema
Performs validation of the input OpenAPI Schema.
generateTypeDefinition
Generates code that converts OpenAPI Schema to TypeScript type definitions.
generateCode
You can specify several of your own code generators, and the generators can use parameters extracted from OpenAPI Schema. It internally performs the conversion of an array of string or ts.Statement as a string.
For example, creating a generator in units of file divisions increases the reusability of the generator.
getCodeGeneratorParamsArray
It provides parameters extracted from OpenAPI Schema.
getAdditionalTypeDefinitionCustomCodeGenerator
This is a type definition file for Templates.FunctionalApiClient. The reason it is not included in generateTypeDefinition is that you may not use the type definition generated by this function depending on your usage.
※ The reason it is not included in generateTypeDefinition is that you may not use the type definitions generated by this function depending on your application.
TsGenerator
- ``` ts
- import { TsGenerator } from "@himenon/openapi-typescript-code-generator/api";
- ```
This is a wrapper API for the TypeScript AST used internally. It is subject to change without notice.
OpenApiTools
- ``` ts
- import { OpenApiTools } from "@himenon/openapi-typescript-code-generator/api";
- ```
Parser
OpenApiTools.Parser
This is the API for parsing OpenAPI Schema. It is subject to change without notice.
Restrictions
Directory Restrictions for Remote Reference
There is a limitation on the directory structure supported. To simplify implementation when converting directory structures to TypeScript namespaces, Remote References using $ref should only be defined in the following directory structures. If you want to extend i