@nuxt/devtools-kit 3.2.4 → 3.4.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/index.d.cts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as _nuxt_schema from '@nuxt/schema';
2
2
  import { BirpcGroup } from 'birpc';
3
3
  import { ExecaChildProcess } from 'execa';
4
- import { M as ModuleCustomTab, N as NuxtDevtoolsInfo, S as SubprocessOptions, T as TerminalState } from './shared/devtools-kit.BE8MVpwl.cjs';
4
+ import { M as ModuleCustomTab, N as NuxtDevtoolsInfo, S as SubprocessOptions, T as TerminalState } from './shared/devtools-kit.DK4FFgLu.cjs';
5
5
  import 'vue';
6
6
  import 'nuxt/schema';
7
7
  import 'unimport';
package/dist/index.d.mts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as _nuxt_schema from '@nuxt/schema';
2
2
  import { BirpcGroup } from 'birpc';
3
3
  import { ExecaChildProcess } from 'execa';
4
- import { M as ModuleCustomTab, N as NuxtDevtoolsInfo, S as SubprocessOptions, T as TerminalState } from './shared/devtools-kit.BE8MVpwl.mjs';
4
+ import { M as ModuleCustomTab, N as NuxtDevtoolsInfo, S as SubprocessOptions, T as TerminalState } from './shared/devtools-kit.DK4FFgLu.mjs';
5
5
  import 'vue';
6
6
  import 'nuxt/schema';
7
7
  import 'unimport';
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as _nuxt_schema from '@nuxt/schema';
2
2
  import { BirpcGroup } from 'birpc';
3
3
  import { ExecaChildProcess } from 'execa';
4
- import { M as ModuleCustomTab, N as NuxtDevtoolsInfo, S as SubprocessOptions, T as TerminalState } from './shared/devtools-kit.BE8MVpwl.js';
4
+ import { M as ModuleCustomTab, N as NuxtDevtoolsInfo, S as SubprocessOptions, T as TerminalState } from './shared/devtools-kit.DK4FFgLu.js';
5
5
  import 'vue';
6
6
  import 'nuxt/schema';
7
7
  import 'unimport';
