graphql-codegen-typescript
Advanced tools
Comparing version 0.19.0-alpha.89ed12b6 to 0.19.0-alpha.8e3376c3
@@ -1,5 +0,6 @@ | ||
import { PluginFunction } from 'graphql-codegen-core'; | ||
import { RawConfig } from 'graphql-codegen-visitor-plugin-common'; | ||
import { PluginFunction } from 'graphql-codegen-plugin-helpers'; | ||
import { RawTypesConfig } from 'graphql-codegen-visitor-plugin-common'; | ||
export * from './typescript-variables-to-object'; | ||
export interface TypeScriptPluginConfig extends RawConfig { | ||
export * from './visitor'; | ||
export interface TypeScriptPluginConfig extends RawTypesConfig { | ||
avoidOptionals?: boolean; | ||
@@ -6,0 +7,0 @@ constEnums?: boolean; |
@@ -1,17 +0,51 @@ | ||
"use strict"; | ||
function __export(m) { | ||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; | ||
import { parse, printSchema, visit, TypeInfo, visitWithTypeInfo, getNamedType, isIntrospectionType, printIntrospectionSchema, isObjectType } from 'graphql'; | ||
import { TsVisitor } from './visitor'; | ||
import { TsIntrospectionVisitor } from './introspection-visitor'; | ||
export * from './typescript-variables-to-object'; | ||
export * from './visitor'; | ||
export const plugin = (schema, documents, config) => { | ||
const visitor = new TsVisitor(config); | ||
const printedSchema = printSchema(schema); | ||
const astNode = parse(printedSchema); | ||
const header = `type Maybe<T> = ${visitor.config.maybeValue};`; | ||
const visitorResult = visit(astNode, { leave: visitor }); | ||
const introspectionDefinitions = includeIntrospectionDefinitions(schema, documents, config); | ||
return [header, ...visitorResult.definitions, ...introspectionDefinitions].join('\n'); | ||
}; | ||
function includeIntrospectionDefinitions(schema, documents, config) { | ||
const typeInfo = new TypeInfo(schema); | ||
const usedTypes = []; | ||
const documentsVisitor = visitWithTypeInfo(typeInfo, { | ||
Field() { | ||
const type = getNamedType(typeInfo.getType()); | ||
if (isIntrospectionType(type) && !usedTypes.includes(type)) { | ||
usedTypes.push(type); | ||
} | ||
} | ||
}); | ||
documents.forEach(doc => visit(doc.content, documentsVisitor)); | ||
const typesToInclude = []; | ||
usedTypes.forEach(type => { | ||
collectTypes(type); | ||
}); | ||
const visitor = new TsIntrospectionVisitor(config, typesToInclude); | ||
const result = visit(parse(printIntrospectionSchema(schema)), { leave: visitor }); | ||
// recursively go through each `usedTypes` and their children and collect all used types | ||
// we don't care about Interfaces, Unions and others, but Objects and Enums | ||
function collectTypes(type) { | ||
if (typesToInclude.includes(type)) { | ||
return; | ||
} | ||
typesToInclude.push(type); | ||
if (isObjectType(type)) { | ||
const fields = type.getFields(); | ||
Object.keys(fields).forEach(key => { | ||
const field = fields[key]; | ||
const type = getNamedType(field.type); | ||
collectTypes(type); | ||
}); | ||
} | ||
} | ||
return result.definitions; | ||
} | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var graphql_1 = require("graphql"); | ||
var visitor_1 = require("./visitor"); | ||
__export(require("./typescript-variables-to-object")); | ||
exports.plugin = function (schema, documents, config) { | ||
var visitor = new visitor_1.TsVisitor(config); | ||
var printedSchema = graphql_1.printSchema(schema); | ||
var astNode = graphql_1.parse(printedSchema); | ||
var header = "type Maybe<T> = " + visitor.config.maybeValue + ";"; | ||
var visitorResult = graphql_1.visit(astNode, { leave: visitor }); | ||
return [header].concat(visitorResult.definitions).join('\n'); | ||
}; | ||
//# sourceMappingURL=index.js.map |
@@ -1,27 +0,10 @@ | ||
"use strict"; | ||
var __extends = (this && this.__extends) || (function () { | ||
var extendStatics = function (d, b) { | ||
extendStatics = Object.setPrototypeOf || | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
return extendStatics(d, b); | ||
}; | ||
return function (d, b) { | ||
extendStatics(d, b); | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
})(); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var graphql_codegen_visitor_plugin_common_1 = require("graphql-codegen-visitor-plugin-common"); | ||
var graphql_1 = require("graphql"); | ||
var TypeScriptOperationVariablesToObject = /** @class */ (function (_super) { | ||
__extends(TypeScriptOperationVariablesToObject, _super); | ||
function TypeScriptOperationVariablesToObject(_scalars, _convertName, _avoidOptionals, _immutableTypes) { | ||
var _this = _super.call(this, _scalars, _convertName) || this; | ||
_this._avoidOptionals = _avoidOptionals; | ||
_this._immutableTypes = _immutableTypes; | ||
return _this; | ||
import { OperationVariablesToObject } from 'graphql-codegen-visitor-plugin-common'; | ||
import { Kind } from 'graphql'; | ||
export class TypeScriptOperationVariablesToObject extends OperationVariablesToObject { | ||
constructor(_scalars, _convertName, _avoidOptionals, _immutableTypes) { | ||
super(_scalars, _convertName); | ||
this._avoidOptionals = _avoidOptionals; | ||
this._immutableTypes = _immutableTypes; | ||
} | ||
TypeScriptOperationVariablesToObject.prototype.clearOptional = function (str) { | ||
clearOptional(str) { | ||
if (str.startsWith('Maybe')) { | ||
@@ -31,17 +14,17 @@ return str.replace(/^Maybe<(.*?)>$/i, '$1'); | ||
return str; | ||
}; | ||
TypeScriptOperationVariablesToObject.prototype.wrapAstTypeWithModifiers = function (baseType, typeNode) { | ||
if (typeNode.kind === graphql_1.Kind.NON_NULL_TYPE) { | ||
var type = this.wrapAstTypeWithModifiers(baseType, typeNode.type); | ||
} | ||
wrapAstTypeWithModifiers(baseType, typeNode) { | ||
if (typeNode.kind === Kind.NON_NULL_TYPE) { | ||
const type = this.wrapAstTypeWithModifiers(baseType, typeNode.type); | ||
return this.clearOptional(type); | ||
} | ||
else if (typeNode.kind === graphql_1.Kind.LIST_TYPE) { | ||
var innerType = this.wrapAstTypeWithModifiers(baseType, typeNode.type); | ||
return "Maybe<" + (this._immutableTypes ? 'ReadonlyArray' : 'Array') + "<" + innerType + ">>"; | ||
else if (typeNode.kind === Kind.LIST_TYPE) { | ||
const innerType = this.wrapAstTypeWithModifiers(baseType, typeNode.type); | ||
return `Maybe<${this._immutableTypes ? 'ReadonlyArray' : 'Array'}<${innerType}>>`; | ||
} | ||
else { | ||
return "Maybe<" + baseType + ">"; | ||
return `Maybe<${baseType}>`; | ||
} | ||
}; | ||
TypeScriptOperationVariablesToObject.prototype.formatFieldString = function (fieldName, isNonNullType, hasDefaultValue) { | ||
} | ||
formatFieldString(fieldName, isNonNullType, hasDefaultValue) { | ||
if (hasDefaultValue || isNonNullType || this._avoidOptionals) { | ||
@@ -51,6 +34,6 @@ return fieldName; | ||
else { | ||
return fieldName + "?"; | ||
return `${fieldName}?`; | ||
} | ||
}; | ||
TypeScriptOperationVariablesToObject.prototype.formatTypeString = function (fieldType, isNonNullType, hasDefaultValue) { | ||
} | ||
formatTypeString(fieldType, isNonNullType, hasDefaultValue) { | ||
if (hasDefaultValue) { | ||
@@ -60,6 +43,4 @@ return this.clearOptional(fieldType); | ||
return fieldType; | ||
}; | ||
return TypeScriptOperationVariablesToObject; | ||
}(graphql_codegen_visitor_plugin_common_1.OperationVariablesToObject)); | ||
exports.TypeScriptOperationVariablesToObject = TypeScriptOperationVariablesToObject; | ||
} | ||
} | ||
//# sourceMappingURL=typescript-variables-to-object.js.map |
@@ -1,5 +0,5 @@ | ||
import { BaseVisitor, ParsedConfig } from 'graphql-codegen-visitor-plugin-common'; | ||
import { BaseTypesVisitor, ParsedTypesConfig } from 'graphql-codegen-visitor-plugin-common'; | ||
import { TypeScriptPluginConfig } from './index'; | ||
import { FieldDefinitionNode, NamedTypeNode, ListTypeNode, NonNullTypeNode, EnumTypeDefinitionNode } from 'graphql'; | ||
export interface TypeScriptPluginParsedConfig extends ParsedConfig { | ||
export interface TypeScriptPluginParsedConfig extends ParsedTypesConfig { | ||
avoidOptionals: boolean; | ||
@@ -11,4 +11,4 @@ constEnums: boolean; | ||
} | ||
export declare class TsVisitor extends BaseVisitor<TypeScriptPluginConfig, TypeScriptPluginParsedConfig> { | ||
constructor(pluginConfig?: TypeScriptPluginConfig); | ||
export declare class TsVisitor<TRawConfig extends TypeScriptPluginConfig = TypeScriptPluginConfig, TParsedConfig extends TypeScriptPluginParsedConfig = TypeScriptPluginParsedConfig> extends BaseTypesVisitor<TRawConfig, TParsedConfig> { | ||
constructor(pluginConfig: TRawConfig, additionalConfig?: Partial<TParsedConfig>); | ||
private clearOptional; | ||
@@ -15,0 +15,0 @@ NamedType(node: NamedTypeNode): string; |
@@ -1,38 +0,15 @@ | ||
"use strict"; | ||
var __extends = (this && this.__extends) || (function () { | ||
var extendStatics = function (d, b) { | ||
extendStatics = Object.setPrototypeOf || | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
return extendStatics(d, b); | ||
}; | ||
return function (d, b) { | ||
extendStatics(d, b); | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
})(); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var graphql_codegen_visitor_plugin_common_1 = require("graphql-codegen-visitor-plugin-common"); | ||
var autoBind = require("auto-bind"); | ||
var typescript_variables_to_object_1 = require("./typescript-variables-to-object"); | ||
var TsVisitor = /** @class */ (function (_super) { | ||
__extends(TsVisitor, _super); | ||
function TsVisitor(pluginConfig) { | ||
if (pluginConfig === void 0) { pluginConfig = {}; } | ||
var _this = _super.call(this, pluginConfig, { | ||
avoidOptionals: pluginConfig.avoidOptionals || false, | ||
maybeValue: pluginConfig.maybeValue || 'T | null', | ||
constEnums: pluginConfig.constEnums || false, | ||
enumsAsTypes: pluginConfig.enumsAsTypes || false, | ||
immutableTypes: pluginConfig.immutableTypes || false | ||
}, null) || this; | ||
autoBind(_this); | ||
_this.setArgumentsTransformer(new typescript_variables_to_object_1.TypeScriptOperationVariablesToObject(_this.scalars, _this.convertName, _this.config.avoidOptionals, _this.config.immutableTypes)); | ||
_this.setDeclarationBlockConfig({ | ||
import { DeclarationBlock, indent, BaseTypesVisitor } from 'graphql-codegen-visitor-plugin-common'; | ||
import autoBind from 'auto-bind'; | ||
import { Kind } from 'graphql'; | ||
import { TypeScriptOperationVariablesToObject } from './typescript-variables-to-object'; | ||
export class TsVisitor extends BaseTypesVisitor { | ||
constructor(pluginConfig, additionalConfig = {}) { | ||
super(pluginConfig, Object.assign({ avoidOptionals: pluginConfig.avoidOptionals || false, maybeValue: pluginConfig.maybeValue || 'T | null', constEnums: pluginConfig.constEnums || false, enumsAsTypes: pluginConfig.enumsAsTypes || false, immutableTypes: pluginConfig.immutableTypes || false }, (additionalConfig || {})), null); | ||
autoBind(this); | ||
this.setArgumentsTransformer(new TypeScriptOperationVariablesToObject(this.scalars, this.convertName, this.config.avoidOptionals, this.config.immutableTypes)); | ||
this.setDeclarationBlockConfig({ | ||
enumNameValueSeparator: ' =' | ||
}); | ||
return _this; | ||
} | ||
TsVisitor.prototype.clearOptional = function (str) { | ||
clearOptional(str) { | ||
if (str.startsWith('Maybe')) { | ||
@@ -42,42 +19,39 @@ return str.replace(/Maybe<(.*?)>/, '$1'); | ||
return str; | ||
}; | ||
TsVisitor.prototype.NamedType = function (node) { | ||
return "Maybe<" + _super.prototype.NamedType.call(this, node) + ">"; | ||
}; | ||
TsVisitor.prototype.ListType = function (node) { | ||
return "Maybe<" + _super.prototype.ListType.call(this, node) + ">"; | ||
}; | ||
TsVisitor.prototype.wrapWithListType = function (str) { | ||
return (this.config.immutableTypes ? 'ReadonlyArray' : 'Array') + "<" + str + ">"; | ||
}; | ||
TsVisitor.prototype.NonNullType = function (node) { | ||
var baseValue = _super.prototype.NonNullType.call(this, node); | ||
} | ||
NamedType(node) { | ||
return `Maybe<${super.NamedType(node)}>`; | ||
} | ||
ListType(node) { | ||
return `Maybe<${super.ListType(node)}>`; | ||
} | ||
wrapWithListType(str) { | ||
return `${this.config.immutableTypes ? 'ReadonlyArray' : 'Array'}<${str}>`; | ||
} | ||
NonNullType(node) { | ||
const baseValue = super.NonNullType(node); | ||
return this.clearOptional(baseValue); | ||
}; | ||
TsVisitor.prototype.FieldDefinition = function (node, key, parent) { | ||
var typeString = node.type; | ||
var originalFieldNode = parent[key]; | ||
var addOptionalSign = !this.config.avoidOptionals && originalFieldNode.type.kind !== 'NonNullType'; | ||
return graphql_codegen_visitor_plugin_common_1.indent("" + (this.config.immutableTypes ? 'readonly ' : '') + node.name + (addOptionalSign ? '?' : '') + ": " + typeString + ","); | ||
}; | ||
TsVisitor.prototype.EnumTypeDefinition = function (node) { | ||
var _this = this; | ||
} | ||
FieldDefinition(node, key, parent) { | ||
const typeString = node.type; | ||
const originalFieldNode = parent[key]; | ||
const addOptionalSign = !this.config.avoidOptionals && originalFieldNode.type.kind !== Kind.NON_NULL_TYPE; | ||
return indent(`${this.config.immutableTypes ? 'readonly ' : ''}${node.name}${addOptionalSign ? '?' : ''}: ${typeString},`); | ||
} | ||
EnumTypeDefinition(node) { | ||
if (this.config.enumsAsTypes) { | ||
return new graphql_codegen_visitor_plugin_common_1.DeclarationBlock(this._declarationBlockConfig) | ||
return new DeclarationBlock(this._declarationBlockConfig) | ||
.export() | ||
.asKind('type') | ||
.withName(this.convertName(node.name)) | ||
.withContent(node.values.map(function (v) { return "'" + (_this.config.enumValues[v.name] || v.name) + "'"; }).join(' | ')).string; | ||
.withName(this.convertName(node)) | ||
.withContent(node.values.map(v => `'${this.config.enumValues[v.name] || v.name}'`).join(' | ')).string; | ||
} | ||
else { | ||
return new graphql_codegen_visitor_plugin_common_1.DeclarationBlock(this._declarationBlockConfig) | ||
return new DeclarationBlock(this._declarationBlockConfig) | ||
.export() | ||
.asKind(this.config.constEnums ? 'const enum' : 'enum') | ||
.withName(this.convertName(node.name)) | ||
.withName(this.convertName(node)) | ||
.withBlock(this.buildEnumValuesBlock(node.values)).string; | ||
} | ||
}; | ||
return TsVisitor; | ||
}(graphql_codegen_visitor_plugin_common_1.BaseVisitor)); | ||
exports.TsVisitor = TsVisitor; | ||
} | ||
} | ||
//# sourceMappingURL=visitor.js.map |
{ | ||
"name": "graphql-codegen-typescript", | ||
"version": "0.19.0-alpha.89ed12b6", | ||
"version": "0.19.0-alpha.8e3376c3", | ||
"description": "GraphQL Code Generator plugin for generating TypeScript types", | ||
@@ -8,14 +8,14 @@ "repository": "git@github.com:dotansimha/graphql-code-generator.git", | ||
"scripts": { | ||
"prepublishOnly": "yarn build", | ||
"build": "tsc", | ||
"pretest": "yarn build", | ||
"test": "jest" | ||
}, | ||
"dependencies": { | ||
"graphql-codegen-core": "0.19.0-alpha.89ed12b6", | ||
"graphql-codegen-plugin-helpers": "0.19.0-alpha.89ed12b6", | ||
"graphql-codegen-visitor-plugin-common": "0.19.0-alpha.89ed12b6" | ||
"esm": "3.2.11", | ||
"graphql-codegen-plugin-helpers": "0.19.0-alpha.8e3376c3", | ||
"graphql-codegen-visitor-plugin-common": "0.19.0-alpha.8e3376c3", | ||
"tslib": "1.9.3" | ||
}, | ||
"devDependencies": { | ||
"graphql": "14.1.1", | ||
"graphql-codegen-testing": "0.19.0-alpha.8e3376c3", | ||
"jest": "24.1.0", | ||
@@ -25,3 +25,4 @@ "ts-jest": "24.0.0", | ||
}, | ||
"main": "./dist/index.js", | ||
"main": "cjs/index.js", | ||
"module": "dist/index.js", | ||
"typings": "dist/index.d.ts", | ||
@@ -34,3 +35,6 @@ "typescript": { | ||
"ts-jest": { | ||
"enableTsDiagnostics": false | ||
"enableTsDiagnostics": false, | ||
"tsConfig": { | ||
"esModuleInterop": true | ||
} | ||
} | ||
@@ -37,0 +41,0 @@ }, |
{ | ||
"compilerOptions": { | ||
"importHelpers": true, | ||
"experimentalDecorators": true, | ||
"module": "commonjs", | ||
"target": "es5", | ||
"module": "esnext", | ||
"target": "es2018", | ||
"lib": ["es6", "esnext", "es2015"], | ||
@@ -7,0 +8,0 @@ "suppressImplicitAnyIndexErrors": true, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19614
15
251
4
5
1
+ Addedesm@3.2.11
+ Addedtslib@1.9.3
+ Addeddependency-graph@0.8.0(transitive)
+ Addedesm@3.2.11(transitive)
+ Addedgraphql-codegen-plugin-helpers@0.19.0-alpha.8e3376c3(transitive)
+ Addedgraphql-codegen-visitor-plugin-common@0.19.0-alpha.8e3376c3(transitive)
+ Addedtslib@1.9.3(transitive)
- Removed@babel/code-frame@7.26.2(transitive)
- Removed@babel/generator@7.26.3(transitive)
- Removed@babel/helper-string-parser@7.25.9(transitive)
- Removed@babel/helper-validator-identifier@7.25.9(transitive)
- Removed@babel/parser@7.26.3(transitive)
- Removed@babel/template@7.25.9(transitive)
- Removed@babel/traverse@7.26.4(transitive)
- Removed@babel/types@7.26.3(transitive)
- Removed@colors/colors@1.6.0(transitive)
- Removed@jridgewell/gen-mapping@0.3.8(transitive)
- Removed@jridgewell/resolve-uri@3.1.2(transitive)
- Removed@jridgewell/set-array@1.2.1(transitive)
- Removed@jridgewell/sourcemap-codec@1.5.0(transitive)
- Removed@jridgewell/trace-mapping@0.3.25(transitive)
- Removed@types/triple-beam@1.3.5(transitive)
- Removed@wry/equality@0.1.11(transitive)
- Removedaggregate-error@2.1.0(transitive)
- Removedajv@6.12.6(transitive)
- Removedansi-styles@3.2.1(transitive)
- Removedapollo-link@1.2.14(transitive)
- Removedapollo-utilities@1.3.4(transitive)
- Removedasn1@0.2.6(transitive)
- Removedassert-plus@1.0.0(transitive)
- Removedasync@2.6.4(transitive)
- Removedasynckit@0.4.0(transitive)
- Removedaws-sign2@0.7.0(transitive)
- Removedaws4@1.13.2(transitive)
- Removedbalanced-match@1.0.2(transitive)
- Removedbcrypt-pbkdf@1.0.2(transitive)
- Removedbrace-expansion@1.1.11(transitive)
- Removedbuffer-from@1.1.2(transitive)
- Removedcaseless@0.12.0(transitive)
- Removedchalk@2.4.2(transitive)
- Removedclean-stack@2.2.0(transitive)
- Removedcolor@3.2.1(transitive)
- Removedcolor-convert@1.9.3(transitive)
- Removedcolor-name@1.1.3(transitive)
- Removedcolor-string@1.9.1(transitive)
- Removedcolornames@1.1.1(transitive)
- Removedcolorspace@1.1.4(transitive)
- Removedcombined-stream@1.0.8(transitive)
- Removedconcat-map@0.0.1(transitive)
- Removedcore-util-is@1.0.2(transitive)
- Removeddashdash@1.14.1(transitive)
- Removeddebug@4.4.0(transitive)
- Removeddeepmerge@3.2.0(transitive)
- Removeddelayed-stream@1.0.0(transitive)
- Removeddeprecated-decorator@0.1.6(transitive)
- Removeddiagnostics@1.1.1(transitive)
- Removedecc-jsbn@0.1.2(transitive)
- Removedenabled@1.0.2(transitive)
- Removedenv-variable@0.0.6(transitive)
- Removedescape-string-regexp@1.0.5(transitive)
- Removedextend@3.0.2(transitive)
- Removedextsprintf@1.3.0(transitive)
- Removedfast-deep-equal@3.1.3(transitive)
- Removedfast-json-stable-stringify@2.1.0(transitive)
- Removedfecha@4.2.3(transitive)
- Removedforever-agent@0.6.1(transitive)
- Removedform-data@2.3.3(transitive)
- Removedfs.realpath@1.0.0(transitive)
- Removedgetpass@0.1.7(transitive)
- Removedglob@7.1.3(transitive)
- Removedglobals@11.12.0(transitive)
- Removedgraphql-codegen-core@0.19.0-alpha.89ed12b6(transitive)
- Removedgraphql-codegen-plugin-helpers@0.19.0-alpha.89ed12b6(transitive)
- Removedgraphql-codegen-visitor-plugin-common@0.19.0-alpha.89ed12b6(transitive)
- Removedgraphql-import@0.7.1(transitive)
- Removedgraphql-tag-pluck@0.6.0(transitive)
- Removedgraphql-toolkit@0.2.0(transitive)
- Removedgraphql-tools@4.0.4(transitive)
- Removedhar-schema@2.0.0(transitive)
- Removedhar-validator@5.1.5(transitive)
- Removedhas-flag@3.0.0(transitive)
- Removedhttp-signature@1.2.0(transitive)
- Removedindent-string@3.2.0(transitive)
- Removedinflight@1.0.6(transitive)
- Removedinherits@2.0.4(transitive)
- Removedis-arrayish@0.3.2(transitive)
- Removedis-extglob@1.0.02.1.1(transitive)
- Removedis-glob@2.0.14.0.0(transitive)
- Removedis-invalid-path@0.1.0(transitive)
- Removedis-stream@1.1.0(transitive)
- Removedis-typedarray@1.0.0(transitive)
- Removedis-valid-path@0.1.1(transitive)
- Removedisstream@0.1.2(transitive)
- Removedjs-tokens@4.0.0(transitive)
- Removedjsbn@0.1.1(transitive)
- Removedjsesc@3.1.0(transitive)
- Removedjson-schema@0.4.0(transitive)
- Removedjson-schema-traverse@0.4.1(transitive)
- Removedjson-stringify-safe@5.0.1(transitive)
- Removedjsprim@1.4.2(transitive)
- Removedkuler@1.0.1(transitive)
- Removedlodash@4.17.114.17.21(transitive)
- Removedlogform@2.7.0(transitive)
- Removedmime-db@1.52.0(transitive)
- Removedmime-types@2.1.35(transitive)
- Removedminimatch@3.1.2(transitive)
- Removedms@2.1.3(transitive)
- Removedoauth-sign@0.9.0(transitive)
- Removedonce@1.4.0(transitive)
- Removedone-time@0.0.4(transitive)
- Removedpath-is-absolute@1.0.1(transitive)
- Removedperformance-now@2.1.0(transitive)
- Removedpicocolors@1.1.1(transitive)
- Removedpsl@1.15.0(transitive)
- Removedpunycode@1.4.12.3.1(transitive)
- Removedqs@6.5.3(transitive)
- Removedreadable-stream@3.6.2(transitive)
- Removedrequest@2.88.0(transitive)
- Removedresolve-from@4.0.0(transitive)
- Removedsafe-buffer@5.2.1(transitive)
- Removedsafe-stable-stringify@2.5.0(transitive)
- Removedsafer-buffer@2.1.2(transitive)
- Removedsimple-swizzle@0.2.2(transitive)
- Removedsource-map@0.6.1(transitive)
- Removedsource-map-support@0.5.21(transitive)
- Removedsshpk@1.18.0(transitive)
- Removedstack-trace@0.0.10(transitive)
- Removedstring_decoder@1.3.0(transitive)
- Removedsupports-color@5.5.0(transitive)
- Removedtext-hex@1.0.0(transitive)
- Removedtough-cookie@2.4.3(transitive)
- Removedtriple-beam@1.4.1(transitive)
- Removedts-invariant@0.4.4(transitive)
- Removedtslib@1.14.1(transitive)
- Removedtunnel-agent@0.6.0(transitive)
- Removedtweetnacl@0.14.5(transitive)
- Removedtypescript@3.9.10(transitive)
- Removeduri-js@4.4.1(transitive)
- Removedutil-deprecate@1.0.2(transitive)
- Removeduuid@3.4.0(transitive)
- Removedvalid-url@1.0.9(transitive)
- Removedverror@1.10.0(transitive)
- Removedwinston@3.2.1(transitive)
- Removedwinston-transport@4.9.0(transitive)
- Removedwrappy@1.0.2(transitive)
- Removedzen-observable@0.8.15(transitive)
- Removedzen-observable-ts@0.8.21(transitive)
Updatedgraphql-codegen-visitor-plugin-common@0.19.0-alpha.8e3376c3