Socket
Socket
Sign inDemoInstall

graphql-language-service-types

Package Overview
Dependencies
1
Maintainers
8
Versions
62
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.6.0-alpha.4 to 1.6.0-alpha.5

7

CHANGELOG.md

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

# [1.6.0-alpha.5](https://github.com/graphql/graphiql/compare/graphql-language-service-types@1.6.0-alpha.4...graphql-language-service-types@1.6.0-alpha.5) (2020-04-06)
### Features
- export more functions ([#1264](https://github.com/graphql/graphiql/issues/1264)) ([bd01fdd](https://github.com/graphql/graphiql/commit/bd01fdd95fddb74b416213cdea17c1e1872ca513))
- upgrade to graphql@15.0.0 for [#1191](https://github.com/graphql/graphiql/issues/1191) ([#1204](https://github.com/graphql/graphiql/issues/1204)) ([f13c8e9](https://github.com/graphql/graphiql/commit/f13c8e9d0e66df4b051b332c7d02f4bb83e07ffd))
# [1.6.0-alpha.4](https://github.com/graphql/graphiql/compare/graphql-language-service-types@1.6.0-alpha.3...graphql-language-service-types@1.6.0-alpha.4) (2020-04-03)

@@ -8,0 +15,0 @@

@@ -120,2 +120,10 @@ import { Diagnostic as DiagnosticType, Position as PositionType, CompletionItem as CompletionItemType } from 'vscode-languageserver-protocol';

};
export declare type ContextTokenForCodeMirror = {
start: number;
end: number;
string: string;
type: string | null;
state: State;
};
export declare type ContextTokenUnion = ContextToken | ContextTokenForCodeMirror;
export declare type AllTypeInfo = {

@@ -148,2 +156,6 @@ type: Maybe<GraphQLType>;

export declare type Diagnostic = DiagnosticType;
export declare type CompletionItemBase = {
label: string;
isDeprecated?: boolean;
};
export declare type CompletionItem = CompletionItemType & {

@@ -153,2 +165,9 @@ isDeprecated?: boolean;

};
export declare type CompletionItemForCodeMirror = {
label: string;
type?: GraphQLType;
documentation: string | null | undefined;
isDeprecated?: boolean;
deprecationReason: string | null | undefined;
};
export declare type Definition = {

@@ -155,0 +174,0 @@ path: Uri;

@@ -120,2 +120,10 @@ import { Diagnostic as DiagnosticType, Position as PositionType, CompletionItem as CompletionItemType } from 'vscode-languageserver-protocol';

};
export declare type ContextTokenForCodeMirror = {
start: number;
end: number;
string: string;
type: string | null;
state: State;
};
export declare type ContextTokenUnion = ContextToken | ContextTokenForCodeMirror;
export declare type AllTypeInfo = {

@@ -148,2 +156,6 @@ type: Maybe<GraphQLType>;

export declare type Diagnostic = DiagnosticType;
export declare type CompletionItemBase = {
label: string;
isDeprecated?: boolean;
};
export declare type CompletionItem = CompletionItemType & {

@@ -153,2 +165,9 @@ isDeprecated?: boolean;

};
export declare type CompletionItemForCodeMirror = {
label: string;
type?: GraphQLType;
documentation: string | null | undefined;
isDeprecated?: boolean;
deprecationReason: string | null | undefined;
};
export declare type Definition = {

@@ -155,0 +174,0 @@ path: Uri;

10

package.json
{
"name": "graphql-language-service-types",
"version": "1.6.0-alpha.4",
"version": "1.6.0-alpha.5",
"description": "Types for building GraphQL language services for IDEs",

@@ -27,11 +27,9 @@ "contributors": [

"peerDependencies": {
"graphql": "^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
"graphql": "^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0"
},
"dependencies": {
"graphql-config": "3.0.0-rc.0"
},
"devDependencies": {
"graphql-config": "3.0.0-rc.2",
"vscode-languageserver-types": "3.15.0"
},
"gitHead": "c4d82b0e5263e9d516bf28f423d321d81a13356a"
"gitHead": "b8f9af6a35ce599d381c77ace06a239144618680"
}
dist/index.d.ts.map

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc