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

@contrail/types

Package Overview
Dependencies
Maintainers
4
Versions
179
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@contrail/types - npm Package Compare versions

Comparing version 1.0.13 to 1.0.14

lib/relations/relation.d.ts

4

lib/index.d.ts
export * from './formatter';
export * from './properties';
export * from './type-properties';
export * from './formulas';
export * from './types';
export * from './type-interfaces';
export * from './type-roots';

@@ -14,4 +14,6 @@ "use strict";

__exportStar(require("./formatter"), exports);
__exportStar(require("./properties"), exports);
__exportStar(require("./type-properties"), exports);
__exportStar(require("./formulas"), exports);
__exportStar(require("./types"), exports);
__exportStar(require("./type-interfaces"), exports);
__exportStar(require("./type-roots"), exports);
export * from './type';
export * from './type-root';

@@ -14,2 +14,1 @@ "use strict";

__exportStar(require("./type"), exports);
__exportStar(require("./type-root"), exports);

@@ -1,2 +0,4 @@

import { TypeProperty } from "../properties";
import { Relation } from "../relations/relation";
import { TypeInterface } from "../type-interfaces";
import { TypeProperty } from "../type-properties";
export interface Type {

@@ -10,9 +12,9 @@ id?: string;

parent?: Type;
children?: Type[];
children?: Array<Type>;
parentTypePath?: string;
typeRootSlug?: string;
loadingProperties?: any;
typeInterfaces?: string[];
relations?: any;
typeInterfaces?: Array<TypeInterface>;
relations?: {
[key: string]: Relation;
};
typeProperties?: Array<TypeProperty>;
}
{
"name": "@contrail/types",
"version": "1.0.13",
"version": "1.0.14",
"description": "Types Utility module",

@@ -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