nuxt-graphql-middleware 5.0.0-alpha.0 → 5.0.0-alpha.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/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -17,7 +17,7 @@ import colors from 'picocolors';
|
|
|
17
17
|
import { validateGraphQlDocuments } from '@graphql-tools/utils';
|
|
18
18
|
|
|
19
19
|
const name = "nuxt-graphql-middleware";
|
|
20
|
-
const version = "5.0.0-alpha.
|
|
20
|
+
const version = "5.0.0-alpha.1";
|
|
21
21
|
|
|
22
22
|
const DEVTOOLS_UI_ROUTE = "/__nuxt-graphql-middleware";
|
|
23
23
|
const DEVTOOLS_UI_LOCAL_PORT = 3300;
|
|
@@ -2,7 +2,7 @@ export declare enum GraphqlMiddlewareTemplate {
|
|
|
2
2
|
/**
|
|
3
3
|
* Contains the TS definitions for all GraphQL queries, mutations and fragments.
|
|
4
4
|
*/
|
|
5
|
-
OperationTypes = "graphql-operations.
|
|
5
|
+
OperationTypes = "graphql-operations.ts",
|
|
6
6
|
/**
|
|
7
7
|
* Signature for the GraphQL composable arguments and return types.
|
|
8
8
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export var GraphqlMiddlewareTemplate = /* @__PURE__ */ ((GraphqlMiddlewareTemplate2) => {
|
|
2
|
-
GraphqlMiddlewareTemplate2["OperationTypes"] = "graphql-operations.
|
|
2
|
+
GraphqlMiddlewareTemplate2["OperationTypes"] = "graphql-operations.ts";
|
|
3
3
|
GraphqlMiddlewareTemplate2["ComposableContext"] = "nuxt-graphql-middleware/generated-types.d.ts";
|
|
4
4
|
GraphqlMiddlewareTemplate2["Documents"] = "nuxt-graphql-middleware/graphql-documents.mjs";
|
|
5
5
|
return GraphqlMiddlewareTemplate2;
|