@huanlin/dsh-plugin-better-plan 0.4.0 → 0.5.0
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/lib/types/config.d.ts +7 -7
- package/package.json +8 -8
package/lib/types/config.d.ts
CHANGED
|
@@ -32,14 +32,14 @@ export interface BetterPlanConfig {
|
|
|
32
32
|
locale: LocaleSetting;
|
|
33
33
|
}
|
|
34
34
|
/** Schemastery schema validated by the cordis Loader. */
|
|
35
|
-
export declare const Config: import("
|
|
36
|
-
planDir: import("
|
|
37
|
-
maxPlanBytes: import("
|
|
38
|
-
locale: import("
|
|
35
|
+
export declare const Config: import("@deepseek-ai/schemastery").default<Schemastery.ObjectS<{
|
|
36
|
+
planDir: import("@deepseek-ai/schemastery").default<string, string>;
|
|
37
|
+
maxPlanBytes: import("@deepseek-ai/schemastery").default<number, number>;
|
|
38
|
+
locale: import("@deepseek-ai/schemastery").default<"zh" | "en" | "auto", "zh" | "en" | "auto">;
|
|
39
39
|
}>, Schemastery.ObjectT<{
|
|
40
|
-
planDir: import("
|
|
41
|
-
maxPlanBytes: import("
|
|
42
|
-
locale: import("
|
|
40
|
+
planDir: import("@deepseek-ai/schemastery").default<string, string>;
|
|
41
|
+
maxPlanBytes: import("@deepseek-ai/schemastery").default<number, number>;
|
|
42
|
+
locale: import("@deepseek-ai/schemastery").default<"zh" | "en" | "auto", "zh" | "en" | "auto">;
|
|
43
43
|
}>>;
|
|
44
44
|
/**
|
|
45
45
|
* Resolve a raw config patch through the schema, returning a full
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@huanlin/dsh-plugin-better-plan",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -43,13 +43,13 @@
|
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
46
|
-
"@deepseek-ai/dsh-agent": "^0.1.
|
|
47
|
-
"@deepseek-ai/dsh-client-ui-primitives": "^0.1.
|
|
48
|
-
"@deepseek-ai/dsh-llm": "^0.1.
|
|
49
|
-
"@deepseek-ai/dsh-plan-mode": "^0.1.
|
|
50
|
-
"@deepseek-ai/dsh-session": "^0.1.
|
|
51
|
-
"@deepseek-ai/dsh-tools": "^0.1.
|
|
52
|
-
"@deepseek-ai/dsh-user-questions": "^0.1.
|
|
46
|
+
"@deepseek-ai/dsh-agent": "^0.1.5-rc.1",
|
|
47
|
+
"@deepseek-ai/dsh-client-ui-primitives": "^0.1.5-rc.1",
|
|
48
|
+
"@deepseek-ai/dsh-llm": "^0.1.5-rc.1",
|
|
49
|
+
"@deepseek-ai/dsh-plan-mode": "^0.1.5-rc.1",
|
|
50
|
+
"@deepseek-ai/dsh-session": "^0.1.5-rc.1",
|
|
51
|
+
"@deepseek-ai/dsh-tools": "^0.1.5-rc.1",
|
|
52
|
+
"@deepseek-ai/dsh-user-questions": "^0.1.5-rc.1",
|
|
53
53
|
"dsh-better-sidebar": "^0.17.1",
|
|
54
54
|
"react": "^18.2.0",
|
|
55
55
|
"schemastery": "^3.18.0"
|