Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

openapi-graph-types

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

openapi-graph-types - npm Package Compare versions

Comparing version 0.0.1-alpha.2.1.6 to 0.0.1-alpha.2.1.7

4

lib/Edge.d.ts

@@ -1,6 +0,6 @@

import { NodeInterface, ArraySchemaNodeInterface } from '.';
import { NodeInterface, SchemaNodeInterface } from '.';
export declare type EdgeConstructor = new () => EdgeInterface;
export interface EdgeInterface {
parent: NodeInterface | undefined;
child: ArraySchemaNodeInterface | undefined;
child: SchemaNodeInterface | undefined;
}

@@ -7,0 +7,0 @@ export interface Edges {

import { RefEdgeInterface } from ".";
export interface Nodes {
schemas: ArraySchemaNodeInterface[];
schemas: {
[key: string]: SchemaNodeInterface;
};
}

@@ -9,3 +11,5 @@ export declare type NodeConstructor = new (name: string) => NodeInterface;

}
export declare type SchemaSchemaNodeConstructor = new (name: string) => SchemaNodeInterface;
export interface SchemaNodeInterface extends NodeInterface {
content: NonArraySchemaNodeContent | ArraySchemaNodeContent;
}

@@ -47,10 +51,1 @@ export interface NonArraySchemaNodeContent {

}
export interface ArraySchemaNodeInterface extends SchemaNodeInterface {
content: NonArraySchemaNodeContent | ArraySchemaNodeContent;
}
export declare type ArraySchemaSchemaNodeConstructor = new (name: string) => ArraySchemaNodeInterface;
export interface SchemaNodeInterface extends NodeInterface {
}
export interface ArraySchemaNodeInterface extends SchemaNodeInterface {
items: RefEdgeInterface;
}
{
"name": "openapi-graph-types",
"version": "0.0.1-alpha.2.1.6",
"version": "0.0.1-alpha.2.1.7",
"description": "The types of the openapi-graph library.",

@@ -5,0 +5,0 @@ "main": "./lib/index.js",

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc