@jskit-ai/assistant-runtime 0.1.127 → 0.1.129

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.127",
3
+ "version": "0.1.129",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  "./client": "./src/client/index.js",
@@ -8,14 +8,14 @@
8
8
  "./server/actionIds": "./src/server/actionIds.js"
9
9
  },
10
10
  "dependencies": {
11
- "@jskit-ai/assistant-core": "0.1.132",
12
- "@jskit-ai/database-runtime": "0.1.156",
13
- "@jskit-ai/http-web": "0.1.1",
14
- "@jskit-ai/http-runtime": "0.1.154",
15
- "@jskit-ai/kernel": "0.1.156",
16
- "@jskit-ai/shell-web": "0.1.160",
17
- "@jskit-ai/users-core": "0.1.169",
18
- "@jskit-ai/users-web": "0.1.174",
11
+ "@jskit-ai/assistant-core": "0.1.134",
12
+ "@jskit-ai/database-runtime": "0.1.158",
13
+ "@jskit-ai/http-web": "0.1.3",
14
+ "@jskit-ai/http-runtime": "0.1.156",
15
+ "@jskit-ai/kernel": "0.1.158",
16
+ "@jskit-ai/shell-web": "0.1.162",
17
+ "@jskit-ai/users-core": "0.1.171",
18
+ "@jskit-ai/users-web": "0.1.176",
19
19
  "json-rest-schema": "^1.0.17"
20
20
  },
21
21
  "peerDependencies": {
@@ -112,14 +112,14 @@
112
112
  "mutations": {
113
113
  "dependencies": {
114
114
  "runtime": {
115
- "@jskit-ai/assistant-core": "0.1.132",
116
- "@jskit-ai/database-runtime": "0.1.156",
117
- "@jskit-ai/http-web": "0.1.1",
118
- "@jskit-ai/http-runtime": "0.1.154",
119
- "@jskit-ai/kernel": "0.1.156",
120
- "@jskit-ai/shell-web": "0.1.160",
121
- "@jskit-ai/users-core": "0.1.169",
122
- "@jskit-ai/users-web": "0.1.174"
115
+ "@jskit-ai/assistant-core": "0.1.134",
116
+ "@jskit-ai/database-runtime": "0.1.158",
117
+ "@jskit-ai/http-web": "0.1.3",
118
+ "@jskit-ai/http-runtime": "0.1.156",
119
+ "@jskit-ai/kernel": "0.1.158",
120
+ "@jskit-ai/shell-web": "0.1.162",
121
+ "@jskit-ai/users-core": "0.1.171",
122
+ "@jskit-ai/users-web": "0.1.176"
123
123
  },
124
124
  "dev": {}
125
125
  },
@@ -2,8 +2,6 @@ import AssistantSettingsClientElement from "../components/AssistantSettingsClien
2
2
 
3
3
  class AssistantClientProvider {
4
4
  static id = "assistant.web.client";
5
- static dependsOn = ["users.web.client"];
6
-
7
5
  register(app) {
8
6
  if (!app || typeof app.singleton !== "function") {
9
7
  throw new Error("AssistantClientProvider requires application singleton().");
@@ -60,7 +60,7 @@ function createAssistantAiClientFactory(config = {}) {
60
60
  class AssistantProvider {
61
61
  static id = "assistant.chat.service";
62
62
 
63
- static dependsOn = ["runtime.actions", "runtime.database", "auth.policy.fastify", "users.core"];
63
+ static startsAfter = ["runtime.actions"];
64
64
 
65
65
  register(app) {
66
66
  if (