@nuxt/devtools-kit 0.6.0 → 0.6.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.
@@ -123,7 +123,7 @@ interface ModuleBuiltinTab {
123
123
  path?: string;
124
124
  category?: TabCategory;
125
125
  show?: () => MaybeRefOrGetter<any>;
126
- badge?: () => number | string | undefined;
126
+ badge?: () => MaybeRefOrGetter<number | string | undefined>;
127
127
  onClick?: () => void;
128
128
  }
129
129
  type ModuleTabInfo = ModuleCustomTab | ModuleBuiltinTab;
@@ -473,9 +473,9 @@ interface ServerFunctions {
473
473
  runTerminalAction(id: string, action: TerminalAction): Promise<boolean>;
474
474
  getStorageMounts(): Promise<StorageMounts>;
475
475
  getStorageKeys(base?: string): Promise<string[]>;
476
- getStorageItem(key: string): Promise<StorageValue>;
477
- setStorageItem(key: string, value: StorageValue): Promise<void>;
478
- removeStorageItem(key: string): Promise<void>;
476
+ getStorageItem(token: string, key: string): Promise<StorageValue>;
477
+ setStorageItem(token: string, key: string, value: StorageValue): Promise<void>;
478
+ removeStorageItem(token: string, key: string): Promise<void>;
479
479
  getAnalyzeBuildInfo(): Promise<AnalyzeBuildsInfo>;
480
480
  generateAnalyzeBuildName(): Promise<string>;
481
481
  startAnalyzeBuild(token: string, name: string): Promise<string>;
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 './hooks-a3148a0c.js';
4
+ import { M as ModuleCustomTab, S as SubprocessOptions, T as TerminalState, N as NuxtDevtoolsInfo } from './hooks-e9b00a87.js';
5
5
  import 'vue';
6
6
  import 'nuxt/schema';
7
7
  import 'nitropack';
package/dist/types.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { V as VueInspectorData, a as VueInspectorClient, L as LoadingTimeMetric, H as HookInfo, P as PluginMetric, b as ServerFunctions } from './hooks-a3148a0c.js';
2
- export { Y as AnalyzeBuildMeta, Z as AnalyzeBuildsInfo, D as AssetInfo, z as AssetType, A as AutoImportsWithMetadata, B as BasicModuleInfo, O as ClientFunctions, Q as ClientUpdateEvent, E as CodeSnippet, C as CompatibilityStatus, F as ComponentRelationship, K as GetWizardArgs, G as GitHubContributor, I as ImageMeta, X as InstallModuleReturn, u as InstalledModuleInfo, y as MaintainerInfo, i as ModuleBuiltinTab, w as ModuleCompatibility, M as ModuleCustomTab, $ as ModuleGlobalOptions, h as ModuleIframeTabLazyOptions, d as ModuleIframeView, f as ModuleLaunchAction, c as ModuleLaunchView, _ as ModuleOptions, v as ModuleStaticInfo, j as ModuleTabInfo, x as ModuleType, e as ModuleVNodeView, g as ModuleView, q as NpmCommandOptions, p as NpmCommandType, a2 as NuxtDevToolsUIOptions, N as NuxtDevtoolsInfo, U as NuxtDevtoolsServerContext, o as PackageManagerName, n as PackageUpdateInfo, s as Payload, t as PluginInfoWithMetic, R as RouteInfo, r as ServerRouteInfo, S as SubprocessOptions, a3 as TabCategory, l as TerminalAction, k as TerminalBase, m as TerminalInfo, T as TerminalState, a0 as VSCodeIntegrationOptions, a1 as VSCodeTunnelOptions, J as WizardActions, W as WizardFunctions } from './hooks-a3148a0c.js';
1
+ import { V as VueInspectorData, a as VueInspectorClient, L as LoadingTimeMetric, H as HookInfo, P as PluginMetric, b as ServerFunctions } from './hooks-e9b00a87.js';
2
+ export { Y as AnalyzeBuildMeta, Z as AnalyzeBuildsInfo, D as AssetInfo, z as AssetType, A as AutoImportsWithMetadata, B as BasicModuleInfo, O as ClientFunctions, Q as ClientUpdateEvent, E as CodeSnippet, C as CompatibilityStatus, F as ComponentRelationship, K as GetWizardArgs, G as GitHubContributor, I as ImageMeta, X as InstallModuleReturn, u as InstalledModuleInfo, y as MaintainerInfo, i as ModuleBuiltinTab, w as ModuleCompatibility, M as ModuleCustomTab, $ as ModuleGlobalOptions, h as ModuleIframeTabLazyOptions, d as ModuleIframeView, f as ModuleLaunchAction, c as ModuleLaunchView, _ as ModuleOptions, v as ModuleStaticInfo, j as ModuleTabInfo, x as ModuleType, e as ModuleVNodeView, g as ModuleView, q as NpmCommandOptions, p as NpmCommandType, a2 as NuxtDevToolsUIOptions, N as NuxtDevtoolsInfo, U as NuxtDevtoolsServerContext, o as PackageManagerName, n as PackageUpdateInfo, s as Payload, t as PluginInfoWithMetic, R as RouteInfo, r as ServerRouteInfo, S as SubprocessOptions, a3 as TabCategory, l as TerminalAction, k as TerminalBase, m as TerminalInfo, T as TerminalState, a0 as VSCodeIntegrationOptions, a1 as VSCodeTunnelOptions, J as WizardActions, W as WizardFunctions } from './hooks-e9b00a87.js';
3
3
  import { Ref } from 'vue';
4
4
  import { AppConfig } from 'nuxt/schema';
5
5
  import { NuxtApp } from 'nuxt/dist/app/nuxt';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nuxt/devtools-kit",
3
3
  "type": "module",
4
- "version": "0.6.0",
4
+ "version": "0.6.2",
5
5
  "license": "MIT",
6
6
  "repository": "nuxt/devtools",
7
7
  "exports": {