@nuxt/schema-nightly 4.2.2-29421562.4e19c37c → 4.2.2-29421813.ff50fc66

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/index.d.mts CHANGED
@@ -409,6 +409,14 @@ interface Nuxt {
409
409
  _debug?: NuxtDebugContext;
410
410
  /** Async local storage for current running Nuxt module instance. */
411
411
  _asyncLocalStorageModule?: AsyncLocalStorage<NuxtModule>;
412
+ /**
413
+ * Module options functions collected from moduleDependencies.
414
+ * @internal
415
+ */
416
+ _moduleOptionsFunctions?: Map<string | NuxtModule, Array<() => {
417
+ defaults?: Record<string, unknown>;
418
+ overrides?: Record<string, unknown>;
419
+ }>>;
412
420
  /** The resolved Nuxt configuration. */
413
421
  options: NuxtOptions;
414
422
  hooks: Hookable<NuxtHooks>;
package/dist/index.d.ts CHANGED
@@ -409,6 +409,14 @@ interface Nuxt {
409
409
  _debug?: NuxtDebugContext;
410
410
  /** Async local storage for current running Nuxt module instance. */
411
411
  _asyncLocalStorageModule?: AsyncLocalStorage<NuxtModule>;
412
+ /**
413
+ * Module options functions collected from moduleDependencies.
414
+ * @internal
415
+ */
416
+ _moduleOptionsFunctions?: Map<string | NuxtModule, Array<() => {
417
+ defaults?: Record<string, unknown>;
418
+ overrides?: Record<string, unknown>;
419
+ }>>;
412
420
  /** The resolved Nuxt configuration. */
413
421
  options: NuxtOptions;
414
422
  hooks: Hookable<NuxtHooks>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxt/schema-nightly",
3
- "version": "4.2.2-29421562.4e19c37c",
3
+ "version": "4.2.2-29421813.ff50fc66",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/nuxt/nuxt.git",