@ama-sdk/schematics
TypeScript icon, indicating that this package has built-in type declarations

12.2.0 • Public • Published

SDK Generator

Stable Version Bundle Size

This package provides schematics generators to create an SDK based on an OpenAPI specifications. The Otter framework provides a Typescript SDK generator.

Typescript SDK

The Typescript SDK generator is a custom template for the OpenAPITools generator with a full integration of the @ama-sdk/core client capabilities.

It supports both Swagger 2+ and Open API 3 specifications.

Setup

Create a new repository

Generate a new single SDK repository

npm create @ama-sdk typescript <project-name> -- [--spec-path=./path/to/spec.yaml]

or

yarn create @ama-sdk typescript <project-name> [--spec-path=./path/to/spec.yaml]

[!WARNING] Please notice that the command yarn create is not available for versions >= 2.0.0 (see Yarn cli commands).

[!TIP] Get more information on the @ama-sdk/create package.

Create a new Otter workspace package

The Angular schematics package is required to use these generators:

if you are in an Otter project:

yarn ng add @ama-sdk/schematics
yarn ng add @ama-sdk/core

or

npx -p @angular/cli ng add @ama-sdk/schematics
npx -p @angular/cli ng add @ama-sdk/core

How to use?

The typescript generator provides 3 generators:

  • shell: To generate the "shell" of an SDK package
  • core: To (re)generate the SDK based on a specified OpenAPI specification
  • create: To create a new SDK from scratch (i.e. chain shell and core)

You can generate the shell in an existing monorepo with the command:

#Monorepo with Otter:
yarn ng g sdk sdkName

# Monorepo without Otter;
yarn schematics @o3r/workspace:sdk sdkName

or from scratch, with the NPM initializer:

npm create @ama-sdk typescript <project-name>

The generated package comes with the following script in the package.json:

{
  // ...
  "generate": "yarn schematics @ama-sdk/schematics:typescript-core --spec-path ./open-api.yaml",
  "upgrade:repository": "yarn schematics @ama-sdk/schematics:typescript-shell"
}

[!NOTE] Use generate to (re)generate your SDK based on the content of ./open-api.yaml (make sure you have this file at the root of your project) and upgrade:repository to regenerate the structure of your project.

[!TIP] The --spec-path parameter supports YAML and JSON file formats based on the file system path or remote URL. The --spec-package-name parameter can be used as an alternative to --spec-path if you want to generate an SDK with specs from an npm package.It comes with the optional parameters --spec-package-registry and --spec-package-path to be able to retrieve the npm package and the specs file from it. By default, the generator expects the package.json file inside the npm module containing the specs, to have an export with the key ./open-api.[yaml|yml|json] and the value will be the relative path to the spec file inside the package.

If you use Yarn2+ with PnP, you can modify the following scripts in package.json to generate the SDK based on specifications in a dependency package:

{
  // ...
  "resolve": "node -e 'process.stdout.write(require.resolve(process.argv[1]));'",
  "generate": "yarn schematics @ama-sdk/schematics:typescript-core --spec-path $(yarn resolve @my/dep/spec-file.yaml)",
}

Parameter Serialization

To align ourselves with OpenAPI 3.1, we now support arrays and objects in path and query parameters along with their serialization. Based on the values of the keywords style and explode within the specification file, the parameters are serialized accordingly in the URLs of the APIs. For more information, check out OpenAPI's documentation on parameter serialization.

It is important to note that, as in OpenAPI 3.1, we only support simple arrays and simple non-nested objects in path and query parameters. The parameter types that we support are stored in SupportedParamType in the package @ama-sdk/core.

To enable the parameter serialization within your API, you can set the option enableParameterSerialization to true (its current default value is false) in the constructor. For example:

const apiConfig: ApiClient = new ApiFetchClient(
  {
    basePath: 'https://petstore3.swagger.io/api/v3',
    enableParameterSerialization: true
  }
);

We provide the methods serializeQueryParams and serializePathParams to serialize the values of query and path parameters. However, it is also possible to pass your own serialization methods if the ones provided do not meet your requirements. These custom methods can be passed as a parameter to the API client constructor.

[!NOTE] If you have enabled the serialization mechanism and want to update the query parameters within a RequestPlugin, these must be serialized before being returned to the API to prepare the URL. You can do so by using the serialization method that we provide (serializeQueryParams) or your own serialization method. The value of the query parameters returned by the RequestPlugin will be forwarded to the next plugin and the last value will be directly added to the URL.

[!NOTE] It is important to note that special characters have to be encoded, as required by RFC6570 and RFC3986. Please take this into account if you choose to use your own serialization methods.

Light SDK

It is also possible to generate a "light" SDK. This type of SDK does not need to generate revivers, which results in a simplified version of the code and reduces the size of the bundle.

Please note that revivers are generated for SDKs that use:

  • non-stringified dates
  • dictionaries
  • extensible models
Dates

If your specification file includes dates, there are multiple options for the generation of your SDK involving the global property option stringifyDate:

  • By default, the option stringifyDate is set to true. Set it to false if you want date-time objects to be generated as Date and date objects to be generated as utils.Date. For more information related to these types, check out this documentation. This can be done by adding --global-property stringifyDate=false to the generator command or by adding the global property to the openapitools.json.

[!NOTE] An extra type to manage special timezone use cases can be used at property level thanks to the x-local-timezone vendor. Please check out the date documentation.

Example to use Date:

yarn schematics @ama-sdk/schematics:typescript-core --spec-path ./swagger-spec.yaml --global-property stringifyDate=false
Extensible models

