@jskit-ai/assistant 0.1.23 → 0.1.24

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.
@@ -1,7 +1,7 @@
1
1
  export default Object.freeze({
2
2
  packageVersion: 1,
3
3
  packageId: "@jskit-ai/assistant",
4
- version: "0.1.23",
4
+ version: "0.1.24",
5
5
  description: "Unified assistant module with streaming chat, transcript persistence, service-aware tool execution, and workspace UI.",
6
6
  options: {
7
7
  "ai-provider": {
@@ -110,14 +110,14 @@ export default Object.freeze({
110
110
  mutations: {
111
111
  dependencies: {
112
112
  runtime: {
113
- "@jskit-ai/assistant": "0.1.23",
114
- "@jskit-ai/auth-core": "0.1.14",
115
- "@jskit-ai/database-runtime": "0.1.15",
116
- "@jskit-ai/http-runtime": "0.1.14",
117
- "@jskit-ai/kernel": "0.1.14",
118
- "@jskit-ai/realtime": "0.1.14",
119
- "@jskit-ai/users-core": "0.1.19",
120
- "@jskit-ai/users-web": "0.1.24",
113
+ "@jskit-ai/assistant": "0.1.24",
114
+ "@jskit-ai/auth-core": "0.1.15",
115
+ "@jskit-ai/database-runtime": "0.1.16",
116
+ "@jskit-ai/http-runtime": "0.1.15",
117
+ "@jskit-ai/kernel": "0.1.15",
118
+ "@jskit-ai/realtime": "0.1.15",
119
+ "@jskit-ai/users-core": "0.1.20",
120
+ "@jskit-ai/users-web": "0.1.25",
121
121
  "@tanstack/vue-query": "^5.90.5",
122
122
  "dompurify": "^3.3.3",
123
123
  "marked": "^17.0.4",
@@ -159,7 +159,7 @@ export default Object.freeze({
159
159
  id: "assistant-page-admin-workspace-assistant-index",
160
160
  when: {
161
161
  config: "tenancyMode",
162
- in: ["personal", "workspace"]
162
+ in: ["personal", "workspaces"]
163
163
  }
164
164
  }
165
165
  ],
@@ -176,7 +176,7 @@ export default Object.freeze({
176
176
  id: "assistant-placement-menu",
177
177
  when: {
178
178
  config: "tenancyMode",
179
- in: ["personal", "workspace"]
179
+ in: ["personal", "workspaces"]
180
180
  }
181
181
  },
182
182
  {
@@ -191,7 +191,7 @@ export default Object.freeze({
191
191
  id: "assistant-workspace-settings-form-placement",
192
192
  when: {
193
193
  config: "tenancyMode",
194
- in: ["personal", "workspace"]
194
+ in: ["personal", "workspaces"]
195
195
  }
196
196
  },
197
197
  {
@@ -238,7 +238,7 @@ export default Object.freeze({
238
238
  id: "assistant-workspace-settings-field-definition",
239
239
  when: {
240
240
  config: "tenancyMode",
241
- in: ["personal", "workspace"]
241
+ in: ["personal", "workspaces"]
242
242
  }
243
243
  },
244
244
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jskit-ai/assistant",
3
- "version": "0.1.23",
3
+ "version": "0.1.24",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "test": "node --test"
@@ -13,14 +13,14 @@
13
13
  "./shared": "./src/shared/index.js"
14
14
  },
15
15
  "dependencies": {
16
- "@jskit-ai/auth-core": "0.1.14",
17
- "@jskit-ai/database-runtime": "0.1.15",
18
- "@jskit-ai/http-runtime": "0.1.14",
19
- "@jskit-ai/kernel": "0.1.14",
20
- "@jskit-ai/realtime": "0.1.14",
21
- "@jskit-ai/shell-web": "0.1.14",
22
- "@jskit-ai/users-core": "0.1.19",
23
- "@jskit-ai/users-web": "0.1.24",
16
+ "@jskit-ai/auth-core": "0.1.15",
17
+ "@jskit-ai/database-runtime": "0.1.16",
18
+ "@jskit-ai/http-runtime": "0.1.15",
19
+ "@jskit-ai/kernel": "0.1.15",
20
+ "@jskit-ai/realtime": "0.1.15",
21
+ "@jskit-ai/shell-web": "0.1.15",
22
+ "@jskit-ai/users-core": "0.1.20",
23
+ "@jskit-ai/users-web": "0.1.25",
24
24
  "@tanstack/vue-query": "^5.90.5",
25
25
  "dompurify": "^3.3.3",
26
26
  "marked": "^17.0.4",
@@ -44,7 +44,7 @@ function normalizeCursorPagination(pagination = {}, { defaultLimit = 20, maxLimi
44
44
  function createConversationBaseQuery(client) {
45
45
  return client("ai_conversations as c")
46
46
  .leftJoin("workspaces as w", "w.id", "c.workspace_id")
47
- .leftJoin("user_profiles as u", "u.id", "c.created_by_user_id")
47
+ .leftJoin("users as u", "u.id", "c.created_by_user_id")
48
48
  .select(
49
49
  "c.*",
50
50
  client.raw("COALESCE(w.slug, '') AS workspace_slug"),