Socket
Socket
Sign inDemoInstall

@swagger-api/apidom-ns-openapi-3-0

Package Overview
Dependencies
18
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @swagger-api/apidom-ns-openapi-3-0

OpenAPI 3.0.x namespace for ApiDOM.


Version published
Weekly downloads
388K
decreased by-3.85%
Maintainers
1
Install size
11.8 MB
Created
Weekly downloads
 

Changelog

Source

0.96.0 (2024-02-28)

Bug Fixes

  • core: assign unique ID to elements only when missing (#3841) (89af0a9), closes #3840
  • core: retain meta & attributes during refracting (#3843) (a7aac32), closes #3842
  • ns-ads: retain meta & attributes during refracting (#3857) (333550e), closes #3842
  • ns-asyncapi-2: retain meta & attributes during refracting (#3858) (e3b1848), closes #3842
  • ns-json-schema: retain meta & attributes during refracting (#3862) (99c3eb8), closes #3842
  • ns-openapi-2: retain meta & attributes during refracting (#3844) (b243110), closes #3842
  • ns-openapi-3-0: retain meta & attributes during refracting (#3859) (abefa88), closes #3842
  • ns-openapi-3-1: retain meta & attributes during refracting (#3861) (e960a76), closes #3842
  • ns-workflows-1: retain meta & attributes during refracting (#3860) (7e40336), closes #3842
  • playground: fix bug related to instantiating parser (#3851) (9b23628)
  • reference: add support for external cycles detection in AsyncAPI 2.x dereference strategy (#3872) (910a974), closes #3863
  • reference: add support for external cycles detection in OpenAPI 2.0 dereference strategy (#3871) (5a2141d), closes #3863
  • reference: add support for external cycles detection in OpenAPI 3.0.x dereference strategy (#3870) (0735471), closes #3863
  • reference: add support for external cycles detection in OpenAPI 3.1.0 dereference strategy (#3873) (9cd15ff), closes #3863

Features

  • apidom-converter: add infoSummaryRefractorPlugin (#3848) (1f0a39c), closes #3697
  • apidom-converter: add licenseIdentifierRefractorPlugin (#3854) (b28cafb), closes #3697
  • apidom-converter: add securitySchemeTypeRefractorPlugin (#3802) (2666194)
  • converter: add convenient toolbox utils (#3816) (ec8fa05)
  • converter: add securityRequirementsArrayRefractorPlugin (88b9451)
  • core: add mechanism for left shallow merge (#3849) (3334c6b), closes #3845
  • core: add mechanism for right shallow merge (#3846) (2059f28), closes #3845
  • core: customize meta & attributes merges for deepmerge function (#3855) (1e94924), closes #3853
  • ns-openapi-3-0: add Security Schema Object predicate (#3810) (9b09658)
  • ns-openapi-3-0: include hasElementSourceMap in toolbox (#3815) (e103eb4)
  • ns-openapi-3-1: add Security Schema Object predicate (#3811) (bf6702a)
  • ns-openapi-3-1: include hasElementSourceMap in toolbox (#3814) (3979541)

Readme

Source

@swagger-api/apidom-ns-openapi-3-0

@swagger-api/apidom-ns-openapi-3-0 contains ApiDOM namespace supports following OpenAPI specification versions:

Installation

You can install this package via npm CLI by running the following command:

 $ npm install @swagger-api/apidom-ns-openapi-3-0

OpenAPI 3.0.x namespace

OpenAPI 3.0.x namespace consists of number of elements implemented on top of primitive ones.

import { createNamespace } from '@swagger-api/apidom-core';
import openApi3_0Namespace from '@swagger-api/apidom-ns-openapi-3-0';

const namespace = createNamespace(openApi3_0Namespace);

const objectElement = new namespace.elements.Object();
const openApiElement = new namespace.elements.OpenApi3_0();

When namespace instance is created in this way, it will extend the base namespace with the namespace provided as an argument.

Elements from the namespace can also be used directly by importing them.

import { OpenApi3_0Element, InfoElement } from '@swagger-api/apidom-ns-openapi-3-0';

const infoElement = new InfoElement();
const openApiElement = new OpenApi3_0Element();

Predicates

This package exposes predicates for all higher order elements that are part of this namespace.

import { isOpenApi3_0Element, OpenApi3_0Element } from '@swagger-api/apidom-ns-openapi-3-0';

const openApiElement = new OpenApi3_0Element();

isOpenApi3_0Element(openApiElement); // => true

Traversal

Traversing ApiDOM in this namespace is possible by using visit function from apidom package. This package comes with its own keyMap and nodeTypeGetter. To learn more about these visit configuration options please refer to @swagger-api/apidom-ast documentation.

import { visit } from '@swagger-api/apidom-core';
import { OpenApi3_0Element, keyMap, getNodeType } from '@swagger-api/apidom-ns-openapi-3-0';

const element = new OpenApi3_0Element();

const visitor = {
  OpenApi3_0Element(openApiElement) {
    console.dir(openApiElement);
  },
};

visit(element, visitor, { keyMap, nodeTypeGetter: getNodeType });

Refractors

Refractor is a special layer inside the namespace that can transform either JavaScript structures or generic ApiDOM structures into structures built from elements of this namespace.

Refracting JavaScript structures:

import { InfoElement } from '@swagger-api/apidom-ns-openapi-3-0';

const object = {
    title: 'my title',
    description: 'my description',
    version: '0.1.0',
};

InfoElement.refract(object); // => InfoElement({ title, description, version })

Refracting generic ApiDOM structures:

import { ObjectElement } from '@swagger-api/apidom-core';
import { InfoElement } from '@swagger-api/apidom-ns-openapi-3-0';

const objectElement = new ObjectElement({
    title: 'my title',
    description: 'my description',
    version: '0.1.0',
});

InfoElement.refract(objectElement); // => InfoElement({ title = 'my title', description = 'my description', version = '0.1.0' })

Refractor plugins

Refractors can accept plugins as a second argument of refract static method.

import { ObjectElement } from '@swagger-api/apidom-core';
import { InfoElement } from '@swagger-api/apidom-ns-openapi-3-0';

const objectElement = new ObjectElement({
    title: 'my title',
    description: 'my description',
    version: '0.1.0',
});

const plugin = ({ predicates, namespace }) => ({
  name: 'plugin',
  pre() {
      console.dir('runs before traversal');
  },
  visitor: {
    InfoElement(infoElement) {
      infoElement.version = '2.0.0';
    },
  },
  post() {
      console.dir('runs after traversal');
  },
});

InfoElement.refract(objectElement, { plugins: [plugin] }); // => InfoElement({ title = 'my title', description = 'my description', version = '2.0.0' })

You can define as many plugins as needed to enhance the resulting namespaced ApiDOM structure. If multiple plugins with the same visitor method are defined, they run in parallel (just like in Babel).

Replace Empty Element plugin

This plugin is specific to YAML 1.2 format, which allows defining key-value pairs with empty key, empty value, or both. If the value is not provided in YAML format, this plugin compensates for this missing value with the most appropriate semantic element type.

import { parse } from '@swagger-api/apidom-parser-adapter-yaml-1-2';
import { refractorPluginReplaceEmptyElement, OpenApi3_0Element } from '@swagger-api/apidom-ns-openapi-3-0';

const yamlDefinition = `
openapi: 3.0.3
info:
`;
const apiDOM = await parse(yamlDefinition);
const openApiElement = OpenApi3_0Element.refract(apiDOM.result, {
  plugins: [refractorPluginReplaceEmptyElement()],
});

// =>
// (OpenApi3_0Element
//   (MemberElement
//     (StringElement)
//     (OpenapiElement))
//   (MemberElement
//     (StringElement)
//     (InfoElement)))

// => without the plugin the result would be as follows:
// (OpenApi3_0Element
//   (MemberElement
//     (StringElement)
//     (OpenapiElement))
//   (MemberElement
//     (StringElement)
//     (StringElement)))

Implementation progress

Only fully implemented specification objects should be checked here.

FAQs

Last updated on 28 Feb 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