@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 CHANGED
@@ -7358,7 +7358,7 @@ declare module '@deepseek-ai/dsh-client-ui-slots' {
7358
7358
  }
7359
7359
  interface SlotMap {
7360
7360
  'settings.plugin.item': {
7361
- kind: 'list';
7361
+ kind: 'keyed';
7362
7362
  scope: 'root';
7363
7363
  owner: {
7364
7364
  children?: never;
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
- id: "rez-suite",
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.16",
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
  },
@@ -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: 'list'
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
- id: 'rez-suite',
46
- order: 40,
45
+ key: NS,
47
46
  locale: NS,
48
47
  }, RezPluginCard))
49
48