@1interface/chat-core 0.6.2 → 0.7.0
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/dist/index.d.ts +1 -1
- package/package.json +11 -11
package/dist/index.d.ts
CHANGED
|
@@ -608,7 +608,7 @@ export declare interface ClientConfig {
|
|
|
608
608
|
features?: string[];
|
|
609
609
|
backend_version?: string;
|
|
610
610
|
panel_switcher_enabled?: boolean;
|
|
611
|
-
auth_mode_config?: Partial<Record<string, AuthMode>>;
|
|
611
|
+
auth_mode_config?: Partial<Record<AuthClientType | (string & {}), AuthMode>>;
|
|
612
612
|
}
|
|
613
613
|
|
|
614
614
|
export declare interface ClientConfigResponse {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@1interface/chat-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -25,16 +25,9 @@
|
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|
|
27
27
|
},
|
|
28
|
-
"scripts": {
|
|
29
|
-
"build": "vite build",
|
|
30
|
-
"dev": "vite build --watch",
|
|
31
|
-
"test": "vitest",
|
|
32
|
-
"test:ui": "vitest --ui",
|
|
33
|
-
"postinstall": "rm -rf node_modules/react node_modules/react-dom 2>/dev/null || true"
|
|
34
|
-
},
|
|
35
28
|
"dependencies": {
|
|
36
|
-
"@
|
|
37
|
-
"@
|
|
29
|
+
"@microsoft/fetch-event-source": "^2.0.1",
|
|
30
|
+
"@1interface/shared-core": "^0.4.0"
|
|
38
31
|
},
|
|
39
32
|
"peerDependencies": {
|
|
40
33
|
"@reduxjs/toolkit": "^2.0.0",
|
|
@@ -57,5 +50,12 @@
|
|
|
57
50
|
"vite": "7.3.2",
|
|
58
51
|
"vite-plugin-dts": "^4.5.4",
|
|
59
52
|
"vitest": "4.1.0"
|
|
53
|
+
},
|
|
54
|
+
"scripts": {
|
|
55
|
+
"build": "vite build",
|
|
56
|
+
"dev": "vite build --watch",
|
|
57
|
+
"test": "vitest",
|
|
58
|
+
"test:ui": "vitest --ui",
|
|
59
|
+
"postinstall": "rm -rf node_modules/react node_modules/react-dom 2>/dev/null || true"
|
|
60
60
|
}
|
|
61
|
-
}
|
|
61
|
+
}
|