@ahggg/dsh-side-chat 0.6.1 → 0.7.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.
Files changed (42) hide show
  1. package/README.md +9 -5
  2. package/README.zh-CN.md +9 -5
  3. package/lib/client/apply.d.ts.map +1 -1
  4. package/lib/client/apply.js +3 -0
  5. package/lib/client/apply.js.map +1 -1
  6. package/lib/client/panel/SideChatHeader.d.ts +3 -1
  7. package/lib/client/panel/SideChatHeader.d.ts.map +1 -1
  8. package/lib/client/panel/SideChatHeader.js +5 -2
  9. package/lib/client/panel/SideChatHeader.js.map +1 -1
  10. package/lib/client/panel/SideChatPanel.d.ts +3 -1
  11. package/lib/client/panel/SideChatPanel.d.ts.map +1 -1
  12. package/lib/client/panel/SideChatPanel.js +2 -2
  13. package/lib/client/panel/SideChatPanel.js.map +1 -1
  14. package/lib/client/panel/messages.d.ts +1 -0
  15. package/lib/client/panel/messages.d.ts.map +1 -1
  16. package/lib/client/panel/messages.js +2 -0
  17. package/lib/client/panel/messages.js.map +1 -1
  18. package/lib/client/parent-composer/ParentConversationAnnotations.d.ts +2 -0
  19. package/lib/client/parent-composer/ParentConversationAnnotations.d.ts.map +1 -1
  20. package/lib/client/parent-composer/ParentConversationAnnotations.js +42 -3
  21. package/lib/client/parent-composer/ParentConversationAnnotations.js.map +1 -1
  22. package/lib/client/parent-composer/add-to-conversation.d.ts +3 -0
  23. package/lib/client/parent-composer/add-to-conversation.d.ts.map +1 -1
  24. package/lib/client/parent-composer/add-to-conversation.js.map +1 -1
  25. package/lib/client/parent-composer/referenced-conversation.d.ts +35 -0
  26. package/lib/client/parent-composer/referenced-conversation.d.ts.map +1 -0
  27. package/lib/client/parent-composer/referenced-conversation.js +207 -0
  28. package/lib/client/parent-composer/referenced-conversation.js.map +1 -0
  29. package/lib/client/rc6/Rc6SideChatOverlay.d.ts.map +1 -1
  30. package/lib/client/rc6/Rc6SideChatOverlay.js +157 -26
  31. package/lib/client/rc6/Rc6SideChatOverlay.js.map +1 -1
  32. package/lib/client/rc6/sessions-adapter.d.ts +3 -0
  33. package/lib/client/rc6/sessions-adapter.d.ts.map +1 -1
  34. package/lib/client/rc6/sessions-adapter.js +10 -0
  35. package/lib/client/rc6/sessions-adapter.js.map +1 -1
  36. package/lib/client/selection/SelectionActions.d.ts +12 -1
  37. package/lib/client/selection/SelectionActions.d.ts.map +1 -1
  38. package/lib/client/selection/SelectionActions.js +121 -19
  39. package/lib/client/selection/SelectionActions.js.map +1 -1
  40. package/lib/client.js +532 -53
  41. package/lib/client.js.map +1 -1
  42. package/package.json +28 -28
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ahggg/dsh-side-chat",
3
- "version": "0.6.1",
3
+ "version": "0.7.0",
4
4
  "description": "Codex-style side conversations for DeepSeek Harness",
5
5
  "keywords": [
6
6
  "deepseek-harness",
@@ -83,19 +83,19 @@
83
83
  },
