@lewebsimple/nuxt-graphql 0.6.5 → 0.6.6
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.d.mts +1 -1
- package/dist/module.json +1 -1
- package/dist/module.mjs +2 -1
- package/package.json +1 -1
package/dist/module.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as _nuxt_schema from '@nuxt/schema';
|
|
2
2
|
import { HeadersInput } from '../dist/runtime/shared/lib/headers.js';
|
|
3
|
-
import { CacheConfig } from '../dist/runtime/
|
|
3
|
+
import { CacheConfig } from '../dist/runtime/shared/lib/types.js';
|
|
4
4
|
|
|
5
5
|
type LocalSchemaDef = {
|
|
6
6
|
type: "local";
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -203,7 +203,7 @@ function addUniversalTemplate({ filename, getContents, emitTs }) {
|
|
|
203
203
|
return modulePath;
|
|
204
204
|
}
|
|
205
205
|
|
|
206
|
-
const version = "0.6.
|
|
206
|
+
const version = "0.6.6";
|
|
207
207
|
|
|
208
208
|
async function getDocuments(documentsGlob) {
|
|
209
209
|
try {
|
|
@@ -456,6 +456,7 @@ const module$1 = defineNuxtModule({
|
|
|
456
456
|
addImportsDir(resolveModule("./runtime/app/composables"));
|
|
457
457
|
addImportsDir(resolveModule("./runtime/shared/utils"));
|
|
458
458
|
addServerImportsDir(resolveModule("./runtime/server/utils"));
|
|
459
|
+
addServerImportsDir(resolveModule("./runtime/shared/utils"));
|
|
459
460
|
}
|
|
460
461
|
});
|
|
461
462
|
|