@athenaintel/react 0.14.0 → 0.15.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.
- package/dist/chat/ComposerEditorContext.d.ts +6 -0
- package/dist/chat/super-grouping/toolkit-map.d.ts +8 -3
- package/dist/chat-ui/composer/composer-action.d.ts +8 -1
- package/dist/chat-ui/composer/tiptap-composer.d.ts +7 -0
- package/dist/chat-ui/header/chat-header.d.ts +19 -0
- package/dist/chat-ui/header/conversation-history-panel.d.ts +27 -0
- package/dist/chat-ui/index.d.ts +6 -2
- package/dist/chat-ui/messages/message-actions-config.d.ts +12 -0
- package/dist/chat-ui/messages/message-components.d.ts +8 -6
- package/dist/chat-ui/messages/user-edit-composer.d.ts +8 -0
- package/dist/chat-ui/thread/chat-composer-dock.d.ts +13 -1
- package/dist/chat-ui/thread/chat-thread-shell.d.ts +69 -6
- package/dist/chat-ui/thread/composer-send-or-stop.d.ts +25 -2
- package/dist/chat-ui.cjs +564 -4337
- package/dist/chat-ui.cjs.map +1 -1
- package/dist/chat-ui.js +465 -4237
- package/dist/chat-ui.js.map +1 -1
- package/dist/index.cjs +1290 -4391
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +862 -3942
- package/dist/index.js.map +1 -1
- package/dist/provider/AthenaProvider.d.ts +4 -1
- package/dist/runtime/statewire-run-config.d.ts +0 -2
- package/dist/runtime/useAthenaStatewireRuntime.d.ts +3 -1
- package/dist/styles.css +1 -1
- package/dist/threads/api.d.ts +7 -0
- package/dist/threads/conversation-list-fetcher.d.ts +5 -1
- package/dist/threads/use-rest-conversation-history.d.ts +43 -0
- package/dist/threads/use-statewire-conversation-history.d.ts +71 -0
- package/dist/{scope-registry-Bti8l_Xy.cjs → use-rest-conversation-history-CBPqoHoe.cjs} +30414 -22105
- package/dist/use-rest-conversation-history-CBPqoHoe.cjs.map +1 -0
- package/dist/{scope-registry-B9XYV-FT.js → use-rest-conversation-history-DYvfgoBF.js} +14856 -6568
- package/dist/use-rest-conversation-history-DYvfgoBF.js.map +1 -0
- package/package.json +2 -2
- package/dist/scope-registry-B9XYV-FT.js.map +0 -1
- package/dist/scope-registry-Bti8l_Xy.cjs.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@athenaintel/react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.1",
|
|
4
4
|
"description": "Athena React SDK \u2014 Build AI-powered chat applications with the Athena platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"dev": "bun run build:css && vite build --watch",
|
|
41
41
|
"build": "vite build && tsc -p tsconfig.build.json && bun run build:css",
|
|
42
42
|
"build:css": "tailwindcss -i src/styles.entry.css -o dist/styles.css --minify",
|
|
43
|
-
"test": "bun test src
|
|
43
|
+
"test": "bun test src",
|
|
44
44
|
"typecheck": "tsc --noEmit",
|
|
45
45
|
"prepublishOnly": "bun run build",
|
|
46
46
|
"preinstall": "node -e \"if(!(process.env.npm_config_user_agent||'').startsWith('bun/')){console.error('\\n\u2717 This monorepo requires bun. Run \\`bun install\\` at the repo root.\\n https://bun.com/docs/installation\\n');process.exit(1)}\""
|