@deepseek-ai/dsh-session 0.1.6-alpha.1 → 0.1.6-alpha.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.
- package/lib/index.js +2 -1
- package/lib/types/known-event-types.js +1 -0
- package/package.json +9 -9
package/lib/index.js
CHANGED
|
@@ -133,7 +133,8 @@ const KNOWN_SESSION_EVENT_TYPES = new Set([
|
|
|
133
133
|
"turn/end",
|
|
134
134
|
"turn/start",
|
|
135
135
|
"user/message",
|
|
136
|
-
"web/deepseek-search-llm-request"
|
|
136
|
+
"web/deepseek-search-llm-request",
|
|
137
|
+
"workspace/changes"
|
|
137
138
|
]);
|
|
138
139
|
/** Event types whose model-visible effects require an explicit pure interpreter. */
|
|
139
140
|
const MESSAGE_PROJECTION_EVENT_TYPES = new Set(["image/offload"]);
|
|
@@ -76,6 +76,7 @@ export const KNOWN_SESSION_EVENT_TYPES = new Set([
|
|
|
76
76
|
'turn/start',
|
|
77
77
|
'user/message',
|
|
78
78
|
'web/deepseek-search-llm-request',
|
|
79
|
+
'workspace/changes',
|
|
79
80
|
]);
|
|
80
81
|
/** Event types whose model-visible effects require an explicit pure interpreter. */
|
|
81
82
|
export const MESSAGE_PROJECTION_EVENT_TYPES = new Set([
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepseek-ai/dsh-session",
|
|
3
3
|
"description": "Event-sourced session store for the DeepSeek Harness",
|
|
4
|
-
"version": "0.1.6-alpha.
|
|
4
|
+
"version": "0.1.6-alpha.2",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -41,19 +41,19 @@
|
|
|
41
41
|
],
|
|
42
42
|
"license": "MIT",
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"@deepseek-ai/dsh-scope": "^0.1.6-alpha.
|
|
44
|
+
"@deepseek-ai/dsh-scope": "^0.1.6-alpha.2",
|
|
45
45
|
"@deepseek-ai/cordis": "^4.0.2"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@deepseek-ai/dsh-invariants": "^0.1.6-alpha.
|
|
49
|
-
"@deepseek-ai/dsh-scope": "^0.1.6-alpha.
|
|
50
|
-
"@deepseek-ai/dsh-typert-protocol": "^0.1.6-alpha.
|
|
51
|
-
"@deepseek-ai/dsh-typert-registry": "^0.1.6-alpha.
|
|
48
|
+
"@deepseek-ai/dsh-invariants": "^0.1.6-alpha.2",
|
|
49
|
+
"@deepseek-ai/dsh-scope": "^0.1.6-alpha.2",
|
|
50
|
+
"@deepseek-ai/dsh-typert-protocol": "^0.1.6-alpha.2",
|
|
51
|
+
"@deepseek-ai/dsh-typert-registry": "^0.1.6-alpha.2",
|
|
52
52
|
"@deepseek-ai/cordis": "^4.0.2"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@deepseek-ai/dsh-llm": "^0.1.6-alpha.
|
|
56
|
-
"@deepseek-ai/dsh-util-values": "^0.1.6-alpha.
|
|
57
|
-
"@deepseek-ai/dsh-brand": "^0.1.6-alpha.
|
|
55
|
+
"@deepseek-ai/dsh-llm": "^0.1.6-alpha.2",
|
|
56
|
+
"@deepseek-ai/dsh-util-values": "^0.1.6-alpha.2",
|
|
57
|
+
"@deepseek-ai/dsh-brand": "^0.1.6-alpha.2"
|
|
58
58
|
}
|
|
59
59
|
}
|