graphql 14.5.2 → 14.5.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphql",
3
- "version": "14.5.2",
3
+ "version": "14.5.3",
4
4
  "description": "A Query Language and Runtime which can target any service.",
5
5
  "license": "MIT",
6
6
  "main": "index",
@@ -1,5 +1,5 @@
1
1
  import { GraphQLInputType } from '../type/definition';
2
- import { GraphQLError } from 'tstypes/error';
2
+ import { GraphQLError } from '../error';
3
3
 
4
4
  type OnErrorCB = (
5
5
  path: ReadonlyArray<string | number>,
@@ -3,7 +3,7 @@ import { DocumentNode } from '../language/ast';
3
3
  import { GraphQLSchema } from '../type/schema';
4
4
  import { TypeInfo } from '../utilities/TypeInfo';
5
5
  import { ValidationRule, SDLValidationRule } from './ValidationContext';
6
- import Maybe from 'tstypes/tsutils/Maybe';
6
+ import Maybe from '../tsutils/Maybe';
7
7
 
8
8
  /**
9
9
  * Implements the "Validation" section of the spec.
package/version.js CHANGED
@@ -13,7 +13,7 @@ exports.versionInfo = exports.version = void 0;
13
13
  /**
14
14
  * A string containing the version of the GraphQL.js library
15
15
  */
16
- var version = '14.5.2';
16
+ var version = '14.5.3';
17
17
  /**
18
18
  * An object containing the components of the GraphQL.js version string
19
19
  */
@@ -22,7 +22,7 @@ exports.version = version;
22
22
  var versionInfo = Object.freeze({
23
23
  major: 14,
24
24
  minor: 5,
25
- patch: 2,
25
+ patch: 3,
26
26
  preReleaseTag: null
27
27
  });
28
28
  exports.versionInfo = versionInfo;
package/version.js.flow CHANGED
@@ -8,7 +8,7 @@
8
8
  /**
9
9
  * A string containing the version of the GraphQL.js library
10
10
  */
11
- export const version = '14.5.2';
11
+ export const version = '14.5.3';
12
12
 
13
13
  /**
14
14
  * An object containing the components of the GraphQL.js version string
@@ -16,6 +16,6 @@ export const version = '14.5.2';
16
16
  export const versionInfo = Object.freeze({
17
17
  major: 14,
18
18
  minor: 5,
19
- patch: 2,
19
+ patch: 3,
20
20
  preReleaseTag: null,
21
21
  });
package/version.mjs CHANGED
@@ -6,7 +6,7 @@
6
6
  /**
7
7
  * A string containing the version of the GraphQL.js library
8
8
  */
9
- export var version = '14.5.2';
9
+ export var version = '14.5.3';
10
10
  /**
11
11
  * An object containing the components of the GraphQL.js version string
12
12
  */
@@ -14,6 +14,6 @@ export var version = '14.5.2';
14
14
  export var versionInfo = Object.freeze({
15
15
  major: 14,
16
16
  minor: 5,
17
- patch: 2,
17
+ patch: 3,
18
18
  preReleaseTag: null
19
19
  });