graphql 15.5.3 → 15.6.0
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 +1 -0
- package/language/index.d.ts +1 -0
- package/language/visitor.d.ts +9 -0
- package/package.json +1 -1
- package/version.js +3 -3
- package/version.js.flow +3 -3
- package/version.mjs +3 -3
package/index.d.ts
CHANGED
package/language/index.d.ts
CHANGED
package/language/visitor.d.ts
CHANGED
|
@@ -49,9 +49,18 @@ export type VisitFn<TAnyNode, TVisitedNode = TAnyNode> = (
|
|
|
49
49
|
|
|
50
50
|
/**
|
|
51
51
|
* A KeyMap describes each the traversable properties of each kind of node.
|
|
52
|
+
*
|
|
53
|
+
* @deprecated Please using ASTVisitorKeyMap instead
|
|
52
54
|
*/
|
|
53
55
|
export type VisitorKeyMap<T> = { [P in keyof T]: ReadonlyArray<keyof T[P]> };
|
|
54
56
|
|
|
57
|
+
/**
|
|
58
|
+
* A KeyMap describes each the traversable properties of each kind of node.
|
|
59
|
+
*/
|
|
60
|
+
export type ASTVisitorKeyMap = {
|
|
61
|
+
[P in keyof ASTKindToNode]?: ReadonlyArray<keyof ASTKindToNode[P]>;
|
|
62
|
+
};
|
|
63
|
+
|
|
55
64
|
// TODO: Should be `[]`, but that requires TypeScript@3
|
|
56
65
|
type EmptyTuple = Array<never>;
|
|
57
66
|
|
package/package.json
CHANGED
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 = '15.
|
|
16
|
+
var version = '15.6.0';
|
|
17
17
|
/**
|
|
18
18
|
* An object containing the components of the GraphQL.js version string
|
|
19
19
|
*/
|
|
@@ -21,8 +21,8 @@ var version = '15.5.3';
|
|
|
21
21
|
exports.version = version;
|
|
22
22
|
var versionInfo = Object.freeze({
|
|
23
23
|
major: 15,
|
|
24
|
-
minor:
|
|
25
|
-
patch:
|
|
24
|
+
minor: 6,
|
|
25
|
+
patch: 0,
|
|
26
26
|
preReleaseTag: null
|
|
27
27
|
});
|
|
28
28
|
exports.versionInfo = versionInfo;
|
package/version.js.flow
CHANGED
|
@@ -7,14 +7,14 @@
|
|
|
7
7
|
/**
|
|
8
8
|
* A string containing the version of the GraphQL.js library
|
|
9
9
|
*/
|
|
10
|
-
export const version = '15.
|
|
10
|
+
export const version = '15.6.0';
|
|
11
11
|
|
|
12
12
|
/**
|
|
13
13
|
* An object containing the components of the GraphQL.js version string
|
|
14
14
|
*/
|
|
15
15
|
export const versionInfo = Object.freeze({
|
|
16
16
|
major: 15,
|
|
17
|
-
minor:
|
|
18
|
-
patch:
|
|
17
|
+
minor: 6,
|
|
18
|
+
patch: 0,
|
|
19
19
|
preReleaseTag: null,
|
|
20
20
|
});
|
package/version.mjs
CHANGED
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
/**
|
|
7
7
|
* A string containing the version of the GraphQL.js library
|
|
8
8
|
*/
|
|
9
|
-
export var version = '15.
|
|
9
|
+
export var version = '15.6.0';
|
|
10
10
|
/**
|
|
11
11
|
* An object containing the components of the GraphQL.js version string
|
|
12
12
|
*/
|
|
13
13
|
|
|
14
14
|
export var versionInfo = Object.freeze({
|
|
15
15
|
major: 15,
|
|
16
|
-
minor:
|
|
17
|
-
patch:
|
|
16
|
+
minor: 6,
|
|
17
|
+
patch: 0,
|
|
18
18
|
preReleaseTag: null
|
|
19
19
|
});
|