You may be in a case in which you want to be able to extend your SDK models and therefore ensure that revivers are generated (more info on how to extend a model here). To do this, you can use the global property option allowModelExtension by adding --global-property allowModelExtension to the generator command.

Example:

yarn schematics @ama-sdk/schematics:typescript-core --spec-path ./swagger-spec.yaml --global-property allowModelExtension

Generator Configuration

Parameters

It is possible to configure the SDK code generation by passing parameters to the generator command line to override the default configuration values. The available parameters are:

  • --spec-path: Path to the swagger specification used to generate the SDK
  • --spec-config-path: Path to the spec generation configuration
  • --global-property: Comma separated string of options to give to the openapi-generator-cli
  • --output-path: Output path for the generated SDK
  • --generator-custom-path: Path to a custom generator

Also, another parameter is available called OpenAPI Normalizer which transforms the input OpenAPI specification (which may not perfectly conform) to make it workable with OpenAPI Generator. There are several rules that are supported which can be found here.

This parameter can be passed with --openapi-normalizer followed by the rules to be enabled in OpenAPI normalizer in the form of RULE_1=true,RULE_2=original.

Example: --openapi-normalizer REFACTOR_ALLOF_WITH_PROPERTIES_ONLY=true

openapitools.json

There is also a possibility to configure the SDK code generation in openapitools.json. The structure for this file looks something like this:

{
  "$schema": "https://raw.githubusercontent.com/OpenAPITools/openapi-generator-cli/master/apps/generator-cli/src/config.schema.json",
  "generator-cli": {
    "version": "0.0.0",
    "storageDir": ".openapi-generator",
    "generators": { // optional
      "example-sdk": { // any name you like (can be referenced using --generator-key)
        "generatorName": "typescriptFetch",
        "output": ".",
        "inputSpec": "./swagger-spec.yaml" // supports YAML and JSON formats, based on the file system path or remote URL
      }
    }
  }
}

example-sdk corresponds to the key of the generator which can be referenced in the generator command as a parameter, for example:

yarn schematics @ama-sdk/schematics:typescript-core --generator-key example-sdk

The properties generatorName, output, and inputSpec are required and additional properties can be added (available properties described in the schema here). For example, we can add the previously described global properties stringifyDate and allowModelExtension:

{
  "$schema": "https://raw.githubusercontent.com/OpenAPITools/openapi-generator-cli/master/apps/generator-cli/src/config.schema.json",
  "generator-cli": {
    "version": "0.0.0",
    "storageDir": ".openapi-generator",
    "generators": {
      "example-sdk": {
        "generatorName": "typescriptFetch",
        "output": ".",
        "inputSpec": "./open-api.yaml", // or "./open-api.json" according to the specification format
        "globalProperty": {
          "stringifyDate": false,
          "allowModelExtension": true
        }
      }
    }
  }
}

We have added the possibility in the generator command to both specify the generator key and override specific properties of said key. For example, if we want to use the properties of example-sdk from openapitools.json but override the global properties we can do so like this:

yarn schematics @ama-sdk/schematics:typescript-core --generator-key example-sdk --global-property stringifyDate=false

[!CAUTION] If the parameter --generator-key is provided in combination with other parameters to be overridden, the limitation is that not all properties from openapitools.json will be taken into account (contrary to the case when there is only the --generator-key parameter). As of now, the only properties that will be taken into account are output, inputSpec, config, globalProperty which can be overridden with the parameters --output-path, --spec-path, --spec-config-path, and --global-property.

[!NOTE] The parameters --generator-custom-path and --openapi-normalizer are not impacted and will always be taken into account if provided.

[!NOTE] The values provided by the parameter --global-property will actually be merged with the values of globalProperty from openapitools.json (rather than override them like the other properties).

Migration

To help to apply changes on the Shell part of the SDK repository, a migrate schematic is exposed:

yarn schematics @ama-sdk/schematics:migrate --from 10.0.0 [--to 11.0.0]

[!NOTE]

  • The --from parameter is mandatory to provide the version of the original @ama-sdk/schematics package from which the rules should be run.
  • The optional --to parameter allows to indicate a version until which the rules should be run. The current installed version will be used if not provided.

Debug

The OpenApi generator extracts an enhanced JSON data model from the specification YAML and uses this data model to feed the templates to generate the code. If there is an issue with the files generated with the spec provided, the generator provides debugging features that log this data model.

You can use global property options to pass one or both of the following options:

  • debugModels - logs the full JSON structure used to generate models
  • debugOperations - logs the full JSON structure used to generate operations

Example:

yarn schematics @ama-sdk/schematics:typescript-core --spec-path ./open-api.yaml --global-property debugModels,debugOperations

You can also use npx instead of yarn in the command.

You can correlate this data model with the templates used by the generator.

Going further

For more information on the generated SDK and how the framework supports different feature such as the Composition, you can refer to the dedicated SDK documentation:

Command Line Interface

This package also comes with CLI scripts that can facilitate the upgrade and publication of an SDK. Use --help on each command for more information

Script Description
amasdk-clear-index Remove the index files that are no longer necessary after the deletion of the associated model
amasdk-files-pack Prepare the dist folder for publication
amasdk-update-spec-from-npm Update the OpenAPI spec from an NPM package

Readme

Keywords

Package Sidebar

Install

npm i @ama-sdk/schematics

Weekly Downloads

4,512

Version

12.2.0

License

BSD-3-Clause

Unpacked Size

328 kB

Total Files

221

Last publish

Collaborators

  • kpanot
  • jbourgeois-1a
  • vscaiceanu-1a
  • nicohoffmann
  • mrednic-1a