@ahggg/dsh-side-chat 0.7.0 → 0.7.1
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/README.md +0 -2
- package/README.zh-CN.md +0 -2
- package/lib/client/parent-composer/add-to-conversation.d.ts +4 -2
- package/lib/client/parent-composer/add-to-conversation.d.ts.map +1 -1
- package/lib/client/parent-composer/add-to-conversation.js +57 -16
- package/lib/client/parent-composer/add-to-conversation.js.map +1 -1
- package/lib/client/parent-composer/annotation-persistence.d.ts +1 -1
- package/lib/client/parent-composer/annotation-persistence.d.ts.map +1 -1
- package/lib/client/parent-composer/annotation-persistence.js +40 -5
- package/lib/client/parent-composer/annotation-persistence.js.map +1 -1
- package/lib/client.js +53 -17
- package/lib/client.js.map +1 -1
- package/lib/shared/constants.d.ts +1 -1
- package/lib/shared/constants.d.ts.map +1 -1
- package/lib/shared/constants.js +1 -1
- package/lib/shared/constants.js.map +1 -1
- package/package.json +36 -29
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/**
|
|
1
|
+
/** Historical rc.6 adapter baseline; package.json owns current compatibility metadata. */
|
|
2
2
|
export declare const DSH_BASELINE: Readonly<{
|
|
3
3
|
repository: "https://github.com/deepseek-ai/deepseek-harness";
|
|
4
4
|
npmPackage: "@deepseek-ai/dsh";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/shared/constants.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/shared/constants.ts"],"names":[],"mappings":"AAAA,0FAA0F;AAC1F,eAAO,MAAM,YAAY;;;;;;;;;;;EAWvB,CAAA;AAEF,gFAAgF;AAChF,eAAO,MAAM,mBAAmB,QAAY,CAAA"}
|
package/lib/shared/constants.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/**
|
|
1
|
+
/** Historical rc.6 adapter baseline; package.json owns current compatibility metadata. */
|
|
2
2
|
export const DSH_BASELINE = Object.freeze({
|
|
3
3
|
repository: 'https://github.com/deepseek-ai/deepseek-harness',
|
|
4
4
|
npmPackage: '@deepseek-ai/dsh',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/shared/constants.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/shared/constants.ts"],"names":[],"mappings":"AAAA,0FAA0F;AAC1F,MAAM,CAAC,MAAM,YAAY,GAAG,MAAM,CAAC,MAAM,CAAC;IACxC,UAAU,EAAE,iDAAiD;IAC7D,UAAU,EAAE,kBAAkB;IAC9B,UAAU,EAAE,YAAY;IACxB,YAAY,EAAE,iGAAiG;IAC/G,YAAY,EAAE,IAAI;IAClB,oBAAoB,EAAE,0CAA0C;IAChE,2BAA2B,EAAE,YAAY;IACzC,IAAI,EAAE,sBAAsB;IAC5B,IAAI,EAAE,QAAQ;IACd,2BAA2B,EAAE,IAAI;CAClC,CAAC,CAAA;AAEF,gFAAgF;AAChF,MAAM,CAAC,MAAM,mBAAmB,GAAG,EAAE,GAAG,IAAI,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ahggg/dsh-side-chat",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "Codex-style side conversations for DeepSeek Harness",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"deepseek-harness",
|
|
@@ -65,6 +65,12 @@
|
|
|
65
65
|
]
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
|
+
"dshCompatibility": {
|
|
69
|
+
"testedVersions": [
|
|
70
|
+
"0.1.0-rc.7",
|
|
71
|
+
"0.1.1-rc.2"
|
|
72
|
+
]
|
|
73
|
+
},
|
|
68
74
|
"engines": {
|
|
69
75
|
"node": "^22.19.0 || >=24.0.0"
|
|
70
76
|
},
|
|
@@ -78,24 +84,25 @@
|
|
|
78
84
|
"build": "npm run clean && tsc -p tsconfig.build.json && tsdown --config tsdown.config.ts",
|
|
79
85
|
"pack:verify": "npm run build && node scripts/verify-package.mjs",
|
|
80
86
|
"clean-profile:verify": "npm run build && node scripts/clean-profile-e2e.mjs",
|
|
81
|
-
"
|
|
87
|
+
"dsh:update": "node scripts/update-dsh-compatibility.mjs",
|
|
88
|
+
"check": "pnpm peers check && npm run typecheck && npm run lint && npm run test && npm run pack:verify",
|
|
82
89
|
"prepack": "npm run build"
|
|
83
90
|
},
|
|
84
91
|
"peerDependencies": {
|
|
85
92
|
"@deepseek-ai/cordis": "4.0.1",
|
|
86
|
-
"@deepseek-ai/dsh-agent": "0.1.0-rc.7",
|
|
87
|
-
"@deepseek-ai/dsh-agent-presets": "0.1.0-rc.7",
|
|
88
|
-
"@deepseek-ai/dsh-api-remotes": "0.1.0-rc.7",
|
|
89
|
-
"@deepseek-ai/dsh-client-runtime": "0.1.0-rc.7",
|
|
90
|
-
"@deepseek-ai/dsh-client-ui-layout": "0.1.0-rc.7",
|
|
91
|
-
"@deepseek-ai/dsh-client-ui-model-selection": "0.1.0-rc.7",
|
|
92
|
-
"@deepseek-ai/dsh-client-ui-primitives": "0.1.0-rc.7",
|
|
93
|
-
"@deepseek-ai/dsh-client-ui-slots": "0.1.0-rc.7",
|
|
94
|
-
"@deepseek-ai/dsh-llm": "0.1.0-rc.7",
|
|
95
|
-
"@deepseek-ai/dsh-session": "0.1.0-rc.7",
|
|
96
|
-
"@deepseek-ai/dsh-typert-protocol": "0.1.0-rc.7",
|
|
97
|
-
"@deepseek-ai/dsh-user-questions": "0.1.0-rc.7",
|
|
98
|
-
"@deepseek-ai/dsh-workspace": "0.1.0-rc.7",
|
|
93
|
+
"@deepseek-ai/dsh-agent": "0.1.0-rc.7 || 0.1.1-rc.2",
|
|
94
|
+
"@deepseek-ai/dsh-agent-presets": "0.1.0-rc.7 || 0.1.1-rc.2",
|
|
95
|
+
"@deepseek-ai/dsh-api-remotes": "0.1.0-rc.7 || 0.1.1-rc.2",
|
|
96
|
+
"@deepseek-ai/dsh-client-runtime": "0.1.0-rc.7 || 0.1.1-rc.2",
|
|
97
|
+
"@deepseek-ai/dsh-client-ui-layout": "0.1.0-rc.7 || 0.1.1-rc.2",
|
|
98
|
+
"@deepseek-ai/dsh-client-ui-model-selection": "0.1.0-rc.7 || 0.1.1-rc.2",
|
|
99
|
+
"@deepseek-ai/dsh-client-ui-primitives": "0.1.0-rc.7 || 0.1.1-rc.2",
|
|
100
|
+
"@deepseek-ai/dsh-client-ui-slots": "0.1.0-rc.7 || 0.1.1-rc.2",
|
|
101
|
+
"@deepseek-ai/dsh-llm": "0.1.0-rc.7 || 0.1.1-rc.2",
|
|
102
|
+
"@deepseek-ai/dsh-session": "0.1.0-rc.7 || 0.1.1-rc.2",
|
|
103
|
+
"@deepseek-ai/dsh-typert-protocol": "0.1.0-rc.7 || 0.1.1-rc.2",
|
|
104
|
+
"@deepseek-ai/dsh-user-questions": "0.1.0-rc.7 || 0.1.1-rc.2",
|
|
105
|
+
"@deepseek-ai/dsh-workspace": "0.1.0-rc.7 || 0.1.1-rc.2",
|
|
99
106
|
"react": ">=18.2.0 <20.0.0"
|
|
100
107
|
},
|
|
101
108
|
"dependencies": {
|
|
@@ -103,20 +110,20 @@
|
|
|
103
110
|
"zod": "4.4.3"
|
|
104
111
|
},
|
|
105
112
|
"devDependencies": {
|
|
106
|
-
"@deepseek-ai/dsh-agent": "0.1.
|
|
107
|
-
"@deepseek-ai/dsh-agent-presets": "0.1.
|
|
108
|
-
"@deepseek-ai/dsh-api-remotes": "0.1.
|
|
109
|
-
"@deepseek-ai/dsh-client-runtime": "0.1.
|
|
110
|
-
"@deepseek-ai/dsh-client-ui-layout": "0.1.
|
|
111
|
-
"@deepseek-ai/dsh-client-ui-model-selection": "0.1.
|
|
112
|
-
"@deepseek-ai/dsh-client-ui-primitives": "0.1.
|
|
113
|
-
"@deepseek-ai/dsh-client-ui-slots": "0.1.
|
|
114
|
-
"@deepseek-ai/dsh-client-ui-theme": "0.1.
|
|
115
|
-
"@deepseek-ai/dsh-llm": "0.1.
|
|
116
|
-
"@deepseek-ai/dsh-session": "0.1.
|
|
117
|
-
"@deepseek-ai/dsh-typert-protocol": "0.1.
|
|
118
|
-
"@deepseek-ai/dsh-user-questions": "0.1.
|
|
119
|
-
"@deepseek-ai/dsh-workspace": "0.1.
|
|
113
|
+
"@deepseek-ai/dsh-agent": "0.1.1-rc.2",
|
|
114
|
+
"@deepseek-ai/dsh-agent-presets": "0.1.1-rc.2",
|
|
115
|
+
"@deepseek-ai/dsh-api-remotes": "0.1.1-rc.2",
|
|
116
|
+
"@deepseek-ai/dsh-client-runtime": "0.1.1-rc.2",
|
|
117
|
+
"@deepseek-ai/dsh-client-ui-layout": "0.1.1-rc.2",
|
|
118
|
+
"@deepseek-ai/dsh-client-ui-model-selection": "0.1.1-rc.2",
|
|
119
|
+
"@deepseek-ai/dsh-client-ui-primitives": "0.1.1-rc.2",
|
|
120
|
+
"@deepseek-ai/dsh-client-ui-slots": "0.1.1-rc.2",
|
|
121
|
+
"@deepseek-ai/dsh-client-ui-theme": "0.1.1-rc.2",
|
|
122
|
+
"@deepseek-ai/dsh-llm": "0.1.1-rc.2",
|
|
123
|
+
"@deepseek-ai/dsh-session": "0.1.1-rc.2",
|
|
124
|
+
"@deepseek-ai/dsh-typert-protocol": "0.1.1-rc.2",
|
|
125
|
+
"@deepseek-ai/dsh-user-questions": "0.1.1-rc.2",
|
|
126
|
+
"@deepseek-ai/dsh-workspace": "0.1.1-rc.2",
|
|
120
127
|
"@testing-library/jest-dom": "6.9.1",
|
|
121
128
|
"@testing-library/react": "16.3.2",
|
|
122
129
|
"@types/node": "22.20.0",
|