@deepseek-ai/dsh-client-test-runtime 0.1.2-alpha.2 → 0.1.2-alpha.3
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 +7 -0
- package/lib/types/sessions.d.ts +5 -0
- package/package.json +33 -33
package/lib/index.js
CHANGED
|
@@ -272,6 +272,13 @@ var FixtureSession = class {
|
|
|
272
272
|
throw new Error(`test session "${this.sessionId}": loadOlder is not stubbed — supply it on the fixture's session face`);
|
|
273
273
|
}
|
|
274
274
|
/**
|
|
275
|
+
* Fail-loud stub; supply `loadThrough` on the fixture's session face to exercise it.
|
|
276
|
+
* @returns never — always throws.
|
|
277
|
+
*/
|
|
278
|
+
loadThrough() {
|
|
279
|
+
throw new Error(`test session "${this.sessionId}": loadThrough is not stubbed — supply it on the fixture's session face`);
|
|
280
|
+
}
|
|
281
|
+
/**
|
|
275
282
|
* Fail-loud stub; supply `rename` on the fixture's session face to exercise it.
|
|
276
283
|
* @returns never — always throws.
|
|
277
284
|
*/
|
package/lib/types/sessions.d.ts
CHANGED
|
@@ -78,6 +78,11 @@ export declare class FixtureSession implements SessionFace {
|
|
|
78
78
|
* @returns never — always throws.
|
|
79
79
|
*/
|
|
80
80
|
loadOlder(): never;
|
|
81
|
+
/**
|
|
82
|
+
* Fail-loud stub; supply `loadThrough` on the fixture's session face to exercise it.
|
|
83
|
+
* @returns never — always throws.
|
|
84
|
+
*/
|
|
85
|
+
loadThrough(): never;
|
|
81
86
|
/**
|
|
82
87
|
* Fail-loud stub; supply `rename` on the fixture's session face to exercise it.
|
|
83
88
|
* @returns never — always throws.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepseek-ai/dsh-client-test-runtime",
|
|
3
3
|
"description": "jsdom slot test runtime: real Cordis Context + SlotRegistry + UI renderer with test-owned session/workspace doubles for feature specs",
|
|
4
|
-
"version": "0.1.2-alpha.
|
|
4
|
+
"version": "0.1.2-alpha.3",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -34,44 +34,44 @@
|
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"react": "^18.2.0",
|
|
36
36
|
"react-dom": "^18.2.0",
|
|
37
|
-
"@deepseek-ai/dsh-api-workspace-controller": "^0.1.2-alpha.
|
|
38
|
-
"@deepseek-ai/dsh-attachment": "^0.1.2-alpha.
|
|
39
|
-
"@deepseek-ai/dsh-client-connection": "^0.1.2-alpha.
|
|
40
|
-
"@deepseek-ai/dsh-client-store": "^0.1.2-alpha.
|
|
41
|
-
"@deepseek-ai/dsh-client-ui-chat": "^0.1.2-alpha.
|
|
42
|
-
"@deepseek-ai/dsh-client-ui-conversation": "^0.1.2-alpha.
|
|
43
|
-
"@deepseek-ai/dsh-client-ui-
|
|
44
|
-
"@deepseek-ai/dsh-client-ui-
|
|
45
|
-
"@deepseek-ai/dsh-
|
|
46
|
-
"@deepseek-ai/dsh-client-ui-
|
|
47
|
-
"@deepseek-ai/dsh-
|
|
48
|
-
"@deepseek-ai/dsh-
|
|
49
|
-
"@deepseek-ai/dsh-
|
|
50
|
-
"@deepseek-ai/dsh-
|
|
51
|
-
"@deepseek-ai/
|
|
52
|
-
"@deepseek-ai/
|
|
37
|
+
"@deepseek-ai/dsh-api-workspace-controller": "^0.1.2-alpha.3",
|
|
38
|
+
"@deepseek-ai/dsh-attachment": "^0.1.2-alpha.3",
|
|
39
|
+
"@deepseek-ai/dsh-client-connection": "^0.1.2-alpha.3",
|
|
40
|
+
"@deepseek-ai/dsh-client-store": "^0.1.2-alpha.3",
|
|
41
|
+
"@deepseek-ai/dsh-client-ui-chat": "^0.1.2-alpha.3",
|
|
42
|
+
"@deepseek-ai/dsh-client-ui-conversation": "^0.1.2-alpha.3",
|
|
43
|
+
"@deepseek-ai/dsh-client-ui-renderer": "^0.1.2-alpha.3",
|
|
44
|
+
"@deepseek-ai/dsh-client-ui-session": "^0.1.2-alpha.3",
|
|
45
|
+
"@deepseek-ai/dsh-api-session-controller": "^0.1.2-alpha.3",
|
|
46
|
+
"@deepseek-ai/dsh-client-ui-settings": "^0.1.2-alpha.3",
|
|
47
|
+
"@deepseek-ai/dsh-client-ui-slots": "^0.1.2-alpha.3",
|
|
48
|
+
"@deepseek-ai/dsh-invariants": "^0.1.2-alpha.3",
|
|
49
|
+
"@deepseek-ai/dsh-session": "^0.1.2-alpha.3",
|
|
50
|
+
"@deepseek-ai/dsh-subagent": "^0.1.2-alpha.3",
|
|
51
|
+
"@deepseek-ai/dsh-typert-protocol": "^0.1.2-alpha.3",
|
|
52
|
+
"@deepseek-ai/cordis": "^4.0.2"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@types/react": "~18.3.1",
|
|
56
56
|
"@types/react-dom": "~18.3.0",
|
|
57
57
|
"react": "^18.2.0",
|
|
58
58
|
"react-dom": "^18.2.0",
|
|
59
|
-
"@deepseek-ai/dsh-api-
|
|
60
|
-
"@deepseek-ai/dsh-api-
|
|
61
|
-
"@deepseek-ai/dsh-attachment": "^0.1.2-alpha.
|
|
62
|
-
"@deepseek-ai/dsh-client-connection": "^0.1.2-alpha.
|
|
63
|
-
"@deepseek-ai/dsh-client-store": "^0.1.2-alpha.
|
|
64
|
-
"@deepseek-ai/dsh-client-ui-
|
|
65
|
-
"@deepseek-ai/dsh-client-ui-renderer": "^0.1.2-alpha.
|
|
66
|
-
"@deepseek-ai/dsh-client-ui-
|
|
67
|
-
"@deepseek-ai/dsh-client-ui-
|
|
68
|
-
"@deepseek-ai/dsh-client-ui-
|
|
69
|
-
"@deepseek-ai/dsh-
|
|
70
|
-
"@deepseek-ai/dsh-
|
|
71
|
-
"@deepseek-ai/dsh-
|
|
72
|
-
"@deepseek-ai/
|
|
73
|
-
"@deepseek-ai/dsh-
|
|
74
|
-
"@deepseek-ai/
|
|
59
|
+
"@deepseek-ai/dsh-api-session-controller": "^0.1.2-alpha.3",
|
|
60
|
+
"@deepseek-ai/dsh-api-workspace-controller": "^0.1.2-alpha.3",
|
|
61
|
+
"@deepseek-ai/dsh-attachment": "^0.1.2-alpha.3",
|
|
62
|
+
"@deepseek-ai/dsh-client-connection": "^0.1.2-alpha.3",
|
|
63
|
+
"@deepseek-ai/dsh-client-store": "^0.1.2-alpha.3",
|
|
64
|
+
"@deepseek-ai/dsh-client-ui-conversation": "^0.1.2-alpha.3",
|
|
65
|
+
"@deepseek-ai/dsh-client-ui-renderer": "^0.1.2-alpha.3",
|
|
66
|
+
"@deepseek-ai/dsh-client-ui-session": "^0.1.2-alpha.3",
|
|
67
|
+
"@deepseek-ai/dsh-client-ui-settings": "^0.1.2-alpha.3",
|
|
68
|
+
"@deepseek-ai/dsh-client-ui-slots": "^0.1.2-alpha.3",
|
|
69
|
+
"@deepseek-ai/dsh-session": "^0.1.2-alpha.3",
|
|
70
|
+
"@deepseek-ai/dsh-subagent": "^0.1.2-alpha.3",
|
|
71
|
+
"@deepseek-ai/dsh-typert-protocol": "^0.1.2-alpha.3",
|
|
72
|
+
"@deepseek-ai/cordis": "^4.0.2",
|
|
73
|
+
"@deepseek-ai/dsh-invariants": "^0.1.2-alpha.3",
|
|
74
|
+
"@deepseek-ai/dsh-client-ui-chat": "^0.1.2-alpha.3"
|
|
75
75
|
},
|
|
76
76
|
"files": [
|
|
77
77
|
"lib/index.js",
|