@nuxt/devtools-kit 1.1.0 → 1.1.2

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 execa from 'execa';
2
2
  import * as _nuxt_schema from '@nuxt/schema';
3
3
  import { BirpcGroup } from 'birpc';
4
- import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.553d8d94.cjs';
4
+ import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.60a5ddfa.cjs';
5
5
  import 'vue';
6
6
  import 'nuxt/schema';
7
7
  import 'nitropack';
package/dist/index.d.mts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as execa from 'execa';
2
2
  import * as _nuxt_schema from '@nuxt/schema';
3
3
  import { BirpcGroup } from 'birpc';
4
- import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.553d8d94.mjs';
4
+ import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.60a5ddfa.mjs';
5
5
  import 'vue';
6
6
  import 'nuxt/schema';
7
7
  import 'nitropack';
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as execa from 'execa';
2
2
  import * as _nuxt_schema from '@nuxt/schema';
3
3
  import { BirpcGroup } from 'birpc';
4
- import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.553d8d94.js';
4
+ import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './shared/devtools-kit.60a5ddfa.js';
5
5
  import 'vue';
6
6
  import 'nuxt/schema';
7
7
  import 'nitropack';
@@ -187,10 +187,22 @@ interface Payload {
187
187
  }
188
188
  interface ServerTaskInfo {
189
189
  name: string;
190
+ handler: string;
190
191
  description: string;
191
192
  type: 'collection' | 'task';
192
193
  tasks?: ServerTaskInfo[];
193
194
  }
