Socket
Socket
Sign inDemoInstall

@swagger-api/apidom-parser-adapter-api-design-systems-yaml

Package Overview
Dependencies
72
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@swagger-api/apidom-parser-adapter-api-design-systems-yaml

Parser adapter for parsing YAML documents into API Design Systems namespace.


Version published
Maintainers
1
Weekly downloads
280,972
decreased by-3.43%

Weekly downloads

Readme

Source

@swagger-api/apidom-parser-adapter-api-design-systems-yaml

@swagger-api/apidom-parser-adapter-api-design-systems-yaml is a parser adapter for API Design Systems specification versions defined in YAML format.

Supported versions:

  • 2021-05-07

Under the hood this adapter uses @swagger-api/apidom-parser-adapter-yaml-1-2 to parse a source string into generic ApiDOM in base ApiDOM namespace which is then refracted with API Design Systems Refractors.

Installation

After prerequisites for installing this package are satisfied, you can install it via npm CLI by running the following command:

 $ npm install @swagger-api/apidom-parser-adapter-api-design-systems-yaml

Parser adapter API

This parser adapter is fully compatible with parser adapter interface required by @swagger-api/apidom-parser and implements all required properties.

mediaTypes

Defines list of media types that this parser adapter recognizes.

[
  'application/vnd.aai.apidesignsystems;version=2021-05-07',
  'application/vnd.aai.apidesignsystems+yaml;version=2021-05-07'
]

detect

Detection is based on a regular expression matching required API Design Systems specification symbols in YAML format.

namespace

This adapter exposes an instance of API Design Systems ApiDOM namespace.

parse

parse function consumes various options as a second argument. Here is a list of these options:

OptionTypeDefaultDescription
specObjObjectSpecification ObjectThis specification object drives the JSON AST transformation to API Design Systems ApiDOM namespace.
sourceMapBooleanfalseIndicate whether to generate source maps.
refractorOptsObject{}Refractor options are passed to refractors during refracting phase.

All unrecognized arbitrary options will be ignored.

Usage

This parser adapter can be used directly or indirectly via @swagger-api/apidom-parser.

Direct usage

During direct usage you don't need to provide mediaType as the parse function is already pre-bound with supported media types.

import { parse, detect } from '@swagger-api/apidom-parser-adapter-api-design-systems-json';

// detecting
await detect('version: "2021-05-07"'); // => true
await detect('test'); // => false

// parsing
const parseResult = await parse('version: "2021-05-07"', { sourceMap: true });

Indirect usage

You can omit the mediaType option here, but please read Word on detect vs mediaTypes before you do so.

import ApiDOMParser from '@swagger-api/apidom-parser';
import * as apiDesignSystemsYamlAdapter from '@swagger-api/apidom-parser-adapter-api-design-systems-yaml';

const parser = new ApiDOMParser();

parser.use(apiDesignSystemsYamlAdapter);

const parseResult = await parser.parse('version: "2021-05-07"', {
  mediaType: apiDesignSystemsYamlAdapter.mediaTypes.latest('json')
});

FAQs

Last updated on 21 Mar 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc