@rezti/dsh-rez-suite 0.1.24 → 0.1.25
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 +7 -7
- package/src/client/index.ts +2 -3
package/lib/client.d.ts
CHANGED
package/lib/client.js
CHANGED
|
@@ -1344,8 +1344,7 @@ function apply(ctx) {
|
|
|
1344
1344
|
}), "dsh-rez-suite: dictionaries");
|
|
1345
1345
|
ctx.slots.inject("settings.plugin.item", () => ctx.slots.register({
|
|
1346
1346
|
name: "settings.plugin.item",
|
|
1347
|
-
|
|
1348
|
-
order: 40,
|
|
1347
|
+
key: NS,
|
|
1349
1348
|
locale: NS
|
|
1350
1349
|
}, RezPluginCard));
|
|
1351
1350
|
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.25",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": "^22.19.0 || >=24.0.0"
|
|
@@ -38,15 +38,15 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
40
40
|
"zod": "^4.4.3",
|
|
41
|
-
"@rezti/dsh-rez-ha-bridge": "0.1.9",
|
|
42
|
-
"@rezti/dsh-rez-gsc": "0.1.0",
|
|
43
|
-
"@rezti/dsh-rez-odoo": "0.1.9",
|
|
44
|
-
"@rezti/dsh-rez-intent": "0.1.5",
|
|
45
41
|
"@rezti/dsh-rez-sso": "0.1.9",
|
|
46
|
-
"@rezti/dsh-rez-tapd": "0.1.0",
|
|
47
42
|
"@rezti/dsh-rez-token-manager": "0.1.4",
|
|
43
|
+
"@rezti/dsh-rez-ha-bridge": "0.1.9",
|
|
48
44
|
"@rezti/dsh-rez-nextcloud": "0.1.9",
|
|
49
|
-
"@rezti/dsh-rez-
|
|
45
|
+
"@rezti/dsh-rez-tapd": "0.1.0",
|
|
46
|
+
"@rezti/dsh-rez-intent": "0.1.5",
|
|
47
|
+
"@rezti/dsh-rez-odoo": "0.1.9",
|
|
48
|
+
"@rezti/dsh-rez-wechat": "0.1.14",
|
|
49
|
+
"@rezti/dsh-rez-gsc": "0.1.0"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"react": "^18.2.0",
|
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
|
|