@luvio/graphql-parser 0.83.0 → 0.86.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/dist/luvioGraphqlParser.js +1 -0
- package/dist/luvioGraphqlParser.mjs +1 -1
- package/dist/main.d.ts +2 -2
- package/package.json +1 -1
- package/src/main.ts +3 -1
|
@@ -10815,4 +10815,5 @@ exports.buildASTSchema = buildASTSchema;
|
|
|
10815
10815
|
exports.isScalarType = isScalarType;
|
|
10816
10816
|
exports.parse = parse;
|
|
10817
10817
|
exports.parseAndVisit = parseAndVisit;
|
|
10818
|
+
exports.print = print;
|
|
10818
10819
|
exports.stripIgnoredCharacters = stripIgnoredCharacters;
|
|
@@ -10804,4 +10804,4 @@ function parseAndVisit(source) {
|
|
|
10804
10804
|
return transform(ast);
|
|
10805
10805
|
}
|
|
10806
10806
|
|
|
10807
|
-
export { GraphQLScalarType, GraphQLSchema, Kind, buildASTSchema, isScalarType, parse, parseAndVisit, stripIgnoredCharacters };
|
|
10807
|
+
export { GraphQLScalarType, GraphQLSchema, Kind, buildASTSchema, isScalarType, parse, parseAndVisit, print, stripIgnoredCharacters };
|
package/dist/main.d.ts
CHANGED
|
@@ -3,8 +3,8 @@ import { buildASTSchema } from 'graphql/utilities';
|
|
|
3
3
|
import { LuvioDocumentNode, LuvioArgumentNode, LuvioDefinitionNode, LuvioObjectValueNode, LuvioOperationDefinitionNode, LuvioSelectionCustomFieldNode, LuvioSelectionNode, LuvioSelectionObjectFieldNode, LuvioSelectionScalarFieldNode, LuvioValueNode, LuvioFieldNode, LuvioVariableDefinitionNode, LuvioVariableNode, LuvioNamedTypeNode, LuvioListTypeNode, LuvioListValueNode, LuvioTypeNode } from './ast';
|
|
4
4
|
export declare function parseAndVisit(source: string): LuvioDocumentNode;
|
|
5
5
|
export type { GraphQLObjectType, GraphQLInterfaceType } from 'graphql/type';
|
|
6
|
-
export type { ListTypeNode, BooleanValueNode, EnumTypeDefinitionNode, FieldDefinitionNode, FloatValueNode, InterfaceTypeDefinitionNode, IntValueNode, NamedTypeNode, ObjectTypeDefinitionNode, StringValueNode, TypeNode, UnionTypeDefinitionNode, DocumentNode, } from 'graphql/language';
|
|
7
|
-
export { parse, Kind } from 'graphql/language';
|
|
6
|
+
export type { ListTypeNode, BooleanValueNode, EnumTypeDefinitionNode, FieldDefinitionNode, FloatValueNode, InterfaceTypeDefinitionNode, IntValueNode, NamedTypeNode, ObjectTypeDefinitionNode, StringValueNode, TypeNode, UnionTypeDefinitionNode, DocumentNode, OperationDefinitionNode, FieldNode, } from 'graphql/language';
|
|
7
|
+
export { parse, Kind, print } from 'graphql/language';
|
|
8
8
|
export { isScalarType } from 'graphql/type';
|
|
9
9
|
export { stripIgnoredCharacters } from 'graphql/utilities';
|
|
10
10
|
/**
|
package/package.json
CHANGED
package/src/main.ts
CHANGED
|
@@ -46,8 +46,10 @@ export type {
|
|
|
46
46
|
TypeNode,
|
|
47
47
|
UnionTypeDefinitionNode,
|
|
48
48
|
DocumentNode,
|
|
49
|
+
OperationDefinitionNode,
|
|
50
|
+
FieldNode,
|
|
49
51
|
} from 'graphql/language';
|
|
50
|
-
export { parse, Kind } from 'graphql/language';
|
|
52
|
+
export { parse, Kind, print } from 'graphql/language';
|
|
51
53
|
export { isScalarType } from 'graphql/type';
|
|
52
54
|
export { stripIgnoredCharacters } from 'graphql/utilities';
|
|
53
55
|
|