84
84
  "peerDependencies": {
85
85
  "@deepseek-ai/cordis": "4.0.1",
86
- "@deepseek-ai/dsh-agent": "0.1.0-rc.6",
87
- "@deepseek-ai/dsh-agent-presets": "0.1.0-rc.6",
88
- "@deepseek-ai/dsh-api-remotes": "0.1.0-rc.6",
89
- "@deepseek-ai/dsh-client-runtime": "0.1.0-rc.6",
90
- "@deepseek-ai/dsh-client-ui-layout": "0.1.0-rc.6",
91
- "@deepseek-ai/dsh-client-ui-model-selection": "0.1.0-rc.6",
92
- "@deepseek-ai/dsh-client-ui-primitives": "0.1.0-rc.6",
93
- "@deepseek-ai/dsh-client-ui-slots": "0.1.0-rc.6",
94
- "@deepseek-ai/dsh-llm": "0.1.0-rc.6",
95
- "@deepseek-ai/dsh-session": "0.1.0-rc.6",
96
- "@deepseek-ai/dsh-typert-protocol": "0.1.0-rc.6",
97
- "@deepseek-ai/dsh-user-questions": "0.1.0-rc.6",
98
- "@deepseek-ai/dsh-workspace": "0.1.0-rc.6",
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",
99
99
  "react": ">=18.2.0 <20.0.0"
100
100
  },
101
101
  "dependencies": {
@@ -103,20 +103,20 @@
103
103
  "zod": "4.4.3"
104
104
  },
105
105
  "devDependencies": {
106
- "@deepseek-ai/dsh-agent": "0.1.0-rc.6",
107
- "@deepseek-ai/dsh-agent-presets": "0.1.0-rc.6",
108
- "@deepseek-ai/dsh-api-remotes": "0.1.0-rc.6",
109
- "@deepseek-ai/dsh-client-runtime": "0.1.0-rc.6",
110
- "@deepseek-ai/dsh-client-ui-layout": "0.1.0-rc.6",
111
- "@deepseek-ai/dsh-client-ui-model-selection": "0.1.0-rc.6",
112
- "@deepseek-ai/dsh-client-ui-primitives": "0.1.0-rc.6",
113
- "@deepseek-ai/dsh-client-ui-slots": "0.1.0-rc.6",
114
- "@deepseek-ai/dsh-client-ui-theme": "0.1.0-rc.6",
115
- "@deepseek-ai/dsh-llm": "0.1.0-rc.6",
116
- "@deepseek-ai/dsh-session": "0.1.0-rc.6",
117
- "@deepseek-ai/dsh-typert-protocol": "0.1.0-rc.6",
118
- "@deepseek-ai/dsh-user-questions": "0.1.0-rc.6",
119
- "@deepseek-ai/dsh-workspace": "0.1.0-rc.6",
106
+ "@deepseek-ai/dsh-agent": "0.1.0-rc.7",
107
+ "@deepseek-ai/dsh-agent-presets": "0.1.0-rc.7",
108
+ "@deepseek-ai/dsh-api-remotes": "0.1.0-rc.7",
109
+ "@deepseek-ai/dsh-client-runtime": "0.1.0-rc.7",
110
+ "@deepseek-ai/dsh-client-ui-layout": "0.1.0-rc.7",
111
+ "@deepseek-ai/dsh-client-ui-model-selection": "0.1.0-rc.7",
112
+ "@deepseek-ai/dsh-client-ui-primitives": "0.1.0-rc.7",
113
+ "@deepseek-ai/dsh-client-ui-slots": "0.1.0-rc.7",
114
+ "@deepseek-ai/dsh-client-ui-theme": "0.1.0-rc.7",
115
+ "@deepseek-ai/dsh-llm": "0.1.0-rc.7",
116
+ "@deepseek-ai/dsh-session": "0.1.0-rc.7",
117
+ "@deepseek-ai/dsh-typert-protocol": "0.1.0-rc.7",
118
+ "@deepseek-ai/dsh-user-questions": "0.1.0-rc.7",
119
+ "@deepseek-ai/dsh-workspace": "0.1.0-rc.7",
120
120
  "@testing-library/jest-dom": "6.9.1",
121
121
  "@testing-library/react": "16.3.2",
122
122
  "@types/node": "22.20.0",