@magidoc/rollup-plugin-fetch-gql-schema
Advanced tools
Comparing version 2.14.3 to 2.14.4
import type { Plugin } from 'rollup'; | ||
import { Method } from './schema/query.js'; | ||
export type { Method }; | ||
export declare type PluginOptions = { | ||
export type PluginOptions = { | ||
/** | ||
@@ -6,0 +6,0 @@ * The URL the of the GraphQL API from which to fetch the GraphQL Schema using the introspection query. |
import { IntrospectionQuery } from 'graphql'; | ||
declare type Parameters = { | ||
type Parameters = { | ||
query?: string; | ||
@@ -7,4 +7,4 @@ method?: Method; | ||
}; | ||
export declare type Method = 'GET' | 'POST' | 'PUT' | 'DELETE'; | ||
export type Method = 'GET' | 'POST' | 'PUT' | 'DELETE'; | ||
export default function queryGraphQLSchema(url: string, parameters: Parameters): Promise<IntrospectionQuery>; | ||
export {}; |
@@ -5,3 +5,3 @@ { | ||
"private": false, | ||
"version": "2.14.3", | ||
"version": "2.14.4", | ||
"type": "module", | ||
@@ -29,10 +29,10 @@ "license": "MIT", | ||
"devDependencies": { | ||
"@types/node": "^18.11.7", | ||
"@types/node": "^18.11.9", | ||
"@types/prettier": "^2.7.1", | ||
"@vitest/coverage-c8": "^0.24.3", | ||
"@vitest/coverage-c8": "^0.25.2", | ||
"nock": "^13.2.9", | ||
"rollup": "^3.2.3", | ||
"typescript": "^4.8.4", | ||
"vite": "^3.2.0", | ||
"vitest": "^0.24.3" | ||
"rollup": "^3.3.0", | ||
"typescript": "^4.9.3", | ||
"vite": "^3.2.4", | ||
"vitest": "^0.25.2" | ||
}, | ||
@@ -39,0 +39,0 @@ "scripts": { |
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
15062