apollo-link
Advanced tools
Comparing version 1.2.4 to 1.2.5
# 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 @@ |
@@ -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; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
94459
1976
0
Updatedzen-observable-ts@^0.8.12