@orion-js/graphql 3.5.0 → 3.5.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/lib/index.d.ts +2 -2
- package/lib/index.js +2 -2
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -2,11 +2,11 @@ import subscription from './subscription';
|
|
|
2
2
|
import startGraphQL from './startGraphQL';
|
|
3
3
|
import startGraphiQL from './startGraphiQL';
|
|
4
4
|
import resolversSchemas from './resolversSchemas';
|
|
5
|
-
import
|
|
5
|
+
import ResolverParamsInfo from './resolversSchemas/ResolverParamsInfo';
|
|
6
6
|
import serializeSchema from './resolversSchemas/serializeSchema';
|
|
7
7
|
import getBasicResultQuery from './resolversSchemas/getBasicResultQuery';
|
|
8
8
|
import * as GraphQL from 'graphql';
|
|
9
|
-
export { GraphQL, startGraphQL, startGraphiQL, resolversSchemas,
|
|
9
|
+
export { GraphQL, startGraphQL, startGraphiQL, resolversSchemas, ResolverParamsInfo, serializeSchema, subscription, getBasicResultQuery };
|
|
10
10
|
export * from './types';
|
|
11
11
|
export * from './service';
|
|
12
12
|
export * from './websockerViewer';
|
package/lib/index.js
CHANGED
|
@@ -29,7 +29,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
29
29
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
30
30
|
};
|
|
31
31
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
32
|
-
exports.getBasicResultQuery = exports.subscription = exports.serializeSchema = exports.
|
|
32
|
+
exports.getBasicResultQuery = exports.subscription = exports.serializeSchema = exports.ResolverParamsInfo = exports.resolversSchemas = exports.startGraphiQL = exports.startGraphQL = exports.GraphQL = void 0;
|
|
33
33
|
const subscription_1 = __importDefault(require("./subscription"));
|
|
34
34
|
exports.subscription = subscription_1.default;
|
|
35
35
|
const startGraphQL_1 = __importDefault(require("./startGraphQL"));
|
|
@@ -39,7 +39,7 @@ exports.startGraphiQL = startGraphiQL_1.default;
|
|
|
39
39
|
const resolversSchemas_1 = __importDefault(require("./resolversSchemas"));
|
|
40
40
|
exports.resolversSchemas = resolversSchemas_1.default;
|
|
41
41
|
const ResolverParamsInfo_1 = __importDefault(require("./resolversSchemas/ResolverParamsInfo"));
|
|
42
|
-
exports.
|
|
42
|
+
exports.ResolverParamsInfo = ResolverParamsInfo_1.default;
|
|
43
43
|
const serializeSchema_1 = __importDefault(require("./resolversSchemas/serializeSchema"));
|
|
44
44
|
exports.serializeSchema = serializeSchema_1.default;
|
|
45
45
|
const getBasicResultQuery_1 = __importDefault(require("./resolversSchemas/getBasicResultQuery"));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orion-js/graphql",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.1",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"author": "nicolaslopezj",
|
|
6
6
|
"license": "MIT",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"publishConfig": {
|
|
52
52
|
"access": "public"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "17da2dda5b7604786e8b77fcbeb57a902958350e"
|
|
55
55
|
}
|