Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@swagger-api/apidom-parser-adapter-api-design-systems-yaml
Advanced tools
Parser adapter for parsing YAML documents into API Design Systems namespace.
@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:
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.
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
This parser adapter is fully compatible with parser adapter interface required by @swagger-api/apidom-parser and implements all required properties.
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'
]
Detection is based on a regular expression matching required API Design Systems specification symbols in YAML format.
This adapter exposes an instance of API Design Systems ApiDOM namespace.
parse
function consumes various options as a second argument. Here is a list of these options:
Option | Type | Default | Description |
---|---|---|---|
specObj | Object | Specification Object | This specification object drives the JSON AST transformation to API Design Systems ApiDOM namespace. |
sourceMap | Boolean | false | Indicate whether to generate source maps. |
refractorOpts | Object | {} | Refractor options are passed to refractors during refracting phase. |
All unrecognized arbitrary options will be ignored.
This parser adapter can be used directly or indirectly via @swagger-api/apidom-parser.
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 });
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
Parser adapter for parsing YAML documents into API Design Systems namespace.
The npm package @swagger-api/apidom-parser-adapter-api-design-systems-yaml receives a total of 287,445 weekly downloads. As such, @swagger-api/apidom-parser-adapter-api-design-systems-yaml popularity was classified as popular.
We found that @swagger-api/apidom-parser-adapter-api-design-systems-yaml demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.