@ts-stack/openapi-spec
TypeScript icon, indicating that this package has built-in type declarations

3.1.5 • Public • Published

About the project

@ts-stack/openapi-spec has TypeScript models according to OpenAPI Specification v3.1.0. To use it, required TypeScript v4.1+.

Major and minor versions of @ts-stack/openapi-spec are the same as OpenAPI Specification, but the patch version is not the same:

OpenAPI Specification @ts-stack/openapi-spec
v3.1.0
  • v3.1.0
  • v3.1.1
  • v3.1.2
  • v3.1.3
  • v3.1.4
  • v3.1.5

Introduction

The OpenAPI Specification (OAS) defines a standard, language-agnostic interface to RESTful APIs which allows both humans and computers to discover and understand the capabilities of the service without access to source code, documentation, or through network traffic inspection. When properly defined, a consumer can understand and interact with the remote service with a minimal amount of implementation logic.

An OpenAPI definition can then be used by documentation generation tools to display the API, code generation tools to generate servers and clients in various programming languages, testing tools, and many other use cases.

Install

npm i -D @ts-stack/openapi-spec

openapi version usage

You can use the openapi constant that contains the version of the OpenAPI Specification:

import { openapi } from '@ts-stack/openapi-spec';

console.log(openapi) // 3.1.0

SpecificationExtension Usage

If you want to use already extended interfaces, you need to import interfaces with the X prefix:

import { XOasObject } from '@ts-stack/openapi-spec';

const extendedOasObject: XOasObject<'x-one' | 'x-two'> = {
  info: {title: '', version: ''},
  openapi: '',
  'x-one': '',
  'x-two': '',
};

Or, you can extends any of model in this way:

import { OasObject, SpecificationExtension } from '@ts-stack/openapi-spec';

type ExtendedOasObject = OasObject & SpecificationExtension<'x-one' | 'x-two'>;

const extendedOasObject: ExtendedOasObject = {
  info: {title: '', version: ''},
  openapi: '',
  'x-one': '',
  'x-two': '',
};

Same but with an interface to extends properties:

import { OasObject, SpecificationExtension } from '@ts-stack/openapi-spec';

interface ExtendedProperties {
  'x-one': any,
  'x-two': any
}

type ExtendedOasObject = OasObject & SpecificationExtension<keyof ExtendedProperties>;

const extendedOasObject: ExtendedOasObject = {
  info: {title: '', version: ''},
  openapi: '',
  'x-one': '',
  'x-two': '',
};

PathsObject Usage

import { PathsObject } from '@ts-stack/openapi-spec';

type Paths = '/one' | '/two';

type StrictDifinedPaths = PathsObject<Paths>;

const paths: StrictDifinedPaths = {
  '/one': {},
  '/two': {},
};

Readme

Keywords

none

Package Sidebar

Install

npm i @ts-stack/openapi-spec

Weekly Downloads

406

Version

3.1.5

License

MIT

Unpacked Size

603 kB

Total Files

271

Last publish

Collaborators

  • ktretiak