Socket
Socket
Sign inDemoInstall

@graphql-inspector/validate-command

Package Overview
Dependencies
42
Maintainers
2
Versions
516
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.0-canary.485af9a to 0.0.0-canary.4c9888f

index.js

11

index.d.ts

@@ -5,3 +5,3 @@ import { GlobalArgs, CommandFactory } from '@graphql-inspector/commands';

export { CommandFactory };
export declare function handler({ schema, documents, strictFragments, maxDepth, apollo, keepClientFields, failOnDeprecated, filter, }: {
export declare function handler({ schema, documents, strictFragments, maxDepth, apollo, keepClientFields, failOnDeprecated, filter, onlyErrors, relativePaths, output, silent, }: {
schema: GraphQLSchema;

@@ -15,2 +15,6 @@ documents: DocumentSource[];

filter?: string[];
onlyErrors?: boolean;
relativePaths?: boolean;
output?: string;
silent?: boolean;
}): void;

@@ -26,3 +30,8 @@ declare const _default: CommandFactory<{}, {

filter?: string[] | undefined;
onlyErrors?: boolean | undefined;
relativePaths?: boolean | undefined;
output?: string | undefined;
silent?: boolean | undefined;
ignore?: string[] | undefined;
} & GlobalArgs>;
export default _default;

24

package.json
{
"name": "@graphql-inspector/validate-command",
"version": "0.0.0-canary.485af9a",
"version": "0.0.0-canary.4c9888f",
"description": "Validate Documents in GraphQL Inspector",
"sideEffects": false,
"peerDependencies": {
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0"
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"@graphql-inspector/commands": "0.0.0-canary.485af9a",
"@graphql-inspector/core": "0.0.0-canary.485af9a",
"@graphql-inspector/logger": "0.0.0-canary.485af9a",
"@graphql-inspector/commands": "0.0.0-canary.4c9888f",
"@graphql-inspector/core": "0.0.0-canary.4c9888f",
"@graphql-inspector/logger": "0.0.0-canary.4c9888f",
"tslib": "^2.0.0"

@@ -32,8 +32,18 @@ },

"license": "MIT",
"main": "index.cjs.js",
"module": "index.esm.js",
"main": "index.js",
"module": "index.mjs",
"typings": "index.d.ts",
"typescript": {
"definition": "index.d.ts"
},
"exports": {
".": {
"require": "./index.js",
"import": "./index.mjs"
},
"./*": {
"require": "./*.js",
"import": "./*.mjs"
}
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc