@deepseek-ai/dsh-session-reference 0.1.0-rc.7 → 0.1.0-rc.8
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.i18n.yaml +2 -2
- package/README.md +6 -6
- package/README.zh.md +6 -6
- package/lib/index.js +232 -110
- package/lib/typert.host.d.ts +3 -0
- package/lib/typert.host.js +458 -0
- package/lib/typert.remote-client.d.ts +26 -0
- package/lib/typert.remote-client.js +62 -0
- package/lib/types/config.js +18 -0
- package/lib/types/index.d.ts +25 -5
- package/lib/types/index.js +322 -0
- package/lib/types/invariant.js +22 -0
- package/lib/types/projection.js +142 -0
- package/lib/types/serialization.js +13 -0
- package/lib/types/types.d.ts +14 -3
- package/lib/types/types.js +8 -0
- package/lib/types/uri.js +81 -0
- package/package.json +36 -16
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepseek-ai/dsh-session-reference",
|
|
3
3
|
"description": "Cross-session snapshot references and durable untrusted model context (ctx.sessionReferenceResolver)",
|
|
4
|
-
"version": "0.1.0-rc.
|
|
4
|
+
"version": "0.1.0-rc.8",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -22,36 +22,56 @@
|
|
|
22
22
|
"types": "./lib/types/invariant.d.ts",
|
|
23
23
|
"default": "./lib/invariant.js"
|
|
24
24
|
},
|
|
25
|
+
"./types": {
|
|
26
|
+
"types": "./lib/types/types.d.ts",
|
|
27
|
+
"default": "./lib/types/types.js"
|
|
28
|
+
},
|
|
29
|
+
"./typert": {
|
|
30
|
+
"types": "./lib/typert.host.d.ts",
|
|
31
|
+
"default": "./lib/typert.host.js"
|
|
32
|
+
},
|
|
33
|
+
"./remote": {
|
|
34
|
+
"types": "./lib/typert.remote-client.d.ts",
|
|
35
|
+
"default": "./lib/typert.remote-client.js"
|
|
36
|
+
},
|
|
25
37
|
"./src/*": "./src/*",
|
|
26
38
|
"./package.json": "./package.json"
|
|
27
39
|
},
|
|
28
40
|
"files": [
|
|
29
41
|
"lib/index.js",
|
|
30
42
|
"lib/invariant.js",
|
|
31
|
-
"lib/types/**/*.
|
|
43
|
+
"lib/types/**/*.js",
|
|
44
|
+
"lib/types/**/*.d.ts",
|
|
45
|
+
"lib/typert.host.js",
|
|
46
|
+
"lib/typert.host.d.ts",
|
|
47
|
+
"lib/typert.remote-client.js",
|
|
48
|
+
"lib/typert.remote-client.d.ts"
|
|
32
49
|
],
|
|
33
50
|
"license": "MIT",
|
|
34
51
|
"dependencies": {
|
|
52
|
+
"zod": "^4.4.3",
|
|
35
53
|
"@deepseek-ai/schemastery": "^3.18.1"
|
|
36
54
|
},
|
|
37
55
|
"peerDependencies": {
|
|
38
|
-
"@deepseek-ai/dsh-
|
|
39
|
-
"@deepseek-ai/dsh-
|
|
40
|
-
"@deepseek-ai/dsh-
|
|
41
|
-
"@deepseek-ai/dsh-
|
|
42
|
-
"@deepseek-ai/dsh-session
|
|
56
|
+
"@deepseek-ai/dsh-compaction": "^0.1.0-rc.8",
|
|
57
|
+
"@deepseek-ai/dsh-invariants": "^0.1.0-rc.8",
|
|
58
|
+
"@deepseek-ai/dsh-agent": "^0.1.0-rc.8",
|
|
59
|
+
"@deepseek-ai/dsh-output-retention": "^0.1.0-rc.8",
|
|
60
|
+
"@deepseek-ai/dsh-session": "^0.1.0-rc.8",
|
|
61
|
+
"@deepseek-ai/dsh-typert-protocol": "^0.1.0-rc.8",
|
|
62
|
+
"@deepseek-ai/dsh-session-query": "^0.1.0-rc.8",
|
|
43
63
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
44
|
-
"@deepseek-ai/dsh-
|
|
45
|
-
"@deepseek-ai/dsh-session": "^0.1.0-rc.7"
|
|
64
|
+
"@deepseek-ai/dsh-llm": "^0.1.0-rc.8"
|
|
46
65
|
},
|
|
47
66
|
"devDependencies": {
|
|
48
|
-
"@deepseek-ai/dsh-agent": "^0.1.0-rc.
|
|
49
|
-
"@deepseek-ai/dsh-compaction": "^0.1.0-rc.
|
|
50
|
-
"@deepseek-ai/dsh-invariants": "^0.1.0-rc.
|
|
51
|
-
"@deepseek-ai/dsh-llm": "^0.1.0-rc.
|
|
52
|
-
"@deepseek-ai/dsh-output-retention": "^0.1.0-rc.
|
|
53
|
-
"@deepseek-ai/dsh-session-query": "^0.1.0-rc.
|
|
54
|
-
"@deepseek-ai/dsh-session": "^0.1.0-rc.
|
|
67
|
+
"@deepseek-ai/dsh-agent": "^0.1.0-rc.8",
|
|
68
|
+
"@deepseek-ai/dsh-compaction": "^0.1.0-rc.8",
|
|
69
|
+
"@deepseek-ai/dsh-invariants": "^0.1.0-rc.8",
|
|
70
|
+
"@deepseek-ai/dsh-llm": "^0.1.0-rc.8",
|
|
71
|
+
"@deepseek-ai/dsh-output-retention": "^0.1.0-rc.8",
|
|
72
|
+
"@deepseek-ai/dsh-session-query": "^0.1.0-rc.8",
|
|
73
|
+
"@deepseek-ai/dsh-session": "^0.1.0-rc.8",
|
|
74
|
+
"@deepseek-ai/dsh-typert-protocol": "^0.1.0-rc.8",
|
|
55
75
|
"@deepseek-ai/cordis": "^4.0.1"
|
|
56
76
|
}
|
|
57
77
|
}
|