@nuxt/devtools-kit 1.0.3 → 1.0.4
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.cba072d1.d.cts → devtools-kit.0ce9e35b.d.cts} +5 -5
- package/dist/shared/{devtools-kit.cba072d1.d.mts → devtools-kit.0ce9e35b.d.mts} +5 -5
- package/dist/shared/{devtools-kit.cba072d1.d.ts → devtools-kit.0ce9e35b.d.ts} +5 -5
- package/dist/types.d.cts +2 -2
- package/dist/types.d.mts +2 -2
- package/dist/types.d.ts +2 -2
- package/package.json +3 -3
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.0ce9e35b.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.0ce9e35b.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.0ce9e35b.js';
|
|
5
5
|
import 'vue';
|
|
6
6
|
import 'nuxt/schema';
|
|
7
7
|
import 'nitropack';
|
|
@@ -581,8 +581,8 @@ interface ServerFunctions {
|
|
|
581
581
|
generateAnalyzeBuildName(): Promise<string>;
|
|
582
582
|
startAnalyzeBuild(token: string, name: string): Promise<string>;
|
|
583
583
|
clearAnalyzeBuilds(token: string, names?: string[]): Promise<void>;
|
|
584
|
-
getImageMeta(filepath: string): Promise<ImageMeta | undefined>;
|
|
585
|
-
getTextAssetContent(filepath: string, limit?: number): Promise<string | undefined>;
|
|
584
|
+
getImageMeta(token: string, filepath: string): Promise<ImageMeta | undefined>;
|
|
585
|
+
getTextAssetContent(token: string, filepath: string, limit?: number): Promise<string | undefined>;
|
|
586
586
|
writeStaticAssets(token: string, file: AssetEntry[], folder: string): Promise<string[]>;
|
|
587
587
|
deleteStaticAsset(token: string, filepath: string): Promise<void>;
|
|
588
588
|
renameStaticAsset(token: string, oldPath: string, newPath: string): Promise<void>;
|
|
@@ -590,12 +590,12 @@ interface ServerFunctions {
|
|
|
590
590
|
customTabAction(name: string, action: number): Promise<boolean>;
|
|
591
591
|
runWizard<T extends WizardActions>(token: string, name: T, ...args: GetWizardArgs<T>): Promise<void>;
|
|
592
592
|
openInEditor(filepath: string): Promise<boolean>;
|
|
593
|
-
|
|
594
|
-
verifyAuthToken(token: string): Promise<boolean>;
|
|
595
|
-
restartNuxt(hard?: boolean): Promise<void>;
|
|
593
|
+
restartNuxt(token: string, hard?: boolean): Promise<void>;
|
|
596
594
|
installNuxtModule(token: string, name: string, dry?: boolean): Promise<InstallModuleReturn>;
|
|
597
595
|
uninstallNuxtModule(token: string, name: string, dry?: boolean): Promise<InstallModuleReturn>;
|
|
598
596
|
enableTimeline(dry: boolean): Promise<[string, string]>;
|
|
597
|
+
requestForAuth(info?: string, origin?: string): Promise<void>;
|
|
598
|
+
verifyAuthToken(token: string): Promise<boolean>;
|
|
599
599
|
}
|
|
600
600
|
interface ClientFunctions {
|
|
601
601
|
refresh(event: ClientUpdateEvent): void;
|
|
@@ -581,8 +581,8 @@ interface ServerFunctions {
|
|
|
581
581
|
generateAnalyzeBuildName(): Promise<string>;
|
|
582
582
|
startAnalyzeBuild(token: string, name: string): Promise<string>;
|
|
583
583
|
clearAnalyzeBuilds(token: string, names?: string[]): Promise<void>;
|
|
584
|
-
getImageMeta(filepath: string): Promise<ImageMeta | undefined>;
|
|
585
|
-
getTextAssetContent(filepath: string, limit?: number): Promise<string | undefined>;
|
|
584
|
+
getImageMeta(token: string, filepath: string): Promise<ImageMeta | undefined>;
|
|
585
|
+
getTextAssetContent(token: string, filepath: string, limit?: number): Promise<string | undefined>;
|
|
586
586
|
writeStaticAssets(token: string, file: AssetEntry[], folder: string): Promise<string[]>;
|
|
587
587
|
deleteStaticAsset(token: string, filepath: string): Promise<void>;
|
|
588
588
|
renameStaticAsset(token: string, oldPath: string, newPath: string): Promise<void>;
|
|
@@ -590,12 +590,12 @@ interface ServerFunctions {
|
|
|
590
590
|
customTabAction(name: string, action: number): Promise<boolean>;
|
|
591
591
|
runWizard<T extends WizardActions>(token: string, name: T, ...args: GetWizardArgs<T>): Promise<void>;
|
|
592
592
|
openInEditor(filepath: string): Promise<boolean>;
|
|
593
|
-
|
|
594
|
-
verifyAuthToken(token: string): Promise<boolean>;
|
|
595
|
-
restartNuxt(hard?: boolean): Promise<void>;
|
|
593
|
+
restartNuxt(token: string, hard?: boolean): Promise<void>;
|
|
596
594
|
installNuxtModule(token: string, name: string, dry?: boolean): Promise<InstallModuleReturn>;
|
|
597
595
|
uninstallNuxtModule(token: string, name: string, dry?: boolean): Promise<InstallModuleReturn>;
|
|
598
596
|
enableTimeline(dry: boolean): Promise<[string, string]>;
|
|
597
|
+
requestForAuth(info?: string, origin?: string): Promise<void>;
|
|
598
|
+
verifyAuthToken(token: string): Promise<boolean>;
|
|
599
599
|
}
|
|
600
600
|
interface ClientFunctions {
|
|
601
601
|
refresh(event: ClientUpdateEvent): void;
|
|
@@ -581,8 +581,8 @@ interface ServerFunctions {
|
|
|
581
581
|
generateAnalyzeBuildName(): Promise<string>;
|
|
582
582
|
startAnalyzeBuild(token: string, name: string): Promise<string>;
|
|
583
583
|
clearAnalyzeBuilds(token: string, names?: string[]): Promise<void>;
|
|
584
|
-
getImageMeta(filepath: string): Promise<ImageMeta | undefined>;
|
|
585
|
-
getTextAssetContent(filepath: string, limit?: number): Promise<string | undefined>;
|
|
584
|
+
getImageMeta(token: string, filepath: string): Promise<ImageMeta | undefined>;
|
|
585
|
+
getTextAssetContent(token: string, filepath: string, limit?: number): Promise<string | undefined>;
|
|
586
586
|
writeStaticAssets(token: string, file: AssetEntry[], folder: string): Promise<string[]>;
|
|
587
587
|
deleteStaticAsset(token: string, filepath: string): Promise<void>;
|
|
588
588
|
renameStaticAsset(token: string, oldPath: string, newPath: string): Promise<void>;
|
|
@@ -590,12 +590,12 @@ interface ServerFunctions {
|
|
|
590
590
|
customTabAction(name: string, action: number): Promise<boolean>;
|
|
591
591
|
runWizard<T extends WizardActions>(token: string, name: T, ...args: GetWizardArgs<T>): Promise<void>;
|
|
592
592
|
openInEditor(filepath: string): Promise<boolean>;
|
|
593
|
-
|
|
594
|
-
verifyAuthToken(token: string): Promise<boolean>;
|
|
595
|
-
restartNuxt(hard?: boolean): Promise<void>;
|
|
593
|
+
restartNuxt(token: string, hard?: boolean): Promise<void>;
|
|
596
594
|
installNuxtModule(token: string, name: string, dry?: boolean): Promise<InstallModuleReturn>;
|
|
597
595
|
uninstallNuxtModule(token: string, name: string, dry?: boolean): Promise<InstallModuleReturn>;
|
|
598
596
|
enableTimeline(dry: boolean): Promise<[string, string]>;
|
|
597
|
+
requestForAuth(info?: string, origin?: string): Promise<void>;
|
|
598
|
+
verifyAuthToken(token: string): Promise<boolean>;
|
|
599
599
|
}
|
|
600
600
|
interface ClientFunctions {
|
|
601
601
|
refresh(event: ClientUpdateEvent): void;
|
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 { a2 as AnalyzeBuildMeta, a3 as AnalyzeBuildsInfo, Q as AssetEntry, O as AssetInfo, K as AssetType, A as AutoImportsWithMetadata, B as BasicModuleInfo, k as CategorizedTabs, $ as ClientUpdateEvent, U as CodeSnippet, E as CompatibilityStatus, W as ComponentRelationship, X as ComponentWithRelationships, _ as GetWizardArgs, J as GitHubContributor, I as ImageMeta, a1 as InstallModuleReturn, x as InstalledModuleInfo, G as MaintainerInfo, i as ModuleBuiltinTab, z as ModuleCompatibility, M as ModuleCustomTab, a5 as ModuleGlobalOptions, h as ModuleIframeTabLazyOptions, d as ModuleIframeView, f as ModuleLaunchAction, c as ModuleLaunchView, a4 as ModuleOptions, y as ModuleStaticInfo, D as ModuleStats, j as ModuleTabInfo, F as ModuleType, e as ModuleVNodeView, g as ModuleView, r as NpmCommandOptions, q as NpmCommandType, a8 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a0 as NuxtDevtoolsServerContext, p as PackageManagerName, o as PackageUpdateInfo, v as Payload, w as PluginInfoWithMetic, R as RouteInfo, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, S as SubprocessOptions, a9 as TabCategory, m as TerminalAction, l as TerminalBase, n as TerminalInfo, T as TerminalState, a6 as VSCodeIntegrationOptions, a7 as VSCodeTunnelOptions, Z as WizardActions, Y as WizardFunctions } from './shared/devtools-kit.
|
|
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.0ce9e35b.cjs';
|
|
2
|
+
export { a2 as AnalyzeBuildMeta, a3 as AnalyzeBuildsInfo, Q as AssetEntry, O as AssetInfo, K as AssetType, A as AutoImportsWithMetadata, B as BasicModuleInfo, k as CategorizedTabs, $ as ClientUpdateEvent, U as CodeSnippet, E as CompatibilityStatus, W as ComponentRelationship, X as ComponentWithRelationships, _ as GetWizardArgs, J as GitHubContributor, I as ImageMeta, a1 as InstallModuleReturn, x as InstalledModuleInfo, G as MaintainerInfo, i as ModuleBuiltinTab, z as ModuleCompatibility, M as ModuleCustomTab, a5 as ModuleGlobalOptions, h as ModuleIframeTabLazyOptions, d as ModuleIframeView, f as ModuleLaunchAction, c as ModuleLaunchView, a4 as ModuleOptions, y as ModuleStaticInfo, D as ModuleStats, j as ModuleTabInfo, F as ModuleType, e as ModuleVNodeView, g as ModuleView, r as NpmCommandOptions, q as NpmCommandType, a8 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a0 as NuxtDevtoolsServerContext, p as PackageManagerName, o as PackageUpdateInfo, v as Payload, w as PluginInfoWithMetic, R as RouteInfo, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, S as SubprocessOptions, a9 as TabCategory, m as TerminalAction, l as TerminalBase, n as TerminalInfo, T as TerminalState, a6 as VSCodeIntegrationOptions, a7 as VSCodeTunnelOptions, Z as WizardActions, Y as WizardFunctions } from './shared/devtools-kit.0ce9e35b.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 { a2 as AnalyzeBuildMeta, a3 as AnalyzeBuildsInfo, Q as AssetEntry, O as AssetInfo, K as AssetType, A as AutoImportsWithMetadata, B as BasicModuleInfo, k as CategorizedTabs, $ as ClientUpdateEvent, U as CodeSnippet, E as CompatibilityStatus, W as ComponentRelationship, X as ComponentWithRelationships, _ as GetWizardArgs, J as GitHubContributor, I as ImageMeta, a1 as InstallModuleReturn, x as InstalledModuleInfo, G as MaintainerInfo, i as ModuleBuiltinTab, z as ModuleCompatibility, M as ModuleCustomTab, a5 as ModuleGlobalOptions, h as ModuleIframeTabLazyOptions, d as ModuleIframeView, f as ModuleLaunchAction, c as ModuleLaunchView, a4 as ModuleOptions, y as ModuleStaticInfo, D as ModuleStats, j as ModuleTabInfo, F as ModuleType, e as ModuleVNodeView, g as ModuleView, r as NpmCommandOptions, q as NpmCommandType, a8 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a0 as NuxtDevtoolsServerContext, p as PackageManagerName, o as PackageUpdateInfo, v as Payload, w as PluginInfoWithMetic, R as RouteInfo, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, S as SubprocessOptions, a9 as TabCategory, m as TerminalAction, l as TerminalBase, n as TerminalInfo, T as TerminalState, a6 as VSCodeIntegrationOptions, a7 as VSCodeTunnelOptions, Z as WizardActions, Y as WizardFunctions } from './shared/devtools-kit.
|
|
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.0ce9e35b.mjs';
|
|
2
|
+
export { a2 as AnalyzeBuildMeta, a3 as AnalyzeBuildsInfo, Q as AssetEntry, O as AssetInfo, K as AssetType, A as AutoImportsWithMetadata, B as BasicModuleInfo, k as CategorizedTabs, $ as ClientUpdateEvent, U as CodeSnippet, E as CompatibilityStatus, W as ComponentRelationship, X as ComponentWithRelationships, _ as GetWizardArgs, J as GitHubContributor, I as ImageMeta, a1 as InstallModuleReturn, x as InstalledModuleInfo, G as MaintainerInfo, i as ModuleBuiltinTab, z as ModuleCompatibility, M as ModuleCustomTab, a5 as ModuleGlobalOptions, h as ModuleIframeTabLazyOptions, d as ModuleIframeView, f as ModuleLaunchAction, c as ModuleLaunchView, a4 as ModuleOptions, y as ModuleStaticInfo, D as ModuleStats, j as ModuleTabInfo, F as ModuleType, e as ModuleVNodeView, g as ModuleView, r as NpmCommandOptions, q as NpmCommandType, a8 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a0 as NuxtDevtoolsServerContext, p as PackageManagerName, o as PackageUpdateInfo, v as Payload, w as PluginInfoWithMetic, R as RouteInfo, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, S as SubprocessOptions, a9 as TabCategory, m as TerminalAction, l as TerminalBase, n as TerminalInfo, T as TerminalState, a6 as VSCodeIntegrationOptions, a7 as VSCodeTunnelOptions, Z as WizardActions, Y as WizardFunctions } from './shared/devtools-kit.0ce9e35b.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 { a2 as AnalyzeBuildMeta, a3 as AnalyzeBuildsInfo, Q as AssetEntry, O as AssetInfo, K as AssetType, A as AutoImportsWithMetadata, B as BasicModuleInfo, k as CategorizedTabs, $ as ClientUpdateEvent, U as CodeSnippet, E as CompatibilityStatus, W as ComponentRelationship, X as ComponentWithRelationships, _ as GetWizardArgs, J as GitHubContributor, I as ImageMeta, a1 as InstallModuleReturn, x as InstalledModuleInfo, G as MaintainerInfo, i as ModuleBuiltinTab, z as ModuleCompatibility, M as ModuleCustomTab, a5 as ModuleGlobalOptions, h as ModuleIframeTabLazyOptions, d as ModuleIframeView, f as ModuleLaunchAction, c as ModuleLaunchView, a4 as ModuleOptions, y as ModuleStaticInfo, D as ModuleStats, j as ModuleTabInfo, F as ModuleType, e as ModuleVNodeView, g as ModuleView, r as NpmCommandOptions, q as NpmCommandType, a8 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a0 as NuxtDevtoolsServerContext, p as PackageManagerName, o as PackageUpdateInfo, v as Payload, w as PluginInfoWithMetic, R as RouteInfo, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, S as SubprocessOptions, a9 as TabCategory, m as TerminalAction, l as TerminalBase, n as TerminalInfo, T as TerminalState, a6 as VSCodeIntegrationOptions, a7 as VSCodeTunnelOptions, Z as WizardActions, Y as WizardFunctions } from './shared/devtools-kit.
|
|
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.0ce9e35b.js';
|
|
2
|
+
export { a2 as AnalyzeBuildMeta, a3 as AnalyzeBuildsInfo, Q as AssetEntry, O as AssetInfo, K as AssetType, A as AutoImportsWithMetadata, B as BasicModuleInfo, k as CategorizedTabs, $ as ClientUpdateEvent, U as CodeSnippet, E as CompatibilityStatus, W as ComponentRelationship, X as ComponentWithRelationships, _ as GetWizardArgs, J as GitHubContributor, I as ImageMeta, a1 as InstallModuleReturn, x as InstalledModuleInfo, G as MaintainerInfo, i as ModuleBuiltinTab, z as ModuleCompatibility, M as ModuleCustomTab, a5 as ModuleGlobalOptions, h as ModuleIframeTabLazyOptions, d as ModuleIframeView, f as ModuleLaunchAction, c as ModuleLaunchView, a4 as ModuleOptions, y as ModuleStaticInfo, D as ModuleStats, j as ModuleTabInfo, F as ModuleType, e as ModuleVNodeView, g as ModuleView, r as NpmCommandOptions, q as NpmCommandType, a8 as NuxtDevToolsOptions, N as NuxtDevtoolsInfo, a0 as NuxtDevtoolsServerContext, p as PackageManagerName, o as PackageUpdateInfo, v as Payload, w as PluginInfoWithMetic, R as RouteInfo, s as ServerRouteInfo, u as ServerRouteInput, t as ServerRouteInputType, S as SubprocessOptions, a9 as TabCategory, m as TerminalAction, l as TerminalBase, n as TerminalInfo, T as TerminalState, a6 as VSCodeIntegrationOptions, a7 as VSCodeTunnelOptions, Z as WizardActions, Y as WizardFunctions } from './shared/devtools-kit.0ce9e35b.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.0.
|
|
4
|
+
"version": "1.0.4",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://devtools.nuxt.com/module/utils-kit",
|
|
7
7
|
"repository": {
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"vite": "*"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@nuxt/kit": "^3.8.
|
|
42
|
-
"@nuxt/schema": "^3.8.
|
|
41
|
+
"@nuxt/kit": "^3.8.2",
|
|
42
|
+
"@nuxt/schema": "^3.8.2",
|
|
43
43
|
"execa": "^7.2.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|