@rezti/dsh-rez-suite 0.1.16 → 0.1.17
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/client.d.ts +1 -1
- package/lib/client.js +1 -2
- package/package.json +3 -3
- package/src/client/index.ts +2 -3
package/lib/client.d.ts
CHANGED
package/lib/client.js
CHANGED
|
@@ -1254,8 +1254,7 @@ function apply(ctx) {
|
|
|
1254
1254
|
}), "dsh-rez-suite: dictionaries");
|
|
1255
1255
|
ctx.slots.inject("settings.plugin.item", () => ctx.slots.register({
|
|
1256
1256
|
name: "settings.plugin.item",
|
|
1257
|
-
|
|
1258
|
-
order: 40,
|
|
1257
|
+
key: NS,
|
|
1259
1258
|
locale: NS
|
|
1260
1259
|
}, RezPluginCard));
|
|
1261
1260
|
ctx.slots.inject("settings.plugins.tab", () => ctx.slots.register({
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rezti/dsh-rez-suite",
|
|
3
3
|
"description": "ReZ-TI one-package install for DeepSeek Harness. Update with: dsh plugin --profile web update @rezti/dsh-rez-suite",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.17",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": "^22.19.0 || >=24.0.0"
|
|
@@ -38,11 +38,11 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
40
40
|
"zod": "^4.4.3",
|
|
41
|
-
"@rezti/dsh-rez-nextcloud": "0.1.7",
|
|
42
|
-
"@rezti/dsh-rez-odoo": "0.1.7",
|
|
43
41
|
"@rezti/dsh-rez-intent": "0.1.4",
|
|
44
42
|
"@rezti/dsh-rez-sso": "0.1.7",
|
|
45
43
|
"@rezti/dsh-rez-token-manager": "0.1.4",
|
|
44
|
+
"@rezti/dsh-rez-odoo": "0.1.7",
|
|
45
|
+
"@rezti/dsh-rez-nextcloud": "0.1.7",
|
|
46
46
|
"@rezti/dsh-rez-wechat": "0.1.11",
|
|
47
47
|
"@rezti/dsh-rez-ha-bridge": "0.1.7"
|
|
48
48
|
},
|
package/src/client/index.ts
CHANGED
|
@@ -20,7 +20,7 @@ declare module '@deepseek-ai/dsh-client-ui-slots' {
|
|
|
20
20
|
}
|
|
21
21
|
interface SlotMap {
|
|
22
22
|
'settings.plugin.item': {
|
|
23
|
-
kind: '
|
|
23
|
+
kind: 'keyed'
|
|
24
24
|
scope: 'root'
|
|
25
25
|
owner: { children?: never }
|
|
26
26
|
}
|
|
@@ -42,8 +42,7 @@ export function apply(ctx: ClientContext): void {
|
|
|
42
42
|
|
|
43
43
|
ctx.slots.inject('settings.plugin.item', () => ctx.slots.register({
|
|
44
44
|
name: 'settings.plugin.item',
|
|
45
|
-
|
|
46
|
-
order: 40,
|
|
45
|
+
key: NS,
|
|
47
46
|
locale: NS,
|
|
48
47
|
}, RezPluginCard))
|
|
49
48
|
|