@m6d/cortex-client 1.5.0 → 1.6.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/README.md +1 -0
- package/fesm2022/m6d-cortex-client.mjs +455 -138
- package/fesm2022/m6d-cortex-client.mjs.map +1 -1
- package/package.json +1 -1
- package/types/m6d-cortex-client.d.ts +47 -10
package/README.md
CHANGED
|
@@ -34,6 +34,7 @@ No root-level providers needed — each widget instance is fully self-contained.
|
|
|
34
34
|
| `transport.getAuthHeaders` | `() => Record<string, string>` | Auth header provider |
|
|
35
35
|
| `wsUrl` | `string` | WebSocket URL for real-time events (optional) |
|
|
36
36
|
| `theme` | `CortexClientTheme` | Custom colors and styling (optional) |
|
|
37
|
+
| `showDebugButton` | `boolean` | Show/hide the debug toggle button (default: `false`) |
|
|
37
38
|
| `toolComponents` | `Record<string, Type<unknown>>` | Custom Angular components for tool rendering (optional) |
|
|
38
39
|
| `onToolCall` | `(toolCall) => unknown` | Client-side tool call handler (optional) |
|
|
39
40
|
|