Socket
Socket
Sign inDemoInstall

apollo-server-types

Package Overview
Dependencies
Maintainers
1
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apollo-server-types - npm Package Compare versions

Comparing version 0.2.3 to 0.2.4

4

dist/index.d.ts

@@ -32,3 +32,3 @@ import { Request, Response } from 'apollo-server-env';

export interface GraphQLResponse {
data?: Record<string, any>;
data?: Record<string, any> | null;
errors?: ReadonlyArray<GraphQLFormattedError>;

@@ -67,3 +67,3 @@ extensions?: Record<string, any>;

export declare type GraphQLExecutionResult = {
data?: Record<string, any>;
data?: Record<string, any> | null;
errors?: ReadonlyArray<GraphQLError>;

@@ -70,0 +70,0 @@ extensions?: Record<string, any>;

{
"name": "apollo-server-types",
"version": "0.2.3",
"version": "0.2.4",
"description": "Apollo Server shared types",

@@ -21,3 +21,3 @@ "main": "dist/index.js",

},
"gitHead": "92ea402a90bf9817c9b887707abbd77dcf5edcb4"
"gitHead": "a1fbf95fc01739d5cbaa59919149bb85c563fdaa"
}

@@ -44,3 +44,3 @@ import { Request, Response } from 'apollo-server-env';

export interface GraphQLResponse {
data?: Record<string, any>;
data?: Record<string, any> | null;
errors?: ReadonlyArray<GraphQLFormattedError>;

@@ -107,5 +107,5 @@ extensions?: Record<string, any>;

export type GraphQLExecutionResult = {
data?: Record<string, any>;
data?: Record<string, any> | null;
errors?: ReadonlyArray<GraphQLError>;
extensions?: Record<string, any>;
};

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