Socket
Socket
Sign inDemoInstall

graphql-language-service-types

Package Overview
Dependencies
Maintainers
13
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

graphql-language-service-types - npm Package Compare versions

Comparing version 1.6.3 to 1.7.0

6

CHANGELOG.md

@@ -6,2 +6,8 @@ # Change Log

# [1.7.0](https://github.com/graphql/graphiql/compare/graphql-language-service-types@1.6.3...graphql-language-service-types@1.7.0) (2021-01-03)
### Features
- merge completion logic (for implements &, variables) ([#1747](https://github.com/graphql/graphiql/issues/1747)) ([0ac0a85](https://github.com/graphql/graphiql/commit/0ac0a856cfc715d7885a9965a9a9114ef2ca4b1a))
## [1.6.3](https://github.com/graphql/graphiql/compare/graphql-language-service-types@1.6.2...graphql-language-service-types@1.6.3) (2020-09-18)

@@ -8,0 +14,0 @@

5

dist/index.d.ts
import type { Diagnostic as DiagnosticType, CompletionItem as CompletionItemType } from 'vscode-languageserver-types';
import type { ASTNode, GraphQLSchema } from 'graphql';
import type { DocumentNode, FragmentDefinitionNode, NamedTypeNode, TypeDefinitionNode, NameNode } from 'graphql/language';
import type { GraphQLArgument, GraphQLEnumValue, GraphQLField, GraphQLInputFieldMap, GraphQLType } from 'graphql/type/definition';
import type { GraphQLArgument, GraphQLEnumValue, GraphQLField, GraphQLInputFieldMap, GraphQLInterfaceType, GraphQLObjectType, GraphQLType } from 'graphql/type/definition';
import type { GraphQLDirective } from 'graphql/type/directives';

@@ -62,2 +62,4 @@ export declare type Maybe<T> = T | null | undefined;

objectFieldDefs: Maybe<GraphQLInputFieldMap>;
interfaceDef: Maybe<GraphQLInterfaceType>;
objectTypeDef: Maybe<GraphQLObjectType>;
};

@@ -88,2 +90,3 @@ export declare type FragmentInfo = {

deprecationReason?: string | null;
type?: GraphQLType;
};

@@ -90,0 +93,0 @@ export declare type Definition = {

import type { Diagnostic as DiagnosticType, CompletionItem as CompletionItemType } from 'vscode-languageserver-types';
import type { ASTNode, GraphQLSchema } from 'graphql';
import type { DocumentNode, FragmentDefinitionNode, NamedTypeNode, TypeDefinitionNode, NameNode } from 'graphql/language';
import type { GraphQLArgument, GraphQLEnumValue, GraphQLField, GraphQLInputFieldMap, GraphQLType } from 'graphql/type/definition';
import type { GraphQLArgument, GraphQLEnumValue, GraphQLField, GraphQLInputFieldMap, GraphQLInterfaceType, GraphQLObjectType, GraphQLType } from 'graphql/type/definition';
import type { GraphQLDirective } from 'graphql/type/directives';

@@ -62,2 +62,4 @@ export declare type Maybe<T> = T | null | undefined;

objectFieldDefs: Maybe<GraphQLInputFieldMap>;
interfaceDef: Maybe<GraphQLInterfaceType>;
objectTypeDef: Maybe<GraphQLObjectType>;
};

@@ -88,2 +90,3 @@ export declare type FragmentInfo = {

deprecationReason?: string | null;
type?: GraphQLType;
};

@@ -90,0 +93,0 @@ export declare type Definition = {

4

package.json
{
"name": "graphql-language-service-types",
"version": "1.6.3",
"version": "1.7.0",
"description": "Types for building GraphQL language services for IDEs",

@@ -33,3 +33,3 @@ "contributors": [

},
"gitHead": "71ee5fa6d57d55c231925601f4dcbf6c1824b373"
"gitHead": "4038cf235b71eaf9a576c86800707f204ded8865"
}

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

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