195
+ interface ScannedNitroTasks {
196
+ tasks: {
197
+ [name: string]: {
198
+ handler: string;
199
+ description: string;
200
+ };
201
+ };
202
+ scheduledTasks: {
203
+ [cron: string]: string[];
204
+ };
205
+ }
194
206
  interface PluginInfoWithMetic {
195
207
  src: string;
196
208
  mode?: 'client' | 'server' | 'all';
@@ -577,6 +589,7 @@ interface ServerFunctions {
577
589
  getServerLayouts: () => NuxtLayout[];
578
590
  getStaticAssets: () => Promise<AssetInfo[]>;
579
591
  getServerRoutes: () => ServerRouteInfo[];
592
+ getServerTasks: () => ScannedNitroTasks | null;
580
593
  getServerApp: () => NuxtApp | undefined;
581
594
  getOptions: <T extends keyof NuxtDevToolsOptions>(tab: T) => Promise<NuxtDevToolsOptions[T]>;
582
595
  updateOptions: <T extends keyof NuxtDevToolsOptions>(tab: T, settings: Partial<NuxtDevToolsOptions[T]>) => Promise<void>;
@@ -725,4 +738,4 @@ declare module '@nuxt/schema' {
725
738
  }
726
739
  }
727
740
 
728
- export type { GetWizardArgs as $, AutoImportsWithMetadata as A, BasicModuleInfo as B, ClientFunctions as C, ModuleCompatibility as D, ModuleStats as E, CompatibilityStatus as F, ModuleType as G, HookInfo as H, ImageMeta as I, MaintainerInfo as J, GitHubContributor as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, AssetType as O, PluginMetric as P, AssetInfo as Q, RouteInfo as R, SubprocessOptions as S, TerminalState as T, AssetEntry as U, VueInspectorData as V, CodeSnippet as W, ComponentRelationship as X, ComponentWithRelationships as Y, WizardFunctions as Z, WizardActions as _, VueInspectorClient as a, ClientUpdateEvent as a0, NuxtDevtoolsServerContext as a1, InstallModuleReturn as a2, AnalyzeBuildMeta as a3, AnalyzeBuildsInfo as a4, ModuleOptions as a5, ModuleGlobalOptions as a6, VSCodeIntegrationOptions as a7, VSCodeTunnelOptions as a8, NuxtDevToolsOptions as a9, TabCategory as aa, ServerFunctions as b, ModuleLaunchView as c, ModuleIframeView as d, ModuleVNodeView as e, ModuleLaunchAction as f, ModuleView as g, ModuleIframeTabLazyOptions as h, ModuleBuiltinTab as i, ModuleTabInfo as j, CategorizedTabs as k, TerminalBase as l, TerminalAction as m, TerminalInfo as n, PackageUpdateInfo as o, PackageManagerName as p, NpmCommandType as q, NpmCommandOptions as r, ServerRouteInfo as s, ServerRouteInputType as t, ServerRouteInput as u, Payload as v, ServerTaskInfo as w, PluginInfoWithMetic as x, InstalledModuleInfo as y, ModuleStaticInfo as z };
741
+ export type { WizardActions as $, AutoImportsWithMetadata as A, BasicModuleInfo as B, ClientFunctions as C, ModuleStaticInfo as D, ModuleCompatibility as E, ModuleStats as F, CompatibilityStatus as G, HookInfo as H, ImageMeta as I, ModuleType as J, MaintainerInfo as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, GitHubContributor as O, PluginMetric as P, AssetType as Q, RouteInfo as R, SubprocessOptions as S, TerminalState as T, AssetInfo as U, VueInspectorData as V, AssetEntry as W, CodeSnippet as X, ComponentRelationship as Y, ComponentWithRelationships as Z, WizardFunctions as _, VueInspectorClient as a, GetWizardArgs as a0, ClientUpdateEvent as a1, NuxtDevtoolsServerContext as a2, InstallModuleReturn as a3, AnalyzeBuildMeta as a4, AnalyzeBuildsInfo as a5, ModuleOptions as a6, ModuleGlobalOptions as a7, VSCodeIntegrationOptions as a8, VSCodeTunnelOptions as a9, NuxtDevToolsOptions as aa, TabCategory as ab, ServerFunctions as b, ModuleLaunchView as c, ModuleIframeView as d, ModuleVNodeView as e, ModuleLaunchAction as f, ModuleView as g, ModuleIframeTabLazyOptions as h, ModuleBuiltinTab as i, ModuleTabInfo as j, CategorizedTabs as k, TerminalBase as l, TerminalAction as m, TerminalInfo as n, PackageUpdateInfo as o, PackageManagerName as p, NpmCommandType as q, NpmCommandOptions as r, ServerRouteInfo as s, ServerRouteInputType as t, ServerRouteInput as u, Payload as v, ServerTaskInfo as w, ScannedNitroTasks as x, PluginInfoWithMetic as y, InstalledModuleInfo as z };
@@ -187,10 +187,22 @@ interface Payload {
187
187
  }
188
188
  interface ServerTaskInfo {
189
189
  name: string;
190
+ handler: string;
190
191
  description: string;
191
192
  type: 'collection' | 'task';
192
193
  tasks?: ServerTaskInfo[];
193
194
  }
195
+ interface ScannedNitroTasks {
196
+ tasks: {
197
+ [name: string]: {
198
+ handler: string;
199
+ description: string;
200
+ };
201
+ };
202
+ scheduledTasks: {
203
+ [cron: string]: string[];
204
+ };
205
+ }
194
206
  interface PluginInfoWithMetic {
195
207
  src: string;
196
208
  mode?: 'client' | 'server' | 'all';
@@ -577,6 +589,7 @@ interface ServerFunctions {
577
589
  getServerLayouts: () => NuxtLayout[];
578
590
  getStaticAssets: () => Promise<AssetInfo[]>;
579
591
  getServerRoutes: () => ServerRouteInfo[];
592
+ getServerTasks: () => ScannedNitroTasks | null;
580
593
  getServerApp: () => NuxtApp | undefined;
581
594
  getOptions: <T extends keyof NuxtDevToolsOptions>(tab: T) => Promise<NuxtDevToolsOptions[T]>;
582
595
  updateOptions: <T extends keyof NuxtDevToolsOptions>(tab: T, settings: Partial<NuxtDevToolsOptions[T]>) => Promise<void>;
@@ -725,4 +738,4 @@ declare module '@nuxt/schema' {
725
738
  }
726
739
  }
727
740
 
728
- export type { GetWizardArgs as $, AutoImportsWithMetadata as A, BasicModuleInfo as B, ClientFunctions as C, ModuleCompatibility as D, ModuleStats as E, CompatibilityStatus as F, ModuleType as G, HookInfo as H, ImageMeta as I, MaintainerInfo as J, GitHubContributor as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, AssetType as O, PluginMetric as P, AssetInfo as Q, RouteInfo as R, SubprocessOptions as S, TerminalState as T, AssetEntry as U, VueInspectorData as V, CodeSnippet as W, ComponentRelationship as X, ComponentWithRelationships as Y, WizardFunctions as Z, WizardActions as _, VueInspectorClient as a, ClientUpdateEvent as a0, NuxtDevtoolsServerContext as a1, InstallModuleReturn as a2, AnalyzeBuildMeta as a3, AnalyzeBuildsInfo as a4, ModuleOptions as a5, ModuleGlobalOptions as a6, VSCodeIntegrationOptions as a7, VSCodeTunnelOptions as a8, NuxtDevToolsOptions as a9, TabCategory as aa, ServerFunctions as b, ModuleLaunchView as c, ModuleIframeView as d, ModuleVNodeView as e, ModuleLaunchAction as f, ModuleView as g, ModuleIframeTabLazyOptions as h, ModuleBuiltinTab as i, ModuleTabInfo as j, CategorizedTabs as k, TerminalBase as l, TerminalAction as m, TerminalInfo as n, PackageUpdateInfo as o, PackageManagerName as p, NpmCommandType as q, NpmCommandOptions as r, ServerRouteInfo as s, ServerRouteInputType as t, ServerRouteInput as u, Payload as v, ServerTaskInfo as w, PluginInfoWithMetic as x, InstalledModuleInfo as y, ModuleStaticInfo as z };
741
+ export type { WizardActions as $, AutoImportsWithMetadata as A, BasicModuleInfo as B, ClientFunctions as C, ModuleStaticInfo as D, ModuleCompatibility as E, ModuleStats as F, CompatibilityStatus as G, HookInfo as H, ImageMeta as I, ModuleType as J, MaintainerInfo as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, GitHubContributor as O, PluginMetric as P, AssetType as Q, RouteInfo as R, SubprocessOptions as S, TerminalState as T, AssetInfo as U, VueInspectorData as V, AssetEntry as W, CodeSnippet as X, ComponentRelationship as Y, ComponentWithRelationships as Z, WizardFunctions as _, VueInspectorClient as a, GetWizardArgs as a0, ClientUpdateEvent as a1, NuxtDevtoolsServerContext as a2, InstallModuleReturn as a3, AnalyzeBuildMeta as a4, AnalyzeBuildsInfo as a5, ModuleOptions as a6, ModuleGlobalOptions as a7, VSCodeIntegrationOptions as a8, VSCodeTunnelOptions as a9, NuxtDevToolsOptions as aa, TabCategory as ab, ServerFunctions as b, ModuleLaunchView as c, ModuleIframeView as d, ModuleVNodeView as e, ModuleLaunchAction as f, ModuleView as g, ModuleIframeTabLazyOptions as h, ModuleBuiltinTab as i, ModuleTabInfo as j, CategorizedTabs as k, TerminalBase as l, TerminalAction as m, TerminalInfo as n, PackageUpdateInfo as o, PackageManagerName as p, NpmCommandType as q, NpmCommandOptions as r, ServerRouteInfo as s, ServerRouteInputType as t, ServerRouteInput as u, Payload as v, ServerTaskInfo as w, ScannedNitroTasks as x, PluginInfoWithMetic as y, InstalledModuleInfo as z };
@@ -187,10 +187,22 @@ interface Payload {
187
187
  }
188
188
  interface ServerTaskInfo {
189
189
  name: string;
190
+ handler: string;
190
191
  description: string;
191
192
  type: 'collection' | 'task';
192
193
  tasks?: ServerTaskInfo[];
193
194
  }
195
+ interface ScannedNitroTasks {
196
+ tasks: {
197
+ [name: string]: {
198
+ handler: string;
199
+ description: string;
200
+ };
201
+ };
202
+ scheduledTasks: {
203
+ [cron: string]: string[];
204
+ };
205
+ }
194
206
  interface PluginInfoWithMetic {
195
207
  src: string;
196
208
  mode?: 'client' | 'server' | 'all';
@@ -577,6 +589,7 @@ interface ServerFunctions {
577
589
  getServerLayouts: () => NuxtLayout[];
578
590
  getStaticAssets: () => Promise<AssetInfo[]>;
579
591
  getServerRoutes: () => ServerRouteInfo[];
592
+ getServerTasks: () => ScannedNitroTasks | null;
580
593
  getServerApp: () => NuxtApp | undefined;
581
594
  getOptions: <T extends keyof NuxtDevToolsOptions>(tab: T) => Promise<NuxtDevToolsOptions[T]>;
582
595
  updateOptions: <T extends keyof NuxtDevToolsOptions>(tab: T, settings: Partial<NuxtDevToolsOptions[T]>) => Promise<void>;
@@ -725,4 +738,4 @@ declare module '@nuxt/schema' {
725
738
  }
726
739
  }
727
740
 
728
- export type { GetWizardArgs as $, AutoImportsWithMetadata as A, BasicModuleInfo as B, ClientFunctions as C, ModuleCompatibility as D, ModuleStats as E, CompatibilityStatus as F, ModuleType as G, HookInfo as H, ImageMeta as I, MaintainerInfo as J, GitHubContributor as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, AssetType as O, PluginMetric as P, AssetInfo as Q, RouteInfo as R, SubprocessOptions as S, TerminalState as T, AssetEntry as U, VueInspectorData as V, CodeSnippet as W, ComponentRelationship as X, ComponentWithRelationships as Y, WizardFunctions as Z, WizardActions as _, VueInspectorClient as a, ClientUpdateEvent as a0, NuxtDevtoolsServerContext as a1, InstallModuleReturn as a2, AnalyzeBuildMeta as a3, AnalyzeBuildsInfo as a4, ModuleOptions as a5, ModuleGlobalOptions as a6, VSCodeIntegrationOptions as a7, VSCodeTunnelOptions as a8, NuxtDevToolsOptions as a9, TabCategory as aa, ServerFunctions as b, ModuleLaunchView as c, ModuleIframeView as d, ModuleVNodeView as e, ModuleLaunchAction as f, ModuleView as g, ModuleIframeTabLazyOptions as h, ModuleBuiltinTab as i, ModuleTabInfo as j, CategorizedTabs as k, TerminalBase as l, TerminalAction as m, TerminalInfo as n, PackageUpdateInfo as o, PackageManagerName as p, NpmCommandType as q, NpmCommandOptions as r, ServerRouteInfo as s, ServerRouteInputType as t, ServerRouteInput as u, Payload as v, ServerTaskInfo as w, PluginInfoWithMetic as x, InstalledModuleInfo as y, ModuleStaticInfo as z };
741
+ export type { WizardActions as $, AutoImportsWithMetadata as A, BasicModuleInfo as B, ClientFunctions as C, ModuleStaticInfo as D, ModuleCompatibility as E, ModuleStats as F, CompatibilityStatus as G, HookInfo as H, ImageMeta as I, ModuleType as J, MaintainerInfo as K, LoadingTimeMetric as L, ModuleCustomTab as M, NuxtDevtoolsInfo as N, GitHubContributor as O, PluginMetric as P, AssetType as Q, RouteInfo as R, SubprocessOptions as S, TerminalState as T, AssetInfo as U, VueInspectorData as V, AssetEntry as W, CodeSnippet as X, ComponentRelationship as Y, ComponentWithRelationships as Z, WizardFunctions as _, VueInspectorClient as a, GetWizardArgs as a0, ClientUpdateEvent as a1, NuxtDevtoolsServerContext as a2, InstallModuleReturn as a3, AnalyzeBuildMeta as a4, AnalyzeBuildsInfo as a5, ModuleOptions as a6, ModuleGlobalOptions as a7, VSCodeIntegrationOptions as a8, VSCodeTunnelOptions as a9, NuxtDevToolsOptions as aa, TabCategory as ab, ServerFunctions as b, ModuleLaunchView as c, ModuleIframeView as d, ModuleVNodeView as e, ModuleLaunchAction as f, ModuleView as g, ModuleIframeTabLazyOptions as h, ModuleBuiltinTab as i, ModuleTabInfo as j, CategorizedTabs as k, TerminalBase as l, TerminalAction as m, TerminalInfo as n, PackageUpdateInfo as o, PackageManagerName as p, NpmCommandType as q, NpmCommandOptions as r, ServerRouteInfo as s, ServerRouteInputType as t, ServerRouteInput as u, Payload as v, ServerTaskInfo as w, ScannedNitroTasks as x, PluginInfoWithMetic as y, InstalledModuleInfo as z };
package/dist/types.d.cts CHANGED
@@ -1,5 +1,5 @@
1
- import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.553d8d94.cjs';
2
- export { a3 as AnalyzeBuildMeta, a4 as AnalyzeBuildsInfo, U as AssetEntry, Q as AssetInfo, O as AssetType, A as AutoImportsWithMetadata, B as BasicModuleInfo, k as CategorizedTabs, a0 as ClientUpdateEvent, W as CodeSnippet, F as CompatibilityStatus, X as ComponentRelationship, Y as ComponentWithRelationships, $ as GetWizardArgs, K as GitHubContributor, I as ImageMeta, a2 as InstallModuleReturn, y as InstalledModuleInfo, J as MaintainerInfo, i as ModuleBuiltinTab, D as ModuleCompatibility, M as ModuleCustomTab, a6 as ModuleGlobalOptions, h as ModuleIframeTabLazyOptions, d as ModuleIframeView, f as ModuleLaunchAction, c as ModuleLaunchView, a5 as ModuleOptions, z as ModuleStaticInfo, E as ModuleStats, j as ModuleTabInfo, G as ModuleType, e as ModuleVNodeView, g as ModuleView, r as NpmCommandOptions, q as NpmCommandType, a9 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a1 as NuxtDevtoolsServerContext, p as PackageManagerName, o as PackageUpdateInfo, v as Payload, x as PluginInfoWithMetic, R as RouteInfo, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, w as ServerTaskInfo, S as SubprocessOptions, aa as TabCategory, m as TerminalAction, l as TerminalBase, n as TerminalInfo, T as TerminalState, a7 as VSCodeIntegrationOptions, a8 as VSCodeTunnelOptions, _ as WizardActions, Z as WizardFunctions } from './shared/devtools-kit.553d8d94.cjs';
1
+ import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.60a5ddfa.cjs';
2
+ export { a4 as AnalyzeBuildMeta, a5 as AnalyzeBuildsInfo, W as AssetEntry, U as AssetInfo, Q as AssetType, A as AutoImportsWithMetadata, B as BasicModuleInfo, k as CategorizedTabs, a1 as ClientUpdateEvent, X as CodeSnippet, G as CompatibilityStatus, Y as ComponentRelationship, Z as ComponentWithRelationships, a0 as GetWizardArgs, O as GitHubContributor, I as ImageMeta, a3 as InstallModuleReturn, z as InstalledModuleInfo, K as MaintainerInfo, i as ModuleBuiltinTab, E as ModuleCompatibility, M as ModuleCustomTab, a7 as ModuleGlobalOptions, h as ModuleIframeTabLazyOptions, d as ModuleIframeView, f as ModuleLaunchAction, c as ModuleLaunchView, a6 as ModuleOptions, D as ModuleStaticInfo, F as ModuleStats, j as ModuleTabInfo, J as ModuleType, e as ModuleVNodeView, g as ModuleView, r as NpmCommandOptions, q as NpmCommandType, aa as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a2 as NuxtDevtoolsServerContext, p as PackageManagerName, o as PackageUpdateInfo, v as Payload, y as PluginInfoWithMetic, R as RouteInfo, x as ScannedNitroTasks, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, w as ServerTaskInfo, S as SubprocessOptions, ab as TabCategory, m as TerminalAction, l as TerminalBase, n as TerminalInfo, T as TerminalState, a8 as VSCodeIntegrationOptions, a9 as VSCodeTunnelOptions, $ as WizardActions, _ as WizardFunctions } from './shared/devtools-kit.60a5ddfa.cjs';
3
3
  import { Ref } from 'vue';
4
4
  import { AppConfig } from 'nuxt/schema';
5
5
  import { NuxtApp } from 'nuxt/app';
package/dist/types.d.mts CHANGED
@@ -1,5 +1,5 @@
1
- import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.553d8d94.mjs';
2
- export { a3 as AnalyzeBuildMeta, a4 as AnalyzeBuildsInfo, U as AssetEntry, Q as AssetInfo, O as AssetType, A as AutoImportsWithMetadata, B as BasicModuleInfo, k as CategorizedTabs, a0 as ClientUpdateEvent, W as CodeSnippet, F as CompatibilityStatus, X as ComponentRelationship, Y as ComponentWithRelationships, $ as GetWizardArgs, K as GitHubContributor, I as ImageMeta, a2 as InstallModuleReturn, y as InstalledModuleInfo, J as MaintainerInfo, i as ModuleBuiltinTab, D as ModuleCompatibility, M as ModuleCustomTab, a6 as ModuleGlobalOptions, h as ModuleIframeTabLazyOptions, d as ModuleIframeView, f as ModuleLaunchAction, c as ModuleLaunchView, a5 as ModuleOptions, z as ModuleStaticInfo, E as ModuleStats, j as ModuleTabInfo, G as ModuleType, e as ModuleVNodeView, g as ModuleView, r as NpmCommandOptions, q as NpmCommandType, a9 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a1 as NuxtDevtoolsServerContext, p as PackageManagerName, o as PackageUpdateInfo, v as Payload, x as PluginInfoWithMetic, R as RouteInfo, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, w as ServerTaskInfo, S as SubprocessOptions, aa as TabCategory, m as TerminalAction, l as TerminalBase, n as TerminalInfo, T as TerminalState, a7 as VSCodeIntegrationOptions, a8 as VSCodeTunnelOptions, _ as WizardActions, Z as WizardFunctions } from './shared/devtools-kit.553d8d94.mjs';
1
+ import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.60a5ddfa.mjs';
2
+ export { a4 as AnalyzeBuildMeta, a5 as AnalyzeBuildsInfo, W as AssetEntry, U as AssetInfo, Q as AssetType, A as AutoImportsWithMetadata, B as BasicModuleInfo, k as CategorizedTabs, a1 as ClientUpdateEvent, X as CodeSnippet, G as CompatibilityStatus, Y as ComponentRelationship, Z as ComponentWithRelationships, a0 as GetWizardArgs, O as GitHubContributor, I as ImageMeta, a3 as InstallModuleReturn, z as InstalledModuleInfo, K as MaintainerInfo, i as ModuleBuiltinTab, E as ModuleCompatibility, M as ModuleCustomTab, a7 as ModuleGlobalOptions, h as ModuleIframeTabLazyOptions, d as ModuleIframeView, f as ModuleLaunchAction, c as ModuleLaunchView, a6 as ModuleOptions, D as ModuleStaticInfo, F as ModuleStats, j as ModuleTabInfo, J as ModuleType, e as ModuleVNodeView, g as ModuleView, r as NpmCommandOptions, q as NpmCommandType, aa as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a2 as NuxtDevtoolsServerContext, p as PackageManagerName, o as PackageUpdateInfo, v as Payload, y as PluginInfoWithMetic, R as RouteInfo, x as ScannedNitroTasks, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, w as ServerTaskInfo, S as SubprocessOptions, ab as TabCategory, m as TerminalAction, l as TerminalBase, n as TerminalInfo, T as TerminalState, a8 as VSCodeIntegrationOptions, a9 as VSCodeTunnelOptions, $ as WizardActions, _ as WizardFunctions } from './shared/devtools-kit.60a5ddfa.mjs';
3
3
  import { Ref } from 'vue';
4
4
  import { AppConfig } from 'nuxt/schema';
5
5
  import { NuxtApp } from 'nuxt/app';
package/dist/types.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.553d8d94.js';
2
- export { a3 as AnalyzeBuildMeta, a4 as AnalyzeBuildsInfo, U as AssetEntry, Q as AssetInfo, O as AssetType, A as AutoImportsWithMetadata, B as BasicModuleInfo, k as CategorizedTabs, a0 as ClientUpdateEvent, W as CodeSnippet, F as CompatibilityStatus, X as ComponentRelationship, Y as ComponentWithRelationships, $ as GetWizardArgs, K as GitHubContributor, I as ImageMeta, a2 as InstallModuleReturn, y as InstalledModuleInfo, J as MaintainerInfo, i as ModuleBuiltinTab, D as ModuleCompatibility, M as ModuleCustomTab, a6 as ModuleGlobalOptions, h as ModuleIframeTabLazyOptions, d as ModuleIframeView, f as ModuleLaunchAction, c as ModuleLaunchView, a5 as ModuleOptions, z as ModuleStaticInfo, E as ModuleStats, j as ModuleTabInfo, G as ModuleType, e as ModuleVNodeView, g as ModuleView, r as NpmCommandOptions, q as NpmCommandType, a9 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a1 as NuxtDevtoolsServerContext, p as PackageManagerName, o as PackageUpdateInfo, v as Payload, x as PluginInfoWithMetic, R as RouteInfo, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, w as ServerTaskInfo, S as SubprocessOptions, aa as TabCategory, m as TerminalAction, l as TerminalBase, n as TerminalInfo, T as TerminalState, a7 as VSCodeIntegrationOptions, a8 as VSCodeTunnelOptions, _ as WizardActions, Z as WizardFunctions } from './shared/devtools-kit.553d8d94.js';
1
+ import { V as VueInspectorData, a as VueInspectorClient, H as HookInfo, P as PluginMetric, L as LoadingTimeMetric, b as ServerFunctions, C as ClientFunctions } from './shared/devtools-kit.60a5ddfa.js';
2
+ export { a4 as AnalyzeBuildMeta, a5 as AnalyzeBuildsInfo, W as AssetEntry, U as AssetInfo, Q as AssetType, A as AutoImportsWithMetadata, B as BasicModuleInfo, k as CategorizedTabs, a1 as ClientUpdateEvent, X as CodeSnippet, G as CompatibilityStatus, Y as ComponentRelationship, Z as ComponentWithRelationships, a0 as GetWizardArgs, O as GitHubContributor, I as ImageMeta, a3 as InstallModuleReturn, z as InstalledModuleInfo, K as MaintainerInfo, i as ModuleBuiltinTab, E as ModuleCompatibility, M as ModuleCustomTab, a7 as ModuleGlobalOptions, h as ModuleIframeTabLazyOptions, d as ModuleIframeView, f as ModuleLaunchAction, c as ModuleLaunchView, a6 as ModuleOptions, D as ModuleStaticInfo, F as ModuleStats, j as ModuleTabInfo, J as ModuleType, e as ModuleVNodeView, g as ModuleView, r as NpmCommandOptions, q as NpmCommandType, aa as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a2 as NuxtDevtoolsServerContext, p as PackageManagerName, o as PackageUpdateInfo, v as Payload, y as PluginInfoWithMetic, R as RouteInfo, x as ScannedNitroTasks, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, w as ServerTaskInfo, S as SubprocessOptions, ab as TabCategory, m as TerminalAction, l as TerminalBase, n as TerminalInfo, T as TerminalState, a8 as VSCodeIntegrationOptions, a9 as VSCodeTunnelOptions, $ as WizardActions, _ as WizardFunctions } from './shared/devtools-kit.60a5ddfa.js';
3
3
  import { Ref } from 'vue';
4
4
  import { AppConfig } from 'nuxt/schema';
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": "1.1.0",
4
+ "version": "1.1.2",
5
5
  "license": "MIT",
6
6
  "homepage": "https://devtools.nuxt.com/module/utils-kit",
7
7
  "repository": {