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

apollo-link

Package Overview
Dependencies
Maintainers
4
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apollo-link - npm Package Compare versions

Comparing version 1.2.4 to 1.2.5

7

CHANGELOG.md
# Change log
----
**NOTE:** This changelog is no longer maintained. Changes are now tracked in
the top level [`CHANGELOG.md`](https://github.com/apollographql/apollo-link/blob/master/CHANGELOG.md).
----
### 1.2.4

@@ -4,0 +11,0 @@

4

lib/types.d.ts

@@ -20,3 +20,5 @@ import Observable from 'zen-observable-ts';

}
export declare type FetchResult<C = Record<string, any>, E = Record<string, any>> = ExecutionResult & {
export declare type FetchResult<TData = {
[key: string]: any;
}, C = Record<string, any>, E = Record<string, any>> = ExecutionResult<TData> & {
extensions?: E;

@@ -23,0 +25,0 @@ context?: C;

{
"name": "apollo-link",
"version": "1.2.4",
"version": "1.2.5",
"description": "Flexible, lightweight transport layer for GraphQL",

@@ -42,3 +42,3 @@ "author": "Evans Hauser <evanshauser@gmail.com>",

"apollo-utilities": "^1.0.0",
"zen-observable-ts": "^0.8.11"
"zen-observable-ts": "^0.8.12"
},

@@ -51,3 +51,3 @@ "peerDependencies": {

"@types/jest": "22.2.3",
"@types/node": "9.6.39",
"@types/node": "9.6.40",
"browserify": "16.2.3",

@@ -58,3 +58,3 @@ "graphql": "14.0.2",

"rimraf": "2.6.1",
"rollup": "0.67.3",
"rollup": "0.67.4",
"ts-jest": "22.4.6",

@@ -61,0 +61,0 @@ "tslint": "5.11.0",

@@ -24,5 +24,6 @@ import Observable from 'zen-observable-ts';

export type FetchResult<
TData = { [key: string]: any },
C = Record<string, any>,
E = Record<string, any>
> = ExecutionResult & {
> = ExecutionResult<TData> & {
extensions?: E;

@@ -29,0 +30,0 @@ context?: C;

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