@vite-plugin-opencode-assistant/shared 1.0.35 → 1.0.37

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/es/constants.d.ts CHANGED
@@ -95,7 +95,6 @@ export declare const DEFAULT_CONFIG: {
95
95
  hostname: string;
96
96
  theme: "auto";
97
97
  open: boolean;
98
- autoReload: boolean;
99
98
  verbose: boolean;
100
99
  hotkey: string;
101
100
  warmupChromeMcp: boolean;
package/es/constants.js CHANGED
@@ -47,7 +47,6 @@ const DEFAULT_CONFIG = {
47
47
  hostname: DEFAULT_HOSTNAME,
48
48
  theme: "auto",
49
49
  open: false,
50
- autoReload: true,
51
50
  verbose: false,
52
51
  hotkey: "ctrl+k",
53
52
  warmupChromeMcp: true,
package/es/types.d.ts CHANGED
@@ -79,8 +79,6 @@ export interface OpenCodeOptions {
79
79
  theme?: "light" | "dark" | "auto";
80
80
  /** 是否自动打开面板,默认 false */
81
81
  open?: boolean;
82
- /** 是否自动重载,默认 true */
83
- autoReload?: boolean;
84
82
  /** 是否输出详细日志,默认 false */
85
83
  verbose?: boolean;
86
84
  /** 快捷键配置,默认 'ctrl+k' */
@@ -95,7 +95,6 @@ export declare const DEFAULT_CONFIG: {
95
95
  hostname: string;
96
96
  theme: "auto";
97
97
  open: boolean;
98
- autoReload: boolean;
99
98
  verbose: boolean;
100
99
  hotkey: string;
101
100
  warmupChromeMcp: boolean;
package/lib/constants.js CHANGED
@@ -101,7 +101,6 @@ const DEFAULT_CONFIG = {
101
101
  hostname: DEFAULT_HOSTNAME,
102
102
  theme: "auto",
103
103
  open: false,
104
- autoReload: true,
105
104
  verbose: false,
106
105
  hotkey: "ctrl+k",
107
106
  warmupChromeMcp: true,
package/lib/types.d.ts CHANGED
@@ -79,8 +79,6 @@ export interface OpenCodeOptions {
79
79
  theme?: "light" | "dark" | "auto";
80
80
  /** 是否自动打开面板,默认 false */
81
81
  open?: boolean;
82
- /** 是否自动重载,默认 true */
83
- autoReload?: boolean;
84
82
  /** 是否输出详细日志,默认 false */
85
83
  verbose?: boolean;
86
84
  /** 快捷键配置,默认 'ctrl+k' */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vite-plugin-opencode-assistant/shared",
3
- "version": "1.0.35",
3
+ "version": "1.0.37",
4
4
  "type": "module",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",