@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 +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/shared/{devtools-kit.553d8d94.d.cts → devtools-kit.60a5ddfa.d.cts} +14 -1
- package/dist/shared/{devtools-kit.553d8d94.d.mts → devtools-kit.60a5ddfa.d.mts} +14 -1
- package/dist/shared/{devtools-kit.553d8d94.d.ts → devtools-kit.60a5ddfa.d.ts} +14 -1
- package/dist/types.d.cts +2 -2
- package/dist/types.d.mts +2 -2
- package/dist/types.d.ts +2 -2
- package/package.json +1 -1
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.
|
|
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.
|
|
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.
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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.
|
|
2
|
-
export {
|
|
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.
|
|
2
|
-
export {
|
|
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.
|
|
2
|
-
export {
|
|
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';
|