@@ -620,7 +620,7 @@ interface ServerFunctions {
620
620
  getServerConfig: () => NuxtOptions;
621
621
  getServerDebugContext: () => Promise<ServerDebugContext | undefined>;
622
622
  getServerData: (token: string) => Promise<NuxtServerData>;
623
- getServerRuntimeConfig: () => Record<string, any>;
623
+ getServerRuntimeConfig: (token: string) => Promise<Record<string, any>>;
624
624
  getModuleOptions: () => ModuleOptions;
625
625
  getComponents: () => Component[];
626
626
  getComponentsRelationships: () => Promise<ComponentRelationship[]>;
@@ -634,8 +634,8 @@ interface ServerFunctions {
634
634
  getServerTasks: () => ScannedNitroTasks | null;
635
635
  getServerApp: () => NuxtApp | undefined;
636
636
  getOptions: <T extends keyof NuxtDevToolsOptions>(tab: T) => Promise<NuxtDevToolsOptions[T]>;
637
- updateOptions: <T extends keyof NuxtDevToolsOptions>(tab: T, settings: Partial<NuxtDevToolsOptions[T]>) => Promise<void>;
638
- clearOptions: () => Promise<void>;
637
+ updateOptions: <T extends keyof NuxtDevToolsOptions>(token: string, tab: T, settings: Partial<NuxtDevToolsOptions[T]>) => Promise<void>;
638
+ clearOptions: (token: string) => Promise<void>;
639
639
  checkForUpdateFor: (name: string) => Promise<PackageUpdateInfo | undefined>;
640
640
  getNpmCommand: (command: NpmCommandType, packageName: string, options?: NpmCommandOptions) => Promise<string[] | undefined>;
641
641
  runNpmCommand: (token: string, command: NpmCommandType, packageName: string, options?: NpmCommandOptions) => Promise<{
@@ -659,14 +659,14 @@ interface ServerFunctions {
659
659
  deleteStaticAsset: (token: string, filepath: string) => Promise<void>;
660
660
  renameStaticAsset: (token: string, oldPath: string, newPath: string) => Promise<void>;
661
661
  telemetryEvent: (payload: object, immediate?: boolean) => void;
662
- customTabAction: (name: string, action: number) => Promise<boolean>;
662
+ customTabAction: (token: string, name: string, action: number) => Promise<boolean>;
663
663
  runWizard: <T extends WizardActions>(token: string, name: T, ...args: GetWizardArgs<T>) => Promise<void>;
664
- openInEditor: (filepath: string) => Promise<boolean>;
664
+ openInEditor: (token: string, filepath: string) => Promise<boolean>;
665
665
  restartNuxt: (token: string, hard?: boolean) => Promise<void>;
666
666
  installNuxtModule: (token: string, name: string, dry?: boolean) => Promise<InstallModuleReturn>;
667
667
  uninstallNuxtModule: (token: string, name: string, dry?: boolean) => Promise<InstallModuleReturn>;
668
- enableTimeline: (dry: boolean) => Promise<[string, string]>;
669
- requestForAuth: (info?: string, origin?: string) => Promise<void>;
668
+ enableTimeline: (token: string, dry: boolean) => Promise<[string, string]>;
669
+ requestForAuth: (info?: string) => Promise<void>;
670
670
  verifyAuthToken: (token: string) => Promise<boolean>;
671
671
  }
672
672
  interface ClientFunctions {
@@ -620,7 +620,7 @@ interface ServerFunctions {
620
620
  getServerConfig: () => NuxtOptions;
621
621
  getServerDebugContext: () => Promise<ServerDebugContext | undefined>;
622
622
  getServerData: (token: string) => Promise<NuxtServerData>;
623
- getServerRuntimeConfig: () => Record<string, any>;
623
+ getServerRuntimeConfig: (token: string) => Promise<Record<string, any>>;
624
624
  getModuleOptions: () => ModuleOptions;
625
625
  getComponents: () => Component[];
626
626
  getComponentsRelationships: () => Promise<ComponentRelationship[]>;
@@ -634,8 +634,8 @@ interface ServerFunctions {
634
634
  getServerTasks: () => ScannedNitroTasks | null;
635
635
  getServerApp: () => NuxtApp | undefined;
636
636
  getOptions: <T extends keyof NuxtDevToolsOptions>(tab: T) => Promise<NuxtDevToolsOptions[T]>;
637
- updateOptions: <T extends keyof NuxtDevToolsOptions>(tab: T, settings: Partial<NuxtDevToolsOptions[T]>) => Promise<void>;
638
- clearOptions: () => Promise<void>;
637
+ updateOptions: <T extends keyof NuxtDevToolsOptions>(token: string, tab: T, settings: Partial<NuxtDevToolsOptions[T]>) => Promise<void>;
638
+ clearOptions: (token: string) => Promise<void>;
639
639
  checkForUpdateFor: (name: string) => Promise<PackageUpdateInfo | undefined>;
640
640
  getNpmCommand: (command: NpmCommandType, packageName: string, options?: NpmCommandOptions) => Promise<string[] | undefined>;
641
641
  runNpmCommand: (token: string, command: NpmCommandType, packageName: string, options?: NpmCommandOptions) => Promise<{
@@ -659,14 +659,14 @@ interface ServerFunctions {
659
659
  deleteStaticAsset: (token: string, filepath: string) => Promise<void>;
660
660
  renameStaticAsset: (token: string, oldPath: string, newPath: string) => Promise<void>;
661
661
  telemetryEvent: (payload: object, immediate?: boolean) => void;
662
- customTabAction: (name: string, action: number) => Promise<boolean>;
662
+ customTabAction: (token: string, name: string, action: number) => Promise<boolean>;
663
663
  runWizard: <T extends WizardActions>(token: string, name: T, ...args: GetWizardArgs<T>) => Promise<void>;
664
- openInEditor: (filepath: string) => Promise<boolean>;
664
+ openInEditor: (token: string, filepath: string) => Promise<boolean>;
665
665
  restartNuxt: (token: string, hard?: boolean) => Promise<void>;
666
666
  installNuxtModule: (token: string, name: string, dry?: boolean) => Promise<InstallModuleReturn>;
667
667
  uninstallNuxtModule: (token: string, name: string, dry?: boolean) => Promise<InstallModuleReturn>;
668
- enableTimeline: (dry: boolean) => Promise<[string, string]>;
669
- requestForAuth: (info?: string, origin?: string) => Promise<void>;
668
+ enableTimeline: (token: string, dry: boolean) => Promise<[string, string]>;
669
+ requestForAuth: (info?: string) => Promise<void>;
670
670
  verifyAuthToken: (token: string) => Promise<boolean>;
671
671
  }
672
672
  interface ClientFunctions {
@@ -620,7 +620,7 @@ interface ServerFunctions {
620
620
  getServerConfig: () => NuxtOptions;
621
621
  getServerDebugContext: () => Promise<ServerDebugContext | undefined>;
622
622
  getServerData: (token: string) => Promise<NuxtServerData>;
623
- getServerRuntimeConfig: () => Record<string, any>;
623
+ getServerRuntimeConfig: (token: string) => Promise<Record<string, any>>;
624
624
  getModuleOptions: () => ModuleOptions;
625
625
  getComponents: () => Component[];
626
626
  getComponentsRelationships: () => Promise<ComponentRelationship[]>;
@@ -634,8 +634,8 @@ interface ServerFunctions {
634
634
  getServerTasks: () => ScannedNitroTasks | null;
635
635
  getServerApp: () => NuxtApp | undefined;
636
636
  getOptions: <T extends keyof NuxtDevToolsOptions>(tab: T) => Promise<NuxtDevToolsOptions[T]>;
637
- updateOptions: <T extends keyof NuxtDevToolsOptions>(tab: T, settings: Partial<NuxtDevToolsOptions[T]>) => Promise<void>;
638
- clearOptions: () => Promise<void>;
637
+ updateOptions: <T extends keyof NuxtDevToolsOptions>(token: string, tab: T, settings: Partial<NuxtDevToolsOptions[T]>) => Promise<void>;
638
+ clearOptions: (token: string) => Promise<void>;
639
639
  checkForUpdateFor: (name: string) => Promise<PackageUpdateInfo | undefined>;
640
640
  getNpmCommand: (command: NpmCommandType, packageName: string, options?: NpmCommandOptions) => Promise<string[] | undefined>;
641
641
  runNpmCommand: (token: string, command: NpmCommandType, packageName: string, options?: NpmCommandOptions) => Promise<{
@@ -659,14 +659,14 @@ interface ServerFunctions {
659
659
  deleteStaticAsset: (token: string, filepath: string) => Promise<void>;
660
660
  renameStaticAsset: (token: string, oldPath: string, newPath: string) => Promise<void>;
661
661
  telemetryEvent: (payload: object, immediate?: boolean) => void;
662
- customTabAction: (name: string, action: number) => Promise<boolean>;
662
+ customTabAction: (token: string, name: string, action: number) => Promise<boolean>;
663
663
  runWizard: <T extends WizardActions>(token: string, name: T, ...args: GetWizardArgs<T>) => Promise<void>;
664
- openInEditor: (filepath: string) => Promise<boolean>;
664
+ openInEditor: (token: string, filepath: string) => Promise<boolean>;
665
665
  restartNuxt: (token: string, hard?: boolean) => Promise<void>;
666
666
  installNuxtModule: (token: string, name: string, dry?: boolean) => Promise<InstallModuleReturn>;
667
667
  uninstallNuxtModule: (token: string, name: string, dry?: boolean) => Promise<InstallModuleReturn>;
668
- enableTimeline: (dry: boolean) => Promise<[string, string]>;
669
- requestForAuth: (info?: string, origin?: string) => Promise<void>;
668
+ enableTimeline: (token: string, dry: boolean) => Promise<[string, string]>;
669
+ requestForAuth: (info?: string) => Promise<void>;
670
670
  verifyAuthToken: (token: string) => Promise<boolean>;
671
671
  }
672
672
  interface ClientFunctions {
package/dist/types.d.cts CHANGED
@@ -1,5 +1,5 @@
1
- import { a as ServerFunctions, C as ClientFunctions, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric } from './shared/devtools-kit.BE8MVpwl.cjs';
2
- export { A as AnalyzeBuildMeta, b as AnalyzeBuildsInfo, c as AssetEntry, d as AssetInfo, e as AssetType, f as AutoImportsWithMetadata, B as BasicModuleInfo, g as CategorizedTabs, h as ClientUpdateEvent, i as CodeServerOptions, j as CodeServerType, k as CodeSnippet, l as CompatibilityStatus, m as ComponentRelationship, n as ComponentWithRelationships, G as GetWizardArgs, o as GitHubContributor, I as ImageMeta, p as InstallModuleReturn, q as InstalledModuleInfo, r as MaintainerInfo, s as ModuleBuiltinTab, t as ModuleCompatibility, M as ModuleCustomTab, u as ModuleGlobalOptions, v as ModuleIframeTabLazyOptions, w as ModuleIframeView, x as ModuleLaunchAction, y as ModuleLaunchView, z as ModuleOptions, D as ModuleStaticInfo, E as ModuleStats, F as ModuleTabInfo, J as ModuleType, K as ModuleVNodeView, O as ModuleView, Q as NpmCommandOptions, R as NpmCommandType, U as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, V as NuxtDevtoolsServerContext, W as NuxtServerData, X as PackageManagerName, Y as PackageUpdateInfo, Z as Payload, _ as PluginInfoWithMetic, $ as RouteInfo, a0 as ScannedNitroTasks, a1 as ServerDebugContext, a2 as ServerDebugModuleMutationRecord, a3 as ServerRouteInfo, a4 as ServerRouteInput, a5 as ServerRouteInputType, a6 as ServerTaskInfo, S as SubprocessOptions, a7 as TabCategory, a8 as TerminalAction, a9 as TerminalBase, aa as TerminalInfo, T as TerminalState, ab as VSCodeIntegrationOptions, ac as VSCodeTunnelOptions, ad as VueInspectorClient, ae as VueInspectorData, af as WizardActions, ag as WizardFunctions } from './shared/devtools-kit.BE8MVpwl.cjs';
1
+ import { a as ServerFunctions, C as ClientFunctions, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric } from './shared/devtools-kit.DK4FFgLu.cjs';
2
+ export { A as AnalyzeBuildMeta, b as AnalyzeBuildsInfo, c as AssetEntry, d as AssetInfo, e as AssetType, f as AutoImportsWithMetadata, B as BasicModuleInfo, g as CategorizedTabs, h as ClientUpdateEvent, i as CodeServerOptions, j as CodeServerType, k as CodeSnippet, l as CompatibilityStatus, m as ComponentRelationship, n as ComponentWithRelationships, G as GetWizardArgs, o as GitHubContributor, I as ImageMeta, p as InstallModuleReturn, q as InstalledModuleInfo, r as MaintainerInfo, s as ModuleBuiltinTab, t as ModuleCompatibility, M as ModuleCustomTab, u as ModuleGlobalOptions, v as ModuleIframeTabLazyOptions, w as ModuleIframeView, x as ModuleLaunchAction, y as ModuleLaunchView, z as ModuleOptions, D as ModuleStaticInfo, E as ModuleStats, F as ModuleTabInfo, J as ModuleType, K as ModuleVNodeView, O as ModuleView, Q as NpmCommandOptions, R as NpmCommandType, U as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, V as NuxtDevtoolsServerContext, W as NuxtServerData, X as PackageManagerName, Y as PackageUpdateInfo, Z as Payload, _ as PluginInfoWithMetic, $ as RouteInfo, a0 as ScannedNitroTasks, a1 as ServerDebugContext, a2 as ServerDebugModuleMutationRecord, a3 as ServerRouteInfo, a4 as ServerRouteInput, a5 as ServerRouteInputType, a6 as ServerTaskInfo, S as SubprocessOptions, a7 as TabCategory, a8 as TerminalAction, a9 as TerminalBase, aa as TerminalInfo, T as TerminalState, ab as VSCodeIntegrationOptions, ac as VSCodeTunnelOptions, ad as VueInspectorClient, ae as VueInspectorData, af as WizardActions, ag as WizardFunctions } from './shared/devtools-kit.DK4FFgLu.cjs';
3
3
  import { BirpcReturn } from 'birpc';
4
4
  import { Hookable } from 'hookable';
5
5
  import { NuxtApp } from 'nuxt/app';
package/dist/types.d.mts CHANGED
@@ -1,5 +1,5 @@
1
- import { a as ServerFunctions, C as ClientFunctions, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric } from './shared/devtools-kit.BE8MVpwl.mjs';
2
- export { A as AnalyzeBuildMeta, b as AnalyzeBuildsInfo, c as AssetEntry, d as AssetInfo, e as AssetType, f as AutoImportsWithMetadata, B as BasicModuleInfo, g as CategorizedTabs, h as ClientUpdateEvent, i as CodeServerOptions, j as CodeServerType, k as CodeSnippet, l as CompatibilityStatus, m as ComponentRelationship, n as ComponentWithRelationships, G as GetWizardArgs, o as GitHubContributor, I as ImageMeta, p as InstallModuleReturn, q as InstalledModuleInfo, r as MaintainerInfo, s as ModuleBuiltinTab, t as ModuleCompatibility, M as ModuleCustomTab, u as ModuleGlobalOptions, v as ModuleIframeTabLazyOptions, w as ModuleIframeView, x as ModuleLaunchAction, y as ModuleLaunchView, z as ModuleOptions, D as ModuleStaticInfo, E as ModuleStats, F as ModuleTabInfo, J as ModuleType, K as ModuleVNodeView, O as ModuleView, Q as NpmCommandOptions, R as NpmCommandType, U as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, V as NuxtDevtoolsServerContext, W as NuxtServerData, X as PackageManagerName, Y as PackageUpdateInfo, Z as Payload, _ as PluginInfoWithMetic, $ as RouteInfo, a0 as ScannedNitroTasks, a1 as ServerDebugContext, a2 as ServerDebugModuleMutationRecord, a3 as ServerRouteInfo, a4 as ServerRouteInput, a5 as ServerRouteInputType, a6 as ServerTaskInfo, S as SubprocessOptions, a7 as TabCategory, a8 as TerminalAction, a9 as TerminalBase, aa as TerminalInfo, T as TerminalState, ab as VSCodeIntegrationOptions, ac as VSCodeTunnelOptions, ad as VueInspectorClient, ae as VueInspectorData, af as WizardActions, ag as WizardFunctions } from './shared/devtools-kit.BE8MVpwl.mjs';
1
+ import { a as ServerFunctions, C as ClientFunctions, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric } from './shared/devtools-kit.DK4FFgLu.mjs';
2
+ export { A as AnalyzeBuildMeta, b as AnalyzeBuildsInfo, c as AssetEntry, d as AssetInfo, e as AssetType, f as AutoImportsWithMetadata, B as BasicModuleInfo, g as CategorizedTabs, h as ClientUpdateEvent, i as CodeServerOptions, j as CodeServerType, k as CodeSnippet, l as CompatibilityStatus, m as ComponentRelationship, n as ComponentWithRelationships, G as GetWizardArgs, o as GitHubContributor, I as ImageMeta, p as InstallModuleReturn, q as InstalledModuleInfo, r as MaintainerInfo, s as ModuleBuiltinTab, t as ModuleCompatibility, M as ModuleCustomTab, u as ModuleGlobalOptions, v as ModuleIframeTabLazyOptions, w as ModuleIframeView, x as ModuleLaunchAction, y as ModuleLaunchView, z as ModuleOptions, D as ModuleStaticInfo, E as ModuleStats, F as ModuleTabInfo, J as ModuleType, K as ModuleVNodeView, O as ModuleView, Q as NpmCommandOptions, R as NpmCommandType, U as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, V as NuxtDevtoolsServerContext, W as NuxtServerData, X as PackageManagerName, Y as PackageUpdateInfo, Z as Payload, _ as PluginInfoWithMetic, $ as RouteInfo, a0 as ScannedNitroTasks, a1 as ServerDebugContext, a2 as ServerDebugModuleMutationRecord, a3 as ServerRouteInfo, a4 as ServerRouteInput, a5 as ServerRouteInputType, a6 as ServerTaskInfo, S as SubprocessOptions, a7 as TabCategory, a8 as TerminalAction, a9 as TerminalBase, aa as TerminalInfo, T as TerminalState, ab as VSCodeIntegrationOptions, ac as VSCodeTunnelOptions, ad as VueInspectorClient, ae as VueInspectorData, af as WizardActions, ag as WizardFunctions } from './shared/devtools-kit.DK4FFgLu.mjs';
3
3
  import { BirpcReturn } from 'birpc';
4
4
  import { Hookable } from 'hookable';
5
5
  import { NuxtApp } from 'nuxt/app';
package/dist/types.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { a as ServerFunctions, C as ClientFunctions, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric } from './shared/devtools-kit.BE8MVpwl.js';
2
- export { A as AnalyzeBuildMeta, b as AnalyzeBuildsInfo, c as AssetEntry, d as AssetInfo, e as AssetType, f as AutoImportsWithMetadata, B as BasicModuleInfo, g as CategorizedTabs, h as ClientUpdateEvent, i as CodeServerOptions, j as CodeServerType, k as CodeSnippet, l as CompatibilityStatus, m as ComponentRelationship, n as ComponentWithRelationships, G as GetWizardArgs, o as GitHubContributor, I as ImageMeta, p as InstallModuleReturn, q as InstalledModuleInfo, r as MaintainerInfo, s as ModuleBuiltinTab, t as ModuleCompatibility, M as ModuleCustomTab, u as ModuleGlobalOptions, v as ModuleIframeTabLazyOptions, w as ModuleIframeView, x as ModuleLaunchAction, y as ModuleLaunchView, z as ModuleOptions, D as ModuleStaticInfo, E as ModuleStats, F as ModuleTabInfo, J as ModuleType, K as ModuleVNodeView, O as ModuleView, Q as NpmCommandOptions, R as NpmCommandType, U as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, V as NuxtDevtoolsServerContext, W as NuxtServerData, X as PackageManagerName, Y as PackageUpdateInfo, Z as Payload, _ as PluginInfoWithMetic, $ as RouteInfo, a0 as ScannedNitroTasks, a1 as ServerDebugContext, a2 as ServerDebugModuleMutationRecord, a3 as ServerRouteInfo, a4 as ServerRouteInput, a5 as ServerRouteInputType, a6 as ServerTaskInfo, S as SubprocessOptions, a7 as TabCategory, a8 as TerminalAction, a9 as TerminalBase, aa as TerminalInfo, T as TerminalState, ab as VSCodeIntegrationOptions, ac as VSCodeTunnelOptions, ad as VueInspectorClient, ae as VueInspectorData, af as WizardActions, ag as WizardFunctions } from './shared/devtools-kit.BE8MVpwl.js';
1
+ import { a as ServerFunctions, C as ClientFunctions, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric } from './shared/devtools-kit.DK4FFgLu.js';
2
+ export { A as AnalyzeBuildMeta, b as AnalyzeBuildsInfo, c as AssetEntry, d as AssetInfo, e as AssetType, f as AutoImportsWithMetadata, B as BasicModuleInfo, g as CategorizedTabs, h as ClientUpdateEvent, i as CodeServerOptions, j as CodeServerType, k as CodeSnippet, l as CompatibilityStatus, m as ComponentRelationship, n as ComponentWithRelationships, G as GetWizardArgs, o as GitHubContributor, I as ImageMeta, p as InstallModuleReturn, q as InstalledModuleInfo, r as MaintainerInfo, s as ModuleBuiltinTab, t as ModuleCompatibility, M as ModuleCustomTab, u as ModuleGlobalOptions, v as ModuleIframeTabLazyOptions, w as ModuleIframeView, x as ModuleLaunchAction, y as ModuleLaunchView, z as ModuleOptions, D as ModuleStaticInfo, E as ModuleStats, F as ModuleTabInfo, J as ModuleType, K as ModuleVNodeView, O as ModuleView, Q as NpmCommandOptions, R as NpmCommandType, U as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, V as NuxtDevtoolsServerContext, W as NuxtServerData, X as PackageManagerName, Y as PackageUpdateInfo, Z as Payload, _ as PluginInfoWithMetic, $ as RouteInfo, a0 as ScannedNitroTasks, a1 as ServerDebugContext, a2 as ServerDebugModuleMutationRecord, a3 as ServerRouteInfo, a4 as ServerRouteInput, a5 as ServerRouteInputType, a6 as ServerTaskInfo, S as SubprocessOptions, a7 as TabCategory, a8 as TerminalAction, a9 as TerminalBase, aa as TerminalInfo, T as TerminalState, ab as VSCodeIntegrationOptions, ac as VSCodeTunnelOptions, ad as VueInspectorClient, ae as VueInspectorData, af as WizardActions, ag as WizardFunctions } from './shared/devtools-kit.DK4FFgLu.js';
3
3
  import { BirpcReturn } from 'birpc';
4
4
  import { Hookable } from 'hookable';
5
5
  import { NuxtApp } from 'nuxt/app';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nuxt/devtools-kit",
3
3
  "type": "module",
4
- "version": "3.2.4",
4
+ "version": "3.4.0",
5
5
  "license": "MIT",
6
6
  "homepage": "https://devtools.nuxt.com/module/utils-kit",
7
7
  "repository": {
@@ -41,17 +41,17 @@
41
41
  "vite": ">=6.0"
42
42
  },
43
43
  "dependencies": {
44
- "@nuxt/kit": "^4.4.2",
44
+ "@nuxt/kit": "^4.4.4",
45
45
  "execa": "^8.0.1"
46
46
  },
47
47
  "devDependencies": {
48
- "@nuxt/schema": "^4.4.2",
48
+ "@nuxt/schema": "^4.4.4",
49
49
  "birpc": "^4.0.0",
50
50
  "error-stack-parser-es": "^1.0.5",
51
- "hookable": "^6.1.0",
51
+ "hookable": "^6.1.1",
52
52
  "unbuild": "^3.6.1",
53
- "unimport": "^6.0.2",
54
- "vue-router": "^5.0.3"
53
+ "unimport": "^6.2.0",
54
+ "vue-router": "^5.0.6"
55
55
  },
56
56
  "scripts": {
57
57
  "build": "unbuild",