@graphql-inspector/diff-command 3.0.0 → 3.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -13,5 +13,6 @@ declare const _default: CommandFactory<{}, {
13
13
  newSchema: string;
14
14
  rule?: (string | number)[] | undefined;
15
15
  onComplete?: string | undefined;
16
+ onUsage?: string | undefined;
16
17
  } & GlobalArgs>;
17
18
  export default _default;
package/index.js CHANGED
@@ -107,6 +107,7 @@ const index = commands.createCommand((api) => {
107
107
  newSchema,
108
108
  rules: args.rule,
109
109
  onComplete: args.onComplete,
110
+ onUsage: args.onUsage,
110
111
  });
111
112
  }
112
113
  catch (error) {
package/index.mjs CHANGED
@@ -103,6 +103,7 @@ const index = createCommand((api) => {
103
103
  newSchema,
104
104
  rules: args.rule,
105
105
  onComplete: args.onComplete,
106
+ onUsage: args.onUsage,
106
107
  });
107
108
  }
108
109
  catch (error) {
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@graphql-inspector/diff-command",
3
- "version": "3.0.0",
3
+ "version": "3.1.1",
4
4
  "description": "Compare GraphQL Schemas",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {
7
- "graphql": "^0.13.0 || ^14.0.0 || ^15.0.0"
7
+ "graphql": "^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
8
8
  },
9
9
  "dependencies": {
10
- "@graphql-inspector/commands": "3.0.0",
11
- "@graphql-inspector/core": "3.0.0",
12
- "@graphql-inspector/logger": "3.0.0",
10
+ "@graphql-inspector/commands": "3.1.1",
11
+ "@graphql-inspector/core": "3.1.1",
12
+ "@graphql-inspector/logger": "3.1.1",
13
13
  "tslib": "^2.0.0"
14
14
  },
15
15
  "repository": {