graphql-playground-middleware-koa
Advanced tools
Comparing version 1.6.17 to 1.6.18
@@ -6,2 +6,13 @@ # Change Log | ||
## [1.6.18](https://github.com/graphcool/graphql-playground/compare/graphql-playground-middleware-koa@1.6.16...graphql-playground-middleware-koa@1.6.18) (2020-08-30) | ||
### Bug Fixes | ||
* Koa middleware interface ([#1242](https://github.com/graphcool/graphql-playground/issues/1242)) ([b596775](https://github.com/graphcool/graphql-playground/commit/b5967759f05cc610f615ec73744dfa3cda156fe3)) | ||
## 1.6.16 (2020-06-07) | ||
@@ -8,0 +19,0 @@ |
@@ -1,6 +0,7 @@ | ||
import { Context } from 'koa'; | ||
import { Context, Next } from 'koa'; | ||
import { MiddlewareOptions } from 'graphql-playground-html'; | ||
export declare type KoaPlaygroundMiddleware = (ctx: Context, next: () => void) => void; | ||
export declare type Register = (options: MiddlewareOptions) => KoaPlaygroundMiddleware; | ||
export declare type KoaPlaygroundMiddlewareOptions = MiddlewareOptions; | ||
export declare type KoaPlaygroundMiddleware = (ctx: Context, next: Next) => Promise<void>; | ||
export declare type Register = (options: KoaPlaygroundMiddlewareOptions) => KoaPlaygroundMiddleware; | ||
declare const koa: Register; | ||
export default koa; |
{ | ||
"name": "graphql-playground-middleware-koa", | ||
"version": "1.6.17", | ||
"version": "1.6.18", | ||
"homepage": "https://github.com/graphcool/graphql-playground/tree/master/packages/graphql-playground-middleware-koa", | ||
@@ -42,4 +42,5 @@ "description": "GraphQL IDE for better development workflows (GraphQL Subscriptions, interactive docs & collaboration).", | ||
"dependencies": { | ||
"graphql-playground-html": "1.6.25" | ||
} | ||
"graphql-playground-html": "^1.6.26" | ||
}, | ||
"gitHead": "53d233f9deb9dcc86f99e41268ff92b6367e0713" | ||
} |
Sorry, the diff of this file is not supported yet
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
10237
7
74
+ Addedgraphql-playground-html@1.6.30(transitive)
- Removedgraphql-playground-html@1.6.25(transitive)