@nospt/backstage-plugin-librechat 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/config.d.ts +23 -0
  2. package/package.json +3 -2
package/config.d.ts ADDED
@@ -0,0 +1,23 @@
1
+ export interface Config {
2
+ librechat?: {
3
+ /**
4
+ * Whether the chat bubble is enabled by default.
5
+ * When true, the bubble shows without needing the feature flag.
6
+ * @visibility frontend
7
+ */
8
+ enabled?: boolean;
9
+
10
+ /**
11
+ * Base URL of the LibreChat instance.
12
+ * @visibility frontend
13
+ */
14
+ baseUrl?: string;
15
+
16
+ /**
17
+ * Display name for the chat agent.
18
+ * Used in the chat header ("<name> Chat") and message labels.
19
+ * @visibility frontend
20
+ */
21
+ name?: string;
22
+ };
23
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nospt/backstage-plugin-librechat",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Backstage frontend plugin adding an AI chat bubble powered by LibreChat Agents API",
5
5
  "main": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",
@@ -60,6 +60,7 @@
60
60
  "react-router-dom": "^6.0.0"
61
61
  },
62
62
  "files": [
63
- "dist"
63
+ "dist",
64
+ "config.d.ts"
64
65
  ]
65
66
  }