@jskit-ai/assistant-runtime 0.1.121 → 0.1.124
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jskit-ai/assistant-runtime",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.124",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./client": "./src/client/index.js",
|
|
@@ -8,13 +8,13 @@
|
|
|
8
8
|
"./server/actionIds": "./src/server/actionIds.js"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@jskit-ai/assistant-core": "0.1.
|
|
12
|
-
"@jskit-ai/database-runtime": "0.1.
|
|
13
|
-
"@jskit-ai/http-runtime": "0.1.
|
|
14
|
-
"@jskit-ai/kernel": "0.1.
|
|
15
|
-
"@jskit-ai/shell-web": "0.1.
|
|
16
|
-
"@jskit-ai/users-core": "0.1.
|
|
17
|
-
"@jskit-ai/users-web": "0.1.
|
|
11
|
+
"@jskit-ai/assistant-core": "0.1.129",
|
|
12
|
+
"@jskit-ai/database-runtime": "0.1.153",
|
|
13
|
+
"@jskit-ai/http-runtime": "0.1.151",
|
|
14
|
+
"@jskit-ai/kernel": "0.1.153",
|
|
15
|
+
"@jskit-ai/shell-web": "0.1.157",
|
|
16
|
+
"@jskit-ai/users-core": "0.1.166",
|
|
17
|
+
"@jskit-ai/users-web": "0.1.171",
|
|
18
18
|
"json-rest-schema": "^1.0.17"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
@@ -110,13 +110,13 @@
|
|
|
110
110
|
"mutations": {
|
|
111
111
|
"dependencies": {
|
|
112
112
|
"runtime": {
|
|
113
|
-
"@jskit-ai/assistant-core": "0.1.
|
|
114
|
-
"@jskit-ai/database-runtime": "0.1.
|
|
115
|
-
"@jskit-ai/http-runtime": "0.1.
|
|
116
|
-
"@jskit-ai/kernel": "0.1.
|
|
117
|
-
"@jskit-ai/shell-web": "0.1.
|
|
118
|
-
"@jskit-ai/users-core": "0.1.
|
|
119
|
-
"@jskit-ai/users-web": "0.1.
|
|
113
|
+
"@jskit-ai/assistant-core": "0.1.129",
|
|
114
|
+
"@jskit-ai/database-runtime": "0.1.153",
|
|
115
|
+
"@jskit-ai/http-runtime": "0.1.151",
|
|
116
|
+
"@jskit-ai/kernel": "0.1.153",
|
|
117
|
+
"@jskit-ai/shell-web": "0.1.157",
|
|
118
|
+
"@jskit-ai/users-core": "0.1.166",
|
|
119
|
+
"@jskit-ai/users-web": "0.1.171"
|
|
120
120
|
},
|
|
121
121
|
"dev": {}
|
|
122
122
|
},
|
|
@@ -30,7 +30,7 @@ import { validateOperationSection } from "@jskit-ai/http-runtime/shared/validato
|
|
|
30
30
|
import { assistantHttpClient, createAssistantApi, AssistantSettingsFormCard } from "@jskit-ai/assistant-core/client";
|
|
31
31
|
import { assistantConfigResource, assistantSettingsQueryKey, buildAssistantApiPath } from "@jskit-ai/assistant-core/shared";
|
|
32
32
|
import { useShellWebErrorRuntime } from "@jskit-ai/shell-web/client/error";
|
|
33
|
-
import { useSurfaceRouteContext } from "@jskit-ai/
|
|
33
|
+
import { useSurfaceRouteContext } from "@jskit-ai/shell-web/client/navigation/useSurfaceRouteContext";
|
|
34
34
|
import { resolveAssistantSurfaceConfig } from "../../shared/assistantSurfaces.js";
|
|
35
35
|
import { useWorkspaceWebScopeSupport } from "../support/workspaceScopeSupport.js";
|
|
36
36
|
|
|
@@ -21,7 +21,7 @@ import {
|
|
|
21
21
|
} from "@jskit-ai/assistant-core/client";
|
|
22
22
|
import { useShellWebErrorRuntime } from "@jskit-ai/shell-web/client/error";
|
|
23
23
|
import { usePagedCollection } from "@jskit-ai/users-web/client/composables/usePagedCollection";
|
|
24
|
-
import { useSurfaceRouteContext } from "@jskit-ai/
|
|
24
|
+
import { useSurfaceRouteContext } from "@jskit-ai/shell-web/client/navigation/useSurfaceRouteContext";
|
|
25
25
|
import { resolveAssistantSurfaceConfig } from "../../shared/assistantSurfaces.js";
|
|
26
26
|
import { insertTextAtSelection } from "../support/composerInputSupport.js";
|
|
27
27
|
import { useWorkspaceWebScopeSupport } from "../support/workspaceScopeSupport.js";
|