graphql 15.5.2 → 15.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/language/parser.d.ts +2 -2
- package/package.json +1 -1
- package/type/definition.js +1 -0
- package/type/definition.js.flow +1 -0
- package/type/definition.mjs +1 -0
- package/version.js +2 -2
- package/version.js.flow +2 -2
- package/version.mjs +2 -2
package/language/parser.d.ts
CHANGED
|
@@ -218,11 +218,11 @@ export class Parser {
|
|
|
218
218
|
/**
|
|
219
219
|
* Arguments[Const] : ( Argument[?Const]+ )
|
|
220
220
|
*/
|
|
221
|
-
parseArguments: Array<ArgumentNode>;
|
|
221
|
+
parseArguments(): Array<ArgumentNode>;
|
|
222
222
|
/**
|
|
223
223
|
* Argument[Const] : Name : Value[?Const]
|
|
224
224
|
*/
|
|
225
|
-
parseArgument: ArgumentNode;
|
|
225
|
+
parseArgument(): ArgumentNode;
|
|
226
226
|
/**
|
|
227
227
|
* Corresponds to both FragmentSpread and InlineFragment in the spec.
|
|
228
228
|
*
|
package/package.json
CHANGED
package/type/definition.js
CHANGED
|
@@ -1166,6 +1166,7 @@ var GraphQLInputObjectType = /*#__PURE__*/function () {
|
|
|
1166
1166
|
description: field.description,
|
|
1167
1167
|
type: field.type,
|
|
1168
1168
|
defaultValue: field.defaultValue,
|
|
1169
|
+
deprecationReason: field.deprecationReason,
|
|
1169
1170
|
extensions: field.extensions,
|
|
1170
1171
|
astNode: field.astNode
|
|
1171
1172
|
};
|
package/type/definition.js.flow
CHANGED
|
@@ -1547,6 +1547,7 @@ export class GraphQLInputObjectType {
|
|
|
1547
1547
|
description: field.description,
|
|
1548
1548
|
type: field.type,
|
|
1549
1549
|
defaultValue: field.defaultValue,
|
|
1550
|
+
deprecationReason: field.deprecationReason,
|
|
1550
1551
|
extensions: field.extensions,
|
|
1551
1552
|
astNode: field.astNode,
|
|
1552
1553
|
}));
|
package/type/definition.mjs
CHANGED
|
@@ -1049,6 +1049,7 @@ export var GraphQLInputObjectType = /*#__PURE__*/function () {
|
|
|
1049
1049
|
description: field.description,
|
|
1050
1050
|
type: field.type,
|
|
1051
1051
|
defaultValue: field.defaultValue,
|
|
1052
|
+
deprecationReason: field.deprecationReason,
|
|
1052
1053
|
extensions: field.extensions,
|
|
1053
1054
|
astNode: field.astNode
|
|
1054
1055
|
};
|
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.5.
|
|
16
|
+
var version = '15.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: 15,
|
|
24
24
|
minor: 5,
|
|
25
|
-
patch:
|
|
25
|
+
patch: 3,
|
|
26
26
|
preReleaseTag: null
|
|
27
27
|
});
|
|
28
28
|
exports.versionInfo = versionInfo;
|
package/version.js.flow
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
/**
|
|
8
8
|
* A string containing the version of the GraphQL.js library
|
|
9
9
|
*/
|
|
10
|
-
export const version = '15.5.
|
|
10
|
+
export const version = '15.5.3';
|
|
11
11
|
|
|
12
12
|
/**
|
|
13
13
|
* An object containing the components of the GraphQL.js version string
|
|
@@ -15,6 +15,6 @@ export const version = '15.5.2';
|
|
|
15
15
|
export const versionInfo = Object.freeze({
|
|
16
16
|
major: 15,
|
|
17
17
|
minor: 5,
|
|
18
|
-
patch:
|
|
18
|
+
patch: 3,
|
|
19
19
|
preReleaseTag: null,
|
|
20
20
|
});
|
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 = '15.5.
|
|
9
|
+
export var version = '15.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 = '15.5.2';
|
|
|
14
14
|
export var versionInfo = Object.freeze({
|
|
15
15
|
major: 15,
|
|
16
16
|
minor: 5,
|
|
17
|
-
patch:
|
|
17
|
+
patch: 3,
|
|
18
18
|
preReleaseTag: null
|
|
19
19
|
});
|