@yadsh/dsh-session-scope 0.5.1 → 0.6.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 +5 -4
- package/compatibility.json +5 -1
- package/lib/client.js +175 -114
- package/lib/client.js.map +1 -1
- package/lib/host-api.d.ts.map +1 -1
- package/lib/host-api.js +7 -0
- package/lib/host-api.js.map +1 -1
- package/lib/host-types.d.ts +178 -0
- package/lib/host-types.d.ts.map +1 -0
- package/lib/host-types.js +5 -0
- package/lib/host-types.js.map +1 -0
- package/lib/index.d.ts +8 -2
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +102 -57
- package/lib/index.js.map +1 -1
- package/lib/scope-context.d.ts.map +1 -1
- package/lib/scope-context.js +1 -5
- package/lib/scope-context.js.map +1 -1
- package/lib/scope-fs.d.ts +2 -0
- package/lib/scope-fs.d.ts.map +1 -1
- package/lib/scope-fs.js +7 -12
- package/lib/scope-fs.js.map +1 -1
- package/lib/scope-processes.d.ts +1 -1
- package/lib/scope-processes.d.ts.map +1 -1
- package/lib/scope-remote.d.ts +11 -0
- package/lib/scope-remote.d.ts.map +1 -0
- package/lib/scope-remote.js +35 -0
- package/lib/scope-remote.js.map +1 -0
- package/package.json +14 -4
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scope-remote.js","sourceRoot":"","sources":["../src/scope-remote.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AAE/E,OAAO,EAAE,kBAAkB,EAAqB,MAAM,eAAe,CAAC;AAOtE,yDAAyD;AACzD,MAAM,OAAO,uBAAwB,SAAQ,mBAAmB;IAGnB,qBAAqB;IAF/C,QAAQ,CAAgB;IAEzC,YAAY,GAAY,EAAmB,qBAAqB,GAAG,EAAE;QACnE,KAAK,CAAC,GAAG,EAAE,kBAAkB,EAAE,EAAE,SAAS,EAAE,cAAc,EAAE,CAAC,CAAC;qCADrB,qBAAqB;QAE9D,IAAI,CAAC,QAAQ,GAAG,GAAG,CAAC,GAAG,CAAC,UAAU,CAAkB,CAAC;IACvD,CAAC;IAED,KAAK,CAAC,IAAI,CAAC,SAAiB,EAAE,IAAY;QACxC,MAAM,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;QAC7C,IAAI,OAAO,KAAK,SAAS;YAAE,MAAM,IAAI,KAAK,CAAC,gDAAgD,CAAC,CAAC;QAC7F,OAAO,kBAAkB,CAAC,OAAO,EAAE,IAAI,EAAE,IAAI,CAAC,qBAAqB,CAAC,CAAC;IACvE,CAAC;CACF;AAED,SAAS,oBAAoB;IAC3B,MAAM,YAAY,GAAkC,EAAE,CAAC;IACvD,MAAM,QAAQ,GAAG,MAQR,CAAC;IACV,QAAQ,CACN,uBAAuB,CAAC,SAAS,CAAC,IAAkD,EACpF;QACE,IAAI,EAAE,MAAM;QACZ,OAAO,EAAE,KAAK;QACd,MAAM,EAAE,KAAK;QACb,cAAc,CAAC,WAAW;YACxB,YAAY,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QACjC,CAAC;KACF,CACF,CAAC;IACF,MAAM,cAAc,GAAG,MAAM,CAAC,MAAM,CAAC,uBAAuB,CAAC,SAAS,CAAW,CAAC;IAClF,KAAK,MAAM,WAAW,IAAI,YAAY;QAAE,WAAW,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;AAC3E,CAAC;AAED,oBAAoB,EAAE,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yadsh/dsh-session-scope",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "Per-session workspace visibility scopes for DeepSeek Harness.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -70,6 +70,7 @@
|
|
|
70
70
|
},
|
|
71
71
|
"client": {
|
|
72
72
|
"inject": [
|
|
73
|
+
"@deepseek-ai/dsh-api-gateway",
|
|
73
74
|
"@deepseek-ai/dsh-client-runtime",
|
|
74
75
|
"@deepseek-ai/dsh-client-connection",
|
|
75
76
|
"@deepseek-ai/dsh-api-remotes",
|
|
@@ -79,9 +80,11 @@
|
|
|
79
80
|
}
|
|
80
81
|
},
|
|
81
82
|
"peerDependencies": {
|
|
83
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
82
84
|
"@deepseek-ai/dsh-fs": ">=0.1.1-rc.2 <0.2.0",
|
|
83
85
|
"@deepseek-ai/dsh-sandbox": ">=0.1.1-rc.2 <0.2.0",
|
|
84
86
|
"@deepseek-ai/dsh-session": ">=0.1.1-rc.2 <0.2.0",
|
|
87
|
+
"@deepseek-ai/dsh-typert-protocol": ">=0.1.1-rc.2 <0.2.0",
|
|
85
88
|
"react": "^18.2.0",
|
|
86
89
|
"react-dom": "^18.2.0"
|
|
87
90
|
},
|
|
@@ -119,10 +122,15 @@
|
|
|
119
122
|
"access": "public",
|
|
120
123
|
"registry": "https://registry.npmjs.org/"
|
|
121
124
|
},
|
|
125
|
+
"dependencies": {
|
|
126
|
+
"@yadsh/dsh-plugin-log": "^0.2.1"
|
|
127
|
+
},
|
|
122
128
|
"devDependencies": {
|
|
129
|
+
"@deepseek-ai/cordis": "4.0.1",
|
|
123
130
|
"@deepseek-ai/dsh-fs": "0.1.1-rc.2",
|
|
124
131
|
"@deepseek-ai/dsh-sandbox": "0.1.1-rc.2",
|
|
125
132
|
"@deepseek-ai/dsh-session": "0.1.1-rc.2",
|
|
133
|
+
"@deepseek-ai/dsh-typert-protocol": "0.1.1-rc.2",
|
|
126
134
|
"@types/node": "^26.4.0",
|
|
127
135
|
"@types/react": "18.3.28",
|
|
128
136
|
"@types/react-dom": "18.3.7",
|
|
@@ -130,11 +138,13 @@
|
|
|
130
138
|
"react": "18.3.1",
|
|
131
139
|
"react-dom": "18.3.1",
|
|
132
140
|
"typescript": "^7.0.2",
|
|
133
|
-
"vitest": "^4.1.11"
|
|
141
|
+
"vitest": "^4.1.11",
|
|
142
|
+
"@yadsh/dsh-test-kit": "^0.1.0",
|
|
143
|
+
"@yadsh/dsh-config": "^0.0.0"
|
|
134
144
|
},
|
|
135
145
|
"scripts": {
|
|
136
|
-
"build": "tsc -p tsconfig.json",
|
|
137
|
-
"lint": "eslint src
|
|
146
|
+
"build": "tsc -p tsconfig.build.json",
|
|
147
|
+
"lint": "eslint src tests scripts",
|
|
138
148
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
139
149
|
"test": "vitest run",
|
|
140
150
|
"test:watch": "vitest",
|