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

@gql2ts/util

Package Overview
Dependencies
Maintainers
1
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gql2ts/util - npm Package Compare versions

Comparing version 1.8.0-alpha.a092af30 to 1.8.0

2

dist/index.d.ts
export { readFile, writeToFile, safeJSONParse } from './fileIO';
export { PossibleIntrospectionInputs, PossibleSchemaInput, isIntrospectionResult, schemaFromInputs, isList, isNonNullable, isEnum } from './schema';
export { PossibleIntrospectionInputs, PossibleSchemaInput, isIntrospectionResult, schemaFromInputs, isList, isNonNullable, isEnum, isScalar, isUnion } from './schema';
export { getDocTags, IJSDocTag, buildDocumentation, IFieldDocumentation } from './parser';
export { filterAndJoinArray } from './util';

@@ -13,2 +13,4 @@ "use strict";

exports.isEnum = schema_1.isEnum;
exports.isScalar = schema_1.isScalar;
exports.isUnion = schema_1.isUnion;
var parser_1 = require("./parser");

@@ -15,0 +17,0 @@ exports.getDocTags = parser_1.getDocTags;

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

import { IntrospectionQuery, GraphQLSchema, GraphQLType, GraphQLNonNull, GraphQLList, GraphQLEnumType } from 'graphql';
import { IntrospectionQuery, GraphQLSchema, GraphQLType, GraphQLNonNull, GraphQLList, GraphQLEnumType, GraphQLNamedType, GraphQLUnionType, GraphQLScalarType } from 'graphql';
export declare type PossibleIntrospectionInputs = {

@@ -11,1 +11,3 @@ data: IntrospectionQuery;

export declare function isEnum(type: GraphQLType): type is GraphQLEnumType;
export declare function isUnion(type: GraphQLNamedType): type is GraphQLUnionType;
export declare function isScalar(type: any): type is GraphQLScalarType;

@@ -37,2 +37,10 @@ "use strict";

exports.isEnum = isEnum;
function isUnion(type) {
return type instanceof graphql_1.GraphQLUnionType;
}
exports.isUnion = isUnion;
function isScalar(type) {
return type instanceof graphql_1.GraphQLScalarType || !!type._scalarConfig;
}
exports.isScalar = isScalar;
//# sourceMappingURL=schema.js.map
{
"name": "@gql2ts/util",
"private": false,
"version": "1.8.0-alpha.a092af30",
"version": "1.8.0",
"description": "utilities for gql2ts",

@@ -6,0 +6,0 @@ "main": "dist/index.